[
  {
    "path": "Course-1/Assignemnts/Assignment_chapter2.py",
    "content": "'''\r\n2.2 Write a program that uses input to prompt a user for their name and then\r\nwelcomes them. Note that input will pop up a dialog box. Enter Sarah in the\r\npop-up box when you are prompted so your output will match the desired output.\r\n'''\r\n\r\nname = input(\"Enter your name\")\r\nprint(\"Hello\", name)\r\n\r\n\r\n'''\r\n2.3 Write a program to prompt the user for hours and rate per hour using input\r\nto compute gross pay. Use 35 hours and a rate of 2.75 per hour to test the\r\nprogram (the pay should be 96.25). You should use input to read a string and\r\nfloat() to convert the string to a number. Do not worry about error checking\r\nor bad user data.\r\n'''\r\n# This first line is provided for you\r\n\r\nhrs = input(\"Enter Hours:\")\r\nrate = input(\"Enter Rate:\")\r\ngross_pay = float(hrs) * float(rate)\r\nprint(\"Pay:\",gross_pay)\r\n"
  },
  {
    "path": "Course-1/Assignemnts/Assignment_chapter3.py",
    "content": "'''\r\n3.1 Write a program to prompt the user for hours and rate per hour using input\r\nto compute gross pay. Pay the hourly rate for the hours up to 40 and 1.5 times\r\nthe hourly rate for all hours worked above 40 hours. Use 45 hours and a rate of\r\n10.50 per hour to test the program (the pay should be 498.75). You should use\r\ninput to read a string and float() to convert the string to a number.\r\nDo not worry about error checking the user input - assume the user types\r\nnumbers properly.\r\n'''\r\nhrs = input(\"Enter Hours:\")\r\nrate = input(\"Enter rate:\")\r\nh = float(hrs)\r\nrate = float(rate)\r\nif h <= 40:\r\n    pay = h * rate\r\nelse:\r\n    pay = (rate*40) + ((h-40)* (rate*1.5))\r\n\r\nprint(pay)\r\n\r\n\r\n\r\n'''\r\n3.3 Write a program to prompt for a score between 0.0 and 1.0.\r\nIf the score is out of range, print an error. If the score is between 0.0 and\r\n1.0, print a grade using the following table:\r\nScore Grade\r\n>= 0.9 A\r\n>= 0.8 B\r\n>= 0.7 C\r\n>= 0.6 D\r\n< 0.6 F\r\nIf the user enters a value out of range, print a suitable error message and\r\nexit. For the test, enter a score of 0.85.\r\n'''\r\nscore = input(\"Enter a score:\")\r\nscore = float(score)\r\nif score <= 1.0:\r\n    if score >= 0.9:\r\n        Grade = \"A\"\r\n    elif score >= 0.8:\r\n        Grade = \"B\"\r\n    elif score >= 0.7:\r\n        Grade = \"C\"\r\n    elif score >= 0.6:\r\n        Grade = \"D\"\r\n    else:\r\n        Grade = \"F\"\r\nelse:\r\n    Grade = \"Error! out of range!\"\r\n\r\nprint(Grade)\r\n"
  },
  {
    "path": "Course-1/Assignemnts/Assignment_chapter4.py",
    "content": "'''\r\n4.6 Write a program to prompt the user for hours and rate per hour using input\r\nto compute gross pay. Pay should be the normal rate for hours up to 40 and\r\ntime-and-a-half for the hourly rate for all hours worked above 40 hours.\r\nPut the logic to do the computation of time-and-a-half in a function called\r\ncomputepay() and use the function to do the computation. The function should\r\nreturn a value. Use 45 hours and a rate of 10.50 per hour to test the program\r\n(the pay should be 498.75). You should use input to read a string and float()\r\nto convert the string to a number. Do not worry about error checking the user\r\ninput unless you want to - you can assume the user types numbers properly.\r\nDo not name your variable sum or use the sum() function.\r\n'''\r\ndef computepay(h,r):\r\n    if h <= 40:\r\n        pay = h * r\r\n    if h > 40:\r\n        pay = (40 * r) + ((h-40) * (r*1.5))\r\n    return pay\r\n\r\nhrs = input(\"Enter Hours:\")\r\nrate = input(\"Enter Rate:\")\r\nh = float(hrs)\r\nr = float(rate)\r\nprint(computepay(h,r))\r\n"
  },
  {
    "path": "Course-1/Assignemnts/Assignment_chapter5.py",
    "content": "'''\r\n5.2 Write a program that repeatedly prompts a user for integer numbers until\r\nthe user enters 'done'. Once 'done' is entered, print out the largest and\r\nsmallest of the numbers. If the user enters anything other than a valid number\r\ncatch it with a try/except and put out an appropriate message and ignore the\r\nnumber. Enter 7, 2, bob, 10, and 4 and match the output below.\r\n'''\r\nlargest = None\r\nsmallest = None\r\nwhile True:\r\n    num = input('Enter a number: ')\r\n    if num == 'done' :\r\n        break\r\n    try:\r\n        number = float(num)\r\n    except:\r\n        print('Invalid input')\r\n        continue\r\n    if largest is None:\r\n        largest = number\r\n    elif largest < number:\r\n        largest = number\r\n    if smallest is None:\r\n        smallest = number\r\n    elif smallest > number:\r\n        smallest = number\r\n\r\n\r\nprint(\"Maximum is\", int(largest))\r\nprint(\"Minimum is\", int(smallest))\r\n"
  },
  {
    "path": "Course-1/Assignemnts/FirstAssignment.py",
    "content": "print ('I\\'m a happy learner')\r\n"
  },
  {
    "path": "Course-1/Quizzes/quiz_chapter2.md",
    "content": "** 1- In the following code, **\r\n```Python\r\n print (98.6)\r\n```\r\n** What is \"98.6\"? **\r\n\r\n    1) A conditional statement\r\n    2) A variable\r\n    3) A constant\r\n    4) An iteration / loop statement\r\n\r\n_Answer is 3) A constant_\r\n\r\n** 2- What does the following code print out? **\r\n```Python\r\n print (\"123\"+\"abc\")\r\n```\r\n\r\n    1) 123abc\r\n    2) hello world\r\n    3) This is a syntax error because you cannot add strings\r\n    4) 123+abc\r\n\r\n_Answer is 1) 123abc_\r\n\r\n** 3- Which of the following is a bad Python variable name? **\r\n\r\n    1) Spam\r\n    2) spam23\r\n    3) spam_23\r\n    4) spam.23\r\n\r\n_Answer is 4) spam.23_\r\n\r\n** 4- Which of the following is not a Python reserved word? **\r\n\r\n    1) iterate\r\n    2) continue\r\n    3) else\r\n    4) break\r\n\r\n_Answer is 1) iterate_\r\n\r\n** 5- Assume the variable x has been initialized to an integer value (e.g., x = 3). **\r\n** What does the following statement do? **\r\n```Python\r\n x = x + 2\r\n```\r\n    1) Retrieve the current value for x, add two to it and put the sum back into x\r\n    2) This would fail as it is a syntax error\r\n    3) Exit the program\r\n    4) Create a function called \"x\" and put the value 2 in the function\r\n\r\n_Answer is 1) Retrieve the current value for x, add two to it and put the sum back into x_\r\n\r\n** 6- Which of the following elements of a mathematical expression in Python is evaluated first? **\r\n\r\n    1) Addition +\r\n    2) Subtraction -\r\n    3) Multiplication *\r\n    4) Parentheses ( )\r\n\r\n_Answer is 4) Parentheses ( )_\r\n\r\n** 7- What is the value of the following expression **\r\n```Python\r\n 42 % 10\r\n```\r\n*Hint - the \"%\" is the remainder operator*\r\n\r\n    1) 4210\r\n    2) 10\r\n    3) 0.42\r\n    4) 2\r\n\r\n_Answer is 4) 2_\r\n\r\n** 8- What will be the value of x after the following statement executes: **\r\n```Python\r\n x = 1 + 2 * 3 - 8 / 4\r\n```\r\n    1) 2\r\n    2) 1.0\r\n    3) 3\r\n    4) 5.0\r\n\r\n_Answer is 4) 5.0_\r\n\r\n** 9- What will be the value of x when the following statement is executed:**\r\n```Python\r\nx = int(98.6)\r\n```\r\n    1) 99\r\n    2) 6\r\n    3) 100\r\n    4) 98\r\n\r\n_Answer is 4) 98_\r\n\r\n** 10- What does the Python input() function do? **\r\n\r\n    1) Pause the program and read data from the user\r\n    2) Connect to the network and retrieve a web page.\r\n    3) Read the memory of the running program\r\n    4)Take a screen shot from an area of the screen\r\n\r\n_Answer is 1) Pause the program and read data from the user_\r\n"
  },
  {
    "path": "Course-1/Quizzes/quiz_chapter3.md",
    "content": "** 1- What do we do to a Python statement that is immediately after an if\r\nstatement to indicate that the statement is to be executed only when the if\r\nstatement is true? **\r\n\r\n    1) Start the statement with a \"#\" character\r\n    2) Begin the statement with a curly brace {\r\n    3) Underline all of the conditional code\r\n    4) Indent the line below the if statement\r\n\r\n_Answer is 4) Indent the line below the if statement _\r\n\r\n** 2- Which of these operators is not a comparison / logical operator?**\r\n\r\n     1) !=\r\n     2) >\r\n     3) =\r\n     4) ==\r\n\r\n_Answer is 3) =_\r\n\r\n** 3- What is true about the following code segment: **\r\n```Python\r\nif  x == 5 :\r\n    print('Is 5')\r\n    print('Is Still 5')\r\n    print('Third 5')\r\n```\r\n\r\n    1) Depending on the value of x, either all three of the print statements will execute or none of the statements will execute.\r\n    2) The string 'Is 5' will always print out regardless of the value for x.\r\n    3) The string 'Is 5' will never print out regardless of the value for x.\r\n    4) Only two of the three print statements will print out if the value of x is less than zero.\r\n\r\n_Answer is 1) Depending on the value of x, either all three of the print statements will execute or none of the statements will execute._\r\n\r\n** 4- When you have multiple lines in an if block, how do you indicate the end of the if block? **\r\n\r\n    1) You use a curly brace { after the last line of the if block\r\n    2) You omit the semicolon ; on the last line of the if block\r\n    3) You de-indent the next line past the if block to the same level of indent as the original if statement\r\n    4) You put the colon : character on a line by itself to indicate we are done with the if block\r\n\r\n_Answer is 3) You de-indent the next line past the if block to the same level of indent as the original if statement_\r\n\r\n\r\n** 5- You look at the following text: **\r\n```Python\r\nif x == 6 :\r\n    print('Is 6')\r\n    print('Is Still 6')\r\n    print('Third 6')\r\n```\r\n_It looks perfect but Python is giving you an 'Indentation Error' on the second print statement. What is the most likely reason?_\r\n\r\n    1) In order to make humans feel inadequate, Python randomly emits 'Indentation Errors' on perfectly good code - after about an hour the error will just go away without any changes to your program\r\n    2) You have mixed tabs and spaces in the file\r\n    3) Python thinks 'Still' is a mis-spelled word in the string\r\n    4) Python has reached its limit on the largest Python program that can be run\r\n\r\n_Answer is 2) You have mixed tabs and spaces in the file_\r\n\r\n\r\n** 6- What is the Python reserved word that we use in two-way if tests to indicate the block of code that is to be executed if the logical test is false? **\r\n\r\n    1) else\r\n    2) except\r\n    3) iterate\r\n    4) break\r\n\r\n_Answer is 1) else_\r\n\r\n\r\n** 7- What will the following code print out? **\r\n```Python\r\nx = 0\r\nif x < 2 :\r\n    print('Small')\r\nelif x < 10 :\r\n    print('Medium')\r\nelse :\r\n    print('LARGE')\r\nprint('All done')\r\n```\r\n\r\n    1) LARGE\r\n       All done\r\n    2) All done\r\n    3) Small\r\n       Medium\r\n       LARGE\r\n       All done\r\n    4) Small\r\n       All done\r\n\r\n_Answer is 4) Small All done_\r\n\r\n\r\n** 8- For the following code, **\r\n```Python\r\nif x < 2 :\r\n    print('Below 2')\r\nelif x >= 2 :\r\n     print('Two or more')\r\nelse :\r\n    print('Something else')\r\n```\r\n_What value of 'x' will cause 'Something else' to print out?_\r\n\r\n    1) This code will never print 'Something else' regardless of the value for 'x'\r\n    2) x = -22\r\n    3) x = 2.0\r\n    4) x = -2.0\r\n\r\n_Answer is 1) This code will never print 'Something else' regardless of the value for 'x'_\r\n\r\n** 9- In the following code (numbers added) - which will be the last line to execute successfully? **\r\n```Python\r\n(1)   astr = 'Hello Bob'\r\n(2)   istr = int(astr)\r\n(3)   print('First', istr)\r\n(4)   astr = '123'\r\n(5)   istr = int(astr)\r\n(6)   print('Second', istr)\r\n```\r\n    1) 1\r\n    2) 2\r\n    3) 6\r\n    4) 5\r\n\r\n_Answer is 1) 1_\r\n\r\n\r\n** 10- For the following code: **\r\n```Python\r\nastr = 'Hello Bob'\r\nistr = 0\r\ntry:\r\n    istr = int(astr)\r\nexcept:\r\n    istr = -1\r\n```\r\n_What will the value be for istr after this code executes?_\r\n\r\n    1) 0\r\n    2) -1\r\n    3) The istr variable will not have a value\r\n    4) It will be the 'Not a number' value (i.e. NaN)\r\n\r\n_Answer is 2) -1_\r\n"
  },
  {
    "path": "Course-1/Quizzes/quiz_chapter4.md",
    "content": "** 1- Which Python keyword indicates the start of a function definition?**\r\n\r\n     1) return\r\n     2) continue\r\n     3) rad\r\n     4) def\r\n\r\n_Answer is 4) def_\r\n\r\n** 2-In Python, how do you indicate the end of the block of code that makes up the function? **\r\n\r\n    1) You add a line that has at least 10 dashes\r\n    2) You de-indent a line of code to the same indent level as the def keyword\r\n    3) You put the \"END\" keyword in column 7 of the line which is to be the last line of the function\r\n    4) You put the colon character (:) in the first column of a line\r\n\r\n_Answer is 2)You de-indent a line of code to the same indent level as the def keyword_\r\n\r\n** 3- In Python what is the input() feature best described as? **\r\n\r\n    1) A reserved word\r\n    2) A built-in function\r\n    3) A data structure that can hold multiple values using strings as keys\r\n    4) A user-defined function\r\n\r\n_Answer is 2) A built-in function_\r\n\r\n** 4- What does the following code print out?**\r\n```Python\r\ndef thing():\r\n    print('Hello')\r\n\r\nprint('There')\r\n```\r\n\r\n    1) Hello\r\n       There\r\n    2) Hello\r\n    3) There\r\n    4) thing\r\n       Hello\r\n       There\r\n\r\n_Answer is 3) There_\r\n\r\n** 5- In the following Python code, which of the following is an \"argument\" to a function?**\r\n\r\n```Python\r\nx = 'banana'\r\ny = max(x)\r\nz = y * 2\r\n```\r\n    1) x\r\n    2) max\r\n    3) 'banana'\r\n    4) y\r\n\r\n_Answer is 1) x_\r\n\r\n** 6- What will the following Python code print out?**\r\n```Python\r\ndef func(x) :\r\n    print(x)\r\n\r\nfunc(10)\r\nfunc(20)\r\n```\r\n    1) 10\r\n       20\r\n    2) x\r\n       10\r\n       x\r\n       20\r\n    3) func\r\n       func\r\n    4) x\r\n       20\r\n\r\n_Answer is 1) 10 20_\r\n\r\n** 7- Which line of the following Python program will never execute?**\r\n```Python\r\ndef stuff():\r\n    print('Hello')\r\n    return\r\n    print('World')\r\n\r\nstuff()\r\n```\r\n    1) print ('World')\r\n    2) print('Hello')\r\n    3) stuff()\r\n    4) def stuff():\r\n    5) return\r\n\r\n_Answer is 1) print ('World')_\r\n\r\n** 8- What will the following Python program print out?**\r\n```Python\r\ndef greet(lang):\r\n    if lang == 'es':\r\n        return 'Hola'\r\n    elif lang == 'fr':\r\n        return 'Bonjour'\r\n    else:\r\n        return 'Hello'\r\n\r\nprint(greet('fr'),'Michael')\r\n```\r\n    1) Bonjour Michael\r\n    2) def\r\n       Hola\r\n       Bonjour\r\n       Hello\r\n       Michael\r\n    3) Hola Michael\r\n    4) Hola\r\n       Bonjour\r\n       Hello\r\n       Michael\r\n\r\n_Answer is 1) Bonjour Michael_\r\n\r\n** 9- What does the following Python code print out? (Note that this is a bit of a trick question and the code has what many would consider to be a flaw/bug - so read carefully). **\r\n```Python\r\ndef addtwo(a, b):\r\n    added = a + b\r\n    return a\r\n\r\nx = addtwo(2, 7)\r\nprint(x)\r\n```\r\n    1) 2\r\n    2) 7\r\n    3) 9\r\n    4) 14\r\n\r\n_Answer is 1) 2_\r\n\r\n** 10- What is the most important benefit of writing your own functions? **\r\n\r\n    1) Avoiding writing the same non-trivial code more than once in your program\r\n    2) Following the rule that whenever a program is more than 10 lines you must use a function\r\n    3) Following the rule that no function can have more than 10 statements in it\r\n    4) To avoid having more than 10 lines of sequential code without an indent or de-indent\r\n\r\n_Answer is 1) Avoiding writing the same non-trivial code more than once in your program_\r\n"
  },
  {
    "path": "Course-1/Quizzes/quiz_chapter5.md",
    "content": "** 1- What is wrong with this Python loop:**\r\n```Python\r\nn = 5\r\nwhile n > 0 :\r\n    print(n)\r\nprint('All done')\r\n```\r\n    1) This loop will run forever\r\n    2) The print('All done') statement should be indented four spaces\r\n    3) There should be no colon on the while statement\r\n    4) while is not a Python reserved word\r\n\r\n_Answer is 1) This loop will run forever_\r\n\r\n** 2- What does the break statement do?**\r\n\r\n    1) Jumps to the \"top\" of the loop and starts the next iteration\r\n    2) Exits the currently executing loop\r\n    3) Exits the program\r\n    4) Resets the iteration variable to its initial value\r\n\r\n_Answer is 2) Exits the currently executing loop_\r\n\r\n** 3- What does the continue statement do? **\r\n\r\n    1) Resets the iteration variable to its initial value\r\n    2) Jumps to the \"top\" of the loop and starts the next iteration\r\n    3) Exits the currently executing loop\r\n    4) Exits the program\r\n\r\n_Answer is 2) Jumps to the \"top\" of the loop and starts the next iteration_\r\n\r\n** 4- What does the following Python program print out?**\r\n```Python\r\ntot = 0\r\nfor i in [5, 4, 3, 2, 1] :\r\n    tot = tot + 1\r\nprint(tot)\r\n```\r\n    1) 10\r\n    2) 0\r\n    3) 15\r\n    4) 5\r\n\r\n_Answer is 4) 5_\r\n\r\n** 5- What is the iteration variable in the following Python code:**\r\n```Python\r\nfriends = ['Joseph', 'Glenn', 'Sally']\r\nfor friend in friends :\r\n     print('Happy New Year:',  friend)\r\nprint('Done!')\r\n```\r\n    1) friend\r\n    2) Glenn\r\n    3) Sally\r\n    4) friends\r\n\r\n_Answer is 1) friend_\r\n\r\n** 6- What is a good description of the following bit of Python code?**\r\n```Python\r\nzork = 0\r\nfor thing in [9, 41, 12, 3, 74, 15] :\r\n    zork = zork + thing\r\nprint('After', zork)\r\n```\r\n    1) Find the smallest item in a list\r\n    2) Count all of the elements in a list\r\n    3) Find the largest item in a list\r\n    4) Sum all the elements of a list\r\n\r\n_Answer is 4) Sum all the elements of a list_\r\n\r\n** 7- What will the following code print out?**\r\n```Python\r\nsmallest_so_far = -1\r\nfor the_num in [9, 41, 12, 3, 74, 15] :\r\n   if the_num < smallest_so_far :\r\n      smallest_so_far = the_num\r\nprint(smallest_so_far)\r\n```\r\n_Hint: This is a trick question and most would say this code has a bug - so read carefully_\r\n\r\n    1) -1\r\n    2) 74\r\n    3) 42\r\n    4) 3\r\n\r\n_Answer is 1) -1_\r\n\r\n** 8- What is a good statement to describe the is operator as used in the following if statement:**\r\n```Python\r\nif smallest is None :\r\n     smallest = value\r\n```\r\n    1) matches both type and value\r\n    2) Looks up 'None' in the smallest variable if it is a string\r\n    3) The if statement is a syntax error\r\n    4) Is true if the smallest variable has a value of -1\r\n\r\n_Answer is 1) matches both type and value_\r\n\r\n** 9- Which reserved word indicates the start of an \"indefinite\" loop in Python?**\r\n\r\n     1) def\r\n     2) while\r\n     3) indef\r\n     4) break\r\n     5) for\r\n\r\n_Answer is 2) while_\r\n\r\n** 10- How many times will the body of the following loop be executed?**\r\n```Python\r\nn = 0\r\nwhile n > 0 :\r\n    print('Lather')\r\n    print('Rinse')\r\nprint('Dry off!')\r\n```\r\n    1) 0\r\n    2) This is an infinite loop\r\n    3) 5\r\n    4) 1\r\n\r\n_Answer is 1) 0_\r\n"
  },
  {
    "path": "Course-2/Assignments/Assignment_chapter10.py",
    "content": "'''\r\n10.2 Write a program to read through the mbox-short.txt and figure out the\r\ndistribution by hour of the day for each of the messages. You can pull the hour\r\nout from the 'From ' line by finding the time and then splitting the string a\r\nsecond time using a colon.\r\nFrom stephen.marquard@uct.ac.za Sat Jan  5 09:14:16 2008\r\nOnce you have accumulated the counts for each hour, print out the counts,\r\nsorted by hour as shown below.\r\n'''\r\n\r\nname = input(\"Enter file:\")\r\nif len(name) < 1 : name = \"mbox-short.txt\"\r\nhandle = open(name)\r\nhours = list()\r\ncounts = dict()\r\nfor line in handle:\r\n    line = line.split()\r\n    if len(line) < 3 or line[0] != 'From':\r\n        continue\r\n    time= line[5].split(':')\r\n    hours.append(time[0])\r\n\r\nfor hour in hours:\r\n    counts[hour] = counts.get(hour, 0) + 1\r\n\r\nlst = sorted([(k,v) for k,v in counts.items()])\r\n\r\nfor k,v in lst:\r\n    print(k,v)\r\n"
  },
  {
    "path": "Course-2/Assignments/Assignment_chapter6.py",
    "content": "'''\r\n6.5 Write code using find() and string slicing (see section 6.10) to extract the\r\nnumber at the end of the line below. Convert the extracted value to a floating\r\npoint number and print it out.\r\n'''\r\ntext = \"X-DSPAM-Confidence:    0.8475\";\r\n\r\nchar= text.find(':')\r\nnumb= text[char+1 :]\r\nnum = numb.strip()\r\n\r\nprint(float(num))\r\n"
  },
  {
    "path": "Course-2/Assignments/Assignment_chapter7.py",
    "content": "'''\r\n7.1 Write a program that prompts for a file name, then opens that file and\r\nreads through the file, and print the contents of the file in upper case.\r\nUse the file words.txt to produce the output below.\r\nYou can download the sample data at http://www.py4e.com/code3/words.txt\r\n'''\r\nfname = input(\"Enter file name: \")\r\nfh = open(fname)\r\nf = fh.read()\r\nfinal = f.upper().rstrip()\r\nprint (final)\r\n\r\n\r\n'''\r\n7.2 Write a program that prompts for a file name, then opens that file and\r\nreads through the file, looking for lines of the form:\r\nX-DSPAM-Confidence:    0.8475\r\nCount these lines and extract the floating point values from each of the lines\r\nand compute the average of those values and produce an output as shown below.\r\nDo not use the sum() function or a variable named sum in your solution.\r\nYou can download the sample data at http://www.py4e.com/code3/mbox-short.txt\r\nwhen you are testing below enter mbox-short.txt as the file name.\r\n'''\r\nfname = input(\"Enter file name: \")\r\nfh = open(fname)\r\ncount = 0\r\nadd = 0\r\nfor line in fh:\r\n    if not line.startswith(\"X-DSPAM-Confidence:\") : continue\r\n    count += 1\r\n    char = line.find(':')\r\n    numb = line[char+1:]\r\n    num = numb.strip()\r\n    add += float(num)\r\nprint(\"Average spam confidence:\", add/count)\r\n"
  },
  {
    "path": "Course-2/Assignments/Assignment_chapter8.py",
    "content": "'''\r\n8.4 Open the file romeo.txt and read it line by line. For each line, split the\r\nline into a list of words using the split() method. The program should build a\r\nlist of words. For each word on each line check to see if the word is already\r\nin the list and if not append it to the list. When the program completes, sort\r\nand print the resulting words in alphabetical order.\r\nYou can download the sample data at http://www.py4e.com/code3/romeo.txt\r\n'''\r\nfname = input(\"Enter file name: \")\r\nfh = open(fname)\r\nlst = list()\r\nfor line in fh:\r\n    words= line.split()\r\n    for word in words:\r\n        if word in lst:\r\n            continue\r\n        lst.append(word)\r\n\r\nprint(sorted(lst))\r\n\r\n\r\n'''\r\n8.5 Open the file mbox-short.txt and read it line by line. When you find a line\r\nthat starts with 'From ' like the following line:\r\nFrom stephen.marquard@uct.ac.za Sat Jan  5 09:14:16 2008\r\nYou will parse the From line using split() and print out the second word in the\r\nline (i.e. the entire address of the person who sent the message). Then print\r\nout a count at the end.\r\nHint: make sure not to include the lines that start with 'From:'.\r\n\r\nYou can download the sample data at http://www.py4e.com/code3/mbox-short.txt\r\n'''\r\nfname = input(\"Enter file name: \")\r\nfh = open(fname)\r\ncount = 0\r\nfor line in fh:\r\n    line = line.rstrip()\r\n    if len(line) < 3:\r\n        continue\r\n    words = line.split()\r\n    if words[0] != 'From':\r\n        continue\r\n    print(words[1])\r\n    count += 1\r\n\r\nprint(\"There were \" + str(count) + \" lines in the file with From as the first word\")\r\n"
  },
  {
    "path": "Course-2/Assignments/Assignment_chapter9.py",
    "content": "'''\r\n9.4 Write a program to read through the mbox-short.txt and figure out who has\r\nthe sent the greatest number of mail messages. The program looks for 'From '\r\nlines and takes the second word of those lines as the person who sent the mail.\r\nThe program creates a Python dictionary that maps the sender's mail address to a\r\ncount of the number of times they appear in the file. After the dictionary is\r\nproduced, the program reads through the dictionary using a maximum loop to find\r\nthe most prolific committer.\r\n'''\r\nname = input(\"Enter file:\")\r\nif len(name) < 1 : name = \"mbox-short.txt\"\r\nhandle = open(name)\r\nsenders1 = list()\r\nsenders = dict()\r\nfor line in handle:\r\n    line = line.split()\r\n    if len(line) < 3 or line[0] != 'From':\r\n        continue\r\n    senders1.append(line[1])\r\n\r\nfor sender in senders1:\r\n    senders[sender] = senders.get(sender, 0) + 1\r\n\r\nmaximum = None\r\ntheone = None\r\nfor sender, count in senders.items():\r\n    if maximum is None or count > maximum:\r\n        maximum = count\r\n        theone = sender\r\n\r\nprint(theone, maximum)\r\n"
  },
  {
    "path": "Course-2/Quizzes/quiz_chapter10.md",
    "content": "** 1- What is the difference between a Python tuple and Python list?**\r\n\r\n    1) Lists maintain the order of the items and tuples do not maintain order\r\n    2) Tuples can be expanded after they are created and lists cannot\r\n    3) Lists are indexed by integers and tuples are indexed by strings\r\n    4) Lists are mutable and tuples are not mutable\r\n\r\n_Answer is 4) Lists are mutable and tuples are not mutable_\r\n\r\n** 2- Which of the following methods work both in Python lists and Python tuples?**\r\n\r\n    1) reverse()\r\n    2) sort()\r\n    3) append()\r\n    4) index()\r\n    5) pop()\r\n\r\n_Answer is 4) index()_\r\n\r\n** 3- What will end up in the variable y after this code is executed?**\r\n```Python\r\nx , y = 3, 4\r\n```\r\n    1) 4\r\n    2) A two item tuple\r\n    3) 3\r\n    4) A dictionary with the key 3 mapped to the value 4\r\n    5) A two item list\r\n\r\n_Answer is 1) 4_\r\n\r\n** 4- In the following Python code, what will end up in the variable y?**\r\n```Python\r\nx = { 'chuck' : 1 , 'fred' : 42, 'jan': 100}\r\ny = x.items()\r\n```\r\n    1) A list of integers\r\n    2) A tuple with three integers\r\n    3) A list of strings\r\n    4) A list of tuples\r\n\r\n_Answer is 4) A list of tuples_\r\n\r\n** 5- Which of the following tuples is greater than x in the following Python sequence?**\r\n```Python\r\nx = (5, 1, 3)\r\nif ??? > x :\r\n   ...\r\n```\r\n    1) (5, 0, 300)\r\n    2) (6, 0, 0)\r\n    3) (0, 1000, 2000)\r\n    4) (4, 100, 200)\r\n\r\n_Answer is 2) (6, 0, 0)_\r\n\r\n** 6- What does the following Python code accomplish, assuming the c is a non-empty dictionary?**\r\n```Python\r\ntmp = list()\r\nfor k, v in c.items() :\r\n    tmp.append( (v, k) )\r\n```\r\n    1) It computes the largest of all of the values in the dictionary\r\n    2) It sorts the dictionary based on its key values\r\n    3) It creates a list of tuples where each tuple is a value, key pair\r\n    4) It computes the average of all of the values in the dictionary\r\n\r\n_Answer is 3) It creates a list of tuples where each tuple is a value, key pair_\r\n\r\n** 7- If the variable data is a Python list, how do we sort it in reverse order?**\r\n\r\n    1) data.sort.reverse()\r\n    2) data = sortrev(data)\r\n    3) data = data.sort(-1)\r\n    4) data.sort(reverse=True)\r\n\r\n_Answer is 4) data.sort(reverse=True)_\r\n\r\n** 8- Using the following tuple, how would you print 'Wed'? **\r\n```Python\r\ndays = ('Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun')\r\n```\r\n    1) print(days.get(1,-1))\r\n    2) print(days(2))\r\n    3) print[days(2)]\r\n    4) print(days[2])\r\n    5) print(days{2})\r\n    6) print(days[1])\r\n\r\n_Answer is 4) print(days[2])_\r\n\r\n** 9- In the following Python loop, why are there two iteration variables (k and v)?**\r\n```Python\r\nc = {'a':10, 'b':1, 'c':22}\r\nfor k, v in c.items() :\r\n    ...\r\n```\r\n    1) Because the items() method in dictionaries returns a list of tuples\r\n    2) Because the keys for the dictionary are strings\r\n    3) Because for each item we want the previous and current key\r\n    4) Because there are two items in the dictionary\r\n\r\n_Answer is 1) Because the items() method in dictionaries returns a list of tuples_\r\n\r\n** 10- Given that Python lists and Python tuples are quite similar - when might you prefer to use a tuple over a list?**\r\n\r\n    1) For a list of items that want to use strings as key values instead of integers\r\n    2) For a temporary variable that you will use and discard without modifying\r\n    3) For a list of items that will be extended as new items are found\r\n    4) For a list of items you intend to sort in place\r\n\r\n_Answer is 2) For a temporary variable that you will use and discard without modifying_\r\n"
  },
  {
    "path": "Course-2/Quizzes/quiz_chapter6.md",
    "content": "** 1- What does the following Python Program print out?**\r\n```Python\r\nstr1 = \"Hello\"\r\nstr2 = 'there'\r\nbob = str1 + str2\r\nprint(bob)\r\n```\r\n    1) Hellothere\r\n    2) 0\r\n    3) Hello\r\n       there\r\n    4) Hello\r\n\r\n_Answer is 1) Hellothere_\r\n\r\n** 2- What does the following Python program print out?**\r\n```Python\r\nx = '40'\r\ny = int(x) + 2\r\nprint(y)\r\n```\r\n    1) int402\r\n    2) 42\r\n    3) 402\r\n    4) x2\r\n\r\n_Answer is 2) 42_\r\n\r\n** 3- How would you use the index operator [] to print out the letter q from the following string? **\r\n```Python\r\nx = 'From marquard@uct.ac.za'\r\n```\r\n    1) print x[-1]\r\n    2) print(x[7])\r\n    3) print(x[q])\r\n    4) print(x[9])\r\n    5) print(x[8])\r\n\r\n_Answer is 5) print(x[8])_\r\n\r\n** 4- How would you use string slicing [:] to print out 'uct' from the following string?**\r\n```Python\r\nx = 'From marquard@uct.ac.za'\r\n```\r\n    1) print(x[14:17])\r\n    2) print(x[14:3])\r\n    3) print(x[14/17])\r\n    4) print(x[14+17])\r\n    5) print(x[15:3])\r\n    6) print(x[15:18])\r\n\r\n_Answer is 1) print(x[14:17])_\r\n\r\n** 5- What is the iteration variable in the following Python code?**\r\n```Python\r\nfor letter in 'banana' :\r\n    print(letter)\r\n```\r\n    1) in\r\n    2) print\r\n    3) letter\r\n    4) for\r\n    5) 'banana'\r\n\r\n_Answer is 3) letter_\r\n\r\n** 6- What does the following Python code print out?**\r\n```Python\r\nprint(len('banana')*7)\r\n```\r\n    1) 42\r\n    2) banana7\r\n    3) bananabananabananabananabananabananabanana\r\n    4) 0\r\n\r\n_Answer is 1) 42_\r\n\r\n** 7- How would you print out the following variable in all upper case in Python?**\r\n```Python\r\ngreet = 'Hello Bob'\r\n```\r\n```Python\r\n1)\r\nint i=0;\r\nchar c;\r\nwhile (greet[i]){\r\n  c=greet[i];\r\n  putchar(toupper(c));\r\n  i++;\r\n}\r\n```\r\n```Python\r\n2)\r\nputs(greet.ucase);\r\n```\r\n```Python\r\n3)\r\nprint(upper(greet))\r\n```\r\n```Python\r\n4)\r\nprint(greet.upper())\r\n```\r\n_Answer is 4) print(greet.upper())_\r\n\r\n** 8- Which of the following is not a valid string method in Python?**\r\n\r\n    1) shout()\r\n    2) split()\r\n    3) join()\r\n    4) startswith()\r\n\r\n_Answer is 1) shout()_\r\n\r\n** 9- What will the following Python code print out?**\r\n```Python\r\ndata = 'From stephen.marquard@uct.ac.za Sat Jan  5 09:14:16 2008'\r\npos = data.find('.')\r\nprint(data[pos:pos+3])\r\n```\r\n    1) Sat\r\n    2) .ma\r\n    3) uct\r\n    4) mar\r\n\r\n_Answer is 2) .ma_\r\n\r\n** 10- Which of the following string methods removes whitespace from both the beginning and end of a string? **\r\n\r\n    1) strip()\r\n    2) strtrunc()\r\n    3) split()\r\n    4) wsrem()\r\n\r\n_Answer is 1) strip()_\r\n"
  },
  {
    "path": "Course-2/Quizzes/quiz_chapter7.md",
    "content": "** 1- Given the architecture and terminology we introduced in Chapter 1,\r\nwhere are files stored?**\r\n\r\n    1) Motherboard\r\n    2) Main Memory\r\n    3) Machine Language\r\n    4) Secondary memory\r\n\r\n_Answer is 4) Secondary memory_\r\n\r\n** 2- What is stored in a \"file handle\" that is returned from a successful open() call?**\r\n\r\n    1) The handle is a connection to the file's data\r\n    2) All the data from the file is read into memory and stored in the handle\r\n    3) The handle contains the first 10 lines of a file\r\n    4) The handle has a list of all of the files in a particular folder on the hard drive\r\n\r\n_Answer is 1) The handle is a connection to the file's data_\r\n\r\n** 3- What do we use the second parameter of the open() call to indicate?**\r\n\r\n    1) What disk drive the file is stored on\r\n    2) How large we expect the file to be\r\n    3) The list of folders to be searched to find the file we want to open\r\n    4) Whether we want to read data from the file or write data to the file\r\n\r\n_Answer is 4) Whether we want to read data from the file or write data to the file_\r\n\r\n** 4- What Python function would you use if you wanted to prompt the user for a file name to open?**\r\n\r\n    1) input()\r\n    2) read()\r\n    3) file_input()\r\n    4) cin\r\n\r\n_Answer is 1) input()_\r\n\r\n** 5- What is the purpose of the newline character in text files?**\r\n\r\n    1) It enables random movement throughout the file\r\n    2) It indicates the end of one line of text and the beginning of another line of text\r\n    3) It allows us to open more than one files and read them in a synchronized manner\r\n    4) It adds a new network connection to retrieve files from the network\r\n\r\n_Answer is 2) It indicates the end of one line of text and the beginning of another line of text_\r\n\r\n** 6- If we open a file as follows:**\r\n```Python\r\nxfile = open('mbox.txt')\r\n```\r\n_What statement would we use to read the file one line at a time?_\r\n\r\n```Python\r\n1) while (<xfile>) {\r\n\r\n2) while ( getline (xfile,line) ) {\r\n\r\n3) READ (xfile,*,END=10) line\r\n\r\n4) for line in xfile:\r\n```\r\n\r\n_Answer is 4) for line in xfile:_\r\n\r\n\r\n** 7- What is the purpose of the following Python code?**\r\n```Python\r\nfhand = open('mbox.txt')\r\nx = 0\r\nfor line in fhand:\r\n       x = x + 1\r\nprint(x)\r\n```\r\n\r\n    1) Convert the lines in mbox.txt to lower case\r\n    2) Remove the leading and trailing spaces from each line in mbox.txt\r\n    3) Reverse the order of the lines in mbox.txt\r\n    4) Count the lines in the file 'mbox.txt'\r\n\r\n_Answer is 4) Count the lines in the file 'mbox.txt'_\r\n\r\n** 8- If you write a Python program to read a text file and you see extra blank lines in the output that are not present in the file input as shown below, what Python string function will likely solve the problem?**\r\n```\r\nFrom: stephen.marquard@uct.ac.za\r\n\r\nFrom: louis@media.berkeley.edu\r\n\r\nFrom: zqian@umich.edu\r\n\r\nFrom: rjlowe@iupui.edu\r\n```\r\n    1) trim()\r\n    2) split()\r\n    3) ljust()\r\n    4) rstrip()\r\n\r\n_Answer is 2) 4) rstrip()_\r\n\r\n\r\n** 9- The following code sequence fails with a traceback when the user enters a file that does not exist. How would you avoid the traceback and make it so you could print out your own error message when a bad file name was entered?**\r\n```Python\r\nfname = input('Enter the file name: ')\r\nfhand = open(fname)\r\n```\r\n    1) setjmp / longjmp\r\n    2) try / except\r\n    3) try / catch / finally\r\n    4) signal handlers\r\n\r\n_Answer is 2) try / except_\r\n\r\n** 10- What does the following Python code do?**\r\n```Python\r\nfhand = open('mbox-short.txt')\r\ninp = fhand.read()\r\n```\r\n    1) Checks to see if the file exists and can be written\r\n    2) Reads the entire file into the variable inp as a string\r\n    3) Turns the text in the file into a graphic image like a PNG or JPG\r\n    4) Prompts the user for a file name\r\n\r\n_Answer is 2) Reads the entire file into the variable inp as a string_\r\n"
  },
  {
    "path": "Course-2/Quizzes/quiz_chapter8.md",
    "content": "** 1- How are \"collection\" variables different from normal variables?**\r\n\r\n    1) Collection variables can only store a single value\r\n    2) Collection variables pull multiple network documents together\r\n    3) Collection variables can store multiple values in a single variable\r\n    4) Collection variables merge streams of output into a single stream\r\n\r\n_Answer is 3) Collection variables can store multiple values in a single variable_\r\n\r\n** 2- What are the Python keywords used to construct a loop to iterate through a list?**\r\n\r\n    1) def / return\r\n    2) try / except\r\n    3) foreach / in\r\n    4) for / in\r\n\r\n_Answer is 4) for / in_\r\n\r\n** 3- For the following list, how would you print out 'Sally'?**\r\n```Python\r\nfriends = [ 'Joseph', 'Glenn', 'Sally' ]\r\n```\r\n\r\n    1) print(friends[2:1])\r\n    2) print friends[3]\r\n    3) print(friends[2])\r\n    4) print(friends['Sally'])\r\n\r\n_Answer is 3) print(friends[2])_\r\n\r\n** 4- What would the following Python code print out?**\r\n```Python\r\nfruit = 'Banana'\r\nfruit[0] = 'b'\r\nprint(fruit)\r\n```\r\n\r\n    1) [0]\r\n    2) Nothing would print - the program fails with a traceback\r\n    3) B\r\n    4) b\r\n    5) Banana\r\n    6) banana\r\n\r\n_Answer is 2) Nothing would print - the program fails with a traceback_\r\n\r\n** 5- Which of the following Python statements would print out the length of a list stored in the variable data?**\r\n\r\n    1) print(data.length())\r\n    2) print(strlen(data))\r\n    3) print(len(data))\r\n    4) print(data.Len)\r\n    5) print(length(data))\r\n    6) print(data.length)\r\n\r\n_Answer is 3) print(len(data))_\r\n\r\n** 6- What type of data is produced when you call the range() function?**\r\n```Python\r\nx = range(5)\r\n```\r\n    1) A boolean (true/false) value\r\n    2) A list of characters\r\n    3) A list of words\r\n    4) A list of integers\r\n    5) A string\r\n\r\n_Answer is 4) A list of integers_\r\n\r\n** 7- What does the following Python code print out?**\r\n```Python\r\na = [1, 2, 3]\r\nb = [4, 5, 6]\r\nc = a + b\r\nprint(len(c))\r\n```\r\n    1) 21\r\n    2) [4, 5, 6]\r\n    3) 15\r\n    4) [1, 2, 3, 4, 5, 6]\r\n    5) [1, 2, 3]\r\n    6) 6\r\n\r\n_Answer is 6) 6_\r\n\r\n** 8- Which of the following slicing operations will produce the list [12, 3]?**\r\n```Python\r\nt = [9, 41, 12, 3, 74, 15]\r\n```\r\n    1) t[1:3]\r\n    2) t[2:2]\r\n    3) t[2:4]\r\n    4) t[12:3]\r\n    5) t[:]\r\n\r\n_Answer is 3) t[2:4]_\r\n\r\n** 9- What list method adds a new item to the end of an existing list?**\r\n\r\n    1) index()\r\n    2) append()\r\n    3) forward()\r\n    4) add()\r\n    5) pop()\r\n    6) push()\r\n\r\n_Answer is 2) append()_\r\n\r\n** 10- What will the following Python code print out?**\r\n```Python\r\nfriends = [ 'Joseph', 'Glenn', 'Sally' ]\r\nfriends.sort()\r\nprint(friends[0])\r\n```\r\n    1) Sally\r\n    2) Joseph\r\n    3) Glenn\r\n    4) friends\r\n\r\n_Answer is 3) Glenn_\r\n"
  },
  {
    "path": "Course-2/Quizzes/quiz_chapter9.md",
    "content": "** 1- How are Python dictionaries different from Python lists?**\r\n\r\n    1) Python lists maintain order and dictionaries do not maintain order\r\n    2) Python lists can store strings and dictionaries can only store words\r\n    3) Python lists store multiple values and dictionaries store a single value\r\n    4) Python dictionaries are a collection and lists are not a collection\r\n\r\n_Answer is 1) Python lists maintain order and dictionaries do not maintain order_\r\n\r\n** 2- What is a term commonly used to describe the Python dictionary feature in other programming languages?**\r\n\r\n    1) Closures\r\n    2) Sequences\r\n    3) Lambdas\r\n    4) Associative arrays\r\n\r\n_Answer is 4) Associative arrays_\r\n\r\n** 3- What would the following Python code print out?**\r\n```Python\r\nstuff = dict()\r\nprint(stuff['candy'])\r\n```\r\n    1) 0\r\n    2) -1\r\n    3) The program would fail with a traceback\r\n    4) candy\r\n\r\n_Answer is 3) The program would fail with a traceback_\r\n\r\n** 4- What would the following Python code print out?**\r\n```Python\r\nstuff = dict()\r\nprint(stuff.get('candy',-1))\r\n```\r\n    1) -1\r\n    2) 0\r\n    3) 'candy'\r\n    4) The program would fail with a traceback\r\n\r\n_Answer is 1) -1_\r\n\r\n** 5- (T/F) When you add items to a dictionary they remain in the order in which you added them.**\r\n\r\n    1) False\r\n    2) True\r\n\r\n_Answer is 1) False_\r\n\r\n** 6- What is a common use of Python dictionaries in a program?**\r\n\r\n    1) Sorting a list of names into alphabetical order\r\n    2) Splitting a line of input into words using a space as a delimiter\r\n    3) Computing an average of a set of numbers\r\n    4) Building a histogram counting the occurrences of various strings in a file\r\n\r\n_Answer is 4) Building a histogram counting the occurrences of various strings in a file_\r\n\r\n** 7- Which of the following lines of Python is equivalent to the following sequence of statements assuming that counts is a dictionary?**\r\n```Python\r\nif key in counts:\r\n    counts[key] = counts[key] + 1\r\nelse:\r\n    counts[key] = 1\r\n```\r\n    1) counts[key] = counts.get(key,-1) + 1\r\n    2) counts[key] = (counts[key] * 1) + 1\r\n    3) counts[key] = counts.get(key,0) + 1\r\n    4) counts[key] = (key in counts) + 1\r\n    5) counts[key] = key + 1\r\n\r\n_Answer is 3) counts[key] = counts.get(key,0) + 1_\r\n\r\n** 8- In the following Python, what does the for loop iterate through?**\r\n```Python\r\nx = dict()\r\n...\r\nfor y in x :\r\n     ...\r\n```\r\n    1) It loops through the values in the dictionary\r\n    2) It loops through the integers in the range from zero through the length of the dictionary\r\n    3) It loops through the keys in the dictionary\r\n    4) It loops through all of the dictionaries in the program\r\n\r\n_Answer is 3) It loops through the keys in the dictionary_\r\n\r\n** 9- Which method in a dictionary object gives you a list of the values in the dictionary?**\r\n\r\n    1) keys()\r\n    2) items()\r\n    3) all()\r\n    4) each()\r\n    5) values()\r\n\r\n_Answer is 5) values()_\r\n\r\n** 10- What is the purpose of the second parameter of the get() method for Python dictionaries?**\r\n\r\n    1) An alternate key to use if the first key cannot be found\r\n    2) The value to retrieve\r\n    3) The key to retrieve\r\n    4) To provide a default value if the key is not found\r\n\r\n_Answer is 4) To provide a default value if the key is not found_\r\n"
  },
  {
    "path": "Course-3/Assignments/Assignment_chapter11.py",
    "content": "import csv\r\nimport re\r\n\r\nfilename = r'C:\\Users\\Omar\\Desktop\\py4e\\Course-3\\Assignments\\regex_sum_135850.txt'\r\nf = open(filename)\r\nd = f.read()\r\ny = re.findall('[0-9]+', d)\r\nsum = 0\r\nfor i in range(len(y)):\r\n    c = int(y[i])\r\n    sum += c\r\n\r\nprint(sum)\r\n"
  },
  {
    "path": "Course-3/Assignments/Assignment_chapter12.py",
    "content": "import socket\r\n\r\nmysock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)\r\nmysock.connect(('data.pr4e.org', 80))\r\ncmd = 'GET http://data.pr4e.org/intro-short.txt HTTP/1.0\\r\\n\\r\\n'.encode()\r\nmysock.send(cmd)\r\n\r\nwhile True:\r\n    data = mysock.recv(512)\r\n    if len(data) < 1:\r\n        break\r\n    print(data.decode(),end='')\r\n\r\nmysock.close()\r\n"
  },
  {
    "path": "Course-3/Assignments/Assignment_chapter13-1.py",
    "content": "from urllib.request import urlopen\r\nfrom bs4 import BeautifulSoup\r\nimport ssl\r\n\r\n# Ignore SSL certificate errors\r\nctx = ssl.create_default_context()\r\nctx.check_hostname = False\r\nctx.verify_mode = ssl.CERT_NONE\r\n\r\n# url: http://py4e-data.dr-chuck.net/comments_135852.html\r\nurl = input('Enter - ')\r\nhtml = urlopen(url, context=ctx).read()\r\nsoup = BeautifulSoup(html, \"html.parser\")\r\n\r\nspans = soup('span')\r\nnumbers = []\r\n\r\nfor span in spans:\r\n    numbers.append(int(span.string))\r\n\r\nprint (sum(numbers))\r\n# Answer is 2565\r\n"
  },
  {
    "path": "Course-3/Assignments/Assignment_chapter13-2.py",
    "content": "from urllib.request import urlopen\r\nfrom bs4 import BeautifulSoup\r\nimport ssl\r\n\r\nctx = ssl.create_default_context()\r\nctx.check_hostname = False\r\nctx.verify_mode = ssl.CERT_NONE\r\n\r\n# url is http://py4e-data.dr-chuck.net/known_by_Reuben.html\r\nurl = input(\"Enter URL: \")\r\ncount = int(input(\"Enter count: \"))\r\nposition = int(input(\"Enter position: \"))\r\n\r\n\r\nnames = []\r\n\r\nwhile count > 0:\r\n    print (\"retrieving: {0}\".format(url))\r\n    html = urlopen(url, context=ctx).read()\r\n    soup = BeautifulSoup(html, \"html.parser\")\r\n    anchors = soup('a')\r\n    name = anchors[position-1].string\r\n    names.append(name)\r\n    url = anchors[position-1]['href']\r\n    count -= 1\r\n\r\nprint (names[-1])\r\n"
  },
  {
    "path": "Course-3/Assignments/Assignment_chapter14.py",
    "content": "import urllib.request, urllib.parse, urllib.error\r\nimport xml.etree.ElementTree as ET\r\n\r\nserviceurl = 'http://maps.googleapis.com/maps/api/geocode/xml?'\r\n\r\nurl = input('Enter location: ')\r\n\r\nprint('Retrieving', url)\r\nuh = urllib.request.urlopen(url)\r\ndata = uh.read()\r\nprint('Retrieved', len(data), 'characters')\r\nprint(data.decode())\r\ntree = ET.fromstring(data)\r\n\r\ncounts =  tree.findall('.//count')\r\nprint (\"Count: \" + str(len(counts)))\r\n\r\naccumulator = 0\r\n\r\nfor count in counts:\r\n    accumulator += int(count.text)\r\n\r\nprint (\"Sum:\" + str(accumulator))\r\n"
  },
  {
    "path": "Course-3/Assignments/Assignment_chapter15-1.py",
    "content": "import json\r\nimport urllib.request, urllib.parse, urllib.error\r\nimport xml.etree.ElementTree as ET\r\n\r\nurl = input('Enter location: ')\r\naddress = urllib.request.urlopen(url)\r\ndata = address.read()\r\n\r\nprint('Retrieving', url)\r\nprint('Retrieved', len(data), 'characters')\r\n\r\ninfo = json.loads(data)\r\ninfo = info[\"comments\"]\r\n\r\ntotal = 0\r\n\r\nfor item in info:\r\n    print(\"Count: \",item[\"count\"])\r\n    total = total + int(item[\"count\"])\r\n    print(\"Sum: \", total)\r\n\r\nprint(\"Final sum: \", total)\r\n"
  },
  {
    "path": "Course-3/Assignments/Assignment_chapter15-2.py",
    "content": "import json\r\nimport urllib.request, urllib.parse, urllib.error\r\nimport xml.etree.ElementTree as ET\r\n\r\nplace_name = input(\"Enter a place name: \")\r\nbase_url = \"http://python-data.dr-chuck.net/geojson?sensor=false&\"\r\naddress_param = urllib.parse.urlencode({'address': place_name})\r\ntarget = base_url + address_param\r\n\r\nprint (\"Retrieving {0}\".format(target))\r\nconnection = urllib.request.urlopen(target)\r\nraw_data = connection.read()\r\nprint (\"Retrieved {0} characters\".format(len(raw_data)))\r\nparsed_data = json.loads(raw_data)\r\n\r\n#print(parsed_data)\r\nprint (\"Place id\", parsed_data[\"results\"][0][\"place_id\"])\r\n"
  },
  {
    "path": "Course-3/Assignments/regex_sum_135850.txt",
    "content": "This file contains the actual data for your assignment - good luck!\n\n\nWhy should you learn to write programs?\n\nWriting 1977 programs 9390 (or 4356 programming) is a very creative \n and rewarding activity.  You can write programs for \nmany reasons, ranging from making your living to solving\na difficult data analysis problem to having fun to helping\nsomeone else solve a problem.  This book assumes that \neveryone needs to know how to program, and that once \nyou know how to program you will figure out what you want \nto do with your newfound skills.  \n4815 5208 2594\nWe are surrounded in our daily lives with computers ranging \nfrom laptops to cell phones.  We can think of these computers\nas our personal assistants who can take care of many things\non our behalf.  The hardware in our current-day computers \nis essentially built to continuously ask us the question, \nWhat would you like me to do next?\n\nProgrammers add an operating system and a set of applications\nto the hardware and we end up with a Personal Digital\nAssistant that is quite helpful and capable of helping\nus do many different things.\n\nOur computers are fast and have vast amounts of memory and \ncould be very helpful to us if we only knew the language to\nspeak to explain to the computer what we would like it to \ndo next.  If we knew this language, we could tell the \ncomputer to do tasks on our behalf that were repetitive.  \nInterestingly, the kinds of things computers can do best\nare often the kinds of things that we humans find boring\nand mind-numbing.\n\nFor example, look at the first three paragraphs of this\nchapter and tell me the most commonly used word and how\nmany times the word is used.  While you were able to read\nand understand the words in a few seconds, counting them\nis almost painful because it is not the kind of problem \nthat human minds are designed to solve.  For a computer\nthe opposite is true, reading and understanding text \n948 from a piece of paper is hard for a computer to do \nbut counting the words and telling you how many times\nthe most used word was used is very easy for the\ncomputer:\n8208 \nOur personal information analysis assistant quickly \ntold us that the word to was used sixteen times in the\nfirst three paragraphs of this chapter.\n\nThis very fact that computers are good at things \nthat humans are not is why you need to become\nskilled at talking computer language.  Once you learn\nthis new language, you can delegate mundane tasks\nto your partner (the computer), leaving more time \nfor you to do the \n1678 things that you are uniquely suited for.  You bring 5317\ncreativity, intuition, and inventiveness to this\npartnership.  \n\nCreativity and motivation\n\nWhile this book is not intended for professional programmers, professional\nprogramming can be a very rewarding job both financially and personally.\nBuilding useful, elegant, and clever programs for others to use is a very\ncreative activity.  Your computer or Personal Digital Assistant (PDA) \nusually contains many different programs from many different groups of \nprogrammers, each competing for your attention and interest.  They try \ntheir best to meet your needs and give you a great user experience in the\nprocess.   In some situations, when you choose a piece of software, the \n3378 programmers are directly compensated because of your choice.\n\nIf we think of programs as the creative output of groups of programmers,\nperhaps the following figure is a more sensible version of our PDA:\n\nFor now, our primary motivation is not to make money or please end users, but\ninstead for us to be more productive in handling the data and \ninformation that we will encounter in our lives.\nWhen you first start, you will be both the programmer and the end user of\nyour programs.  As you gain skill as a programmer and\nprogramming feels more creative to you, your thoughts may turn\ntoward developing programs for others.\n\nComputer hardware architecture\n\nBefore we start learning the language we \nspeak 3564 to 994 give 5411 instructions to computers to \n develop software, we need to learn a small amount about \nhow computers are built.  \n\nCentral Processing Unit (or CPU) is \nthe part of the computer that is built to be obsessed \nwith what is next?  If your computer is rated\nat three Gigahertz, it means that the CPU will ask What next?\nthree billion times per second.  You are going to have to \nlearn how to talk fast to keep up with the CPU.\n\nMain Memory is used to store information\nthat the CPU needs in a hurry.  The main memory is nearly as \nfast as the CPU.  But the information stored in the main\nmemory vanishes when the computer is turned off.\n\nSecondary Memory is also used to store\ninformation, but it is much slower than the main memory.\nThe advantage of the secondary memory is that it can\nstore information even when there is no power to the\ncomputer.  Examples of secondary memory are disk drives\nor flash memory (typically found in USB sticks and portable\nmusic players).\n\nInput 8215 and 3093 Output 6326 Devices are simply our\n screen, keyboard, mouse, microphone, speaker, touchpad, etc.  \nThey are all of the ways we interact with the computer.\n\n2364 These days, most computers also have a\nNetwork Connection to retrieve information over a network.\nWe can think of the network as a very slow place to store and\nretrieve data that might not always be up.  So in a sense,\nthe network is a slower and at times unreliable form of\nSecondary Memory.\n\nWhile most of the detail of how these components work is best left \nto computer builders, it helps to have some terminology\nso we can talk about these different parts as we write our programs.\n\nAs a programmer, your job is to use and orchestrate \n609 each of these resources to solve the problem that you need to solve\nand analyze the data you get from the solution.  As a programmer you will \nmostly be talking to the CPU and telling it what to \ndo next.  Sometimes you will tell the CPU to use the main memory,\nsecondary memory, network, or the input/output devices.\n\nYou 9035 need 723 to 9288 be the person who answers the CPU's What next? \n 1461 question.  But it would be very uncomfortable to shrink you 5535\ndown to five mm  tall and insert you into the computer just so you \ncould issue a command three billion times per second.  So instead,\nyou must write down your instructions in advance.\nWe call these stored instructions a program and the act \nof writing these instructions down and getting the instructions to \nbe correct programming.\n\nUnderstanding programming\n\nIn the rest of this book, we will try to turn you into a person\nwho is skilled in the art of programming.  In the end you will be a \nprogrammer --- perhaps not a professional programmer, but \n9904 at least you will have the skills to look at a data/information 3412\nanalysis problem and develop a program to solve the problem.\n\nproblem solving\n9397 213 5056\nIn a sense, you need two skills to be a programmer:\n\nFirst, you need to know the programming language (Python) -\nyou need to know the vocabulary and the grammar.  You need to be able \nto 4288 spell 264 the 4738 words in this new language properly and know how to construct \n well-formed sentences in this new language.\n\nSecond, you need to tell a story.  In writing a story,\nyou 4245 combine 3594 words 6180 and sentences to convey an idea to the reader. \n There is a skill and art in constructing the story, and skill in\nstory writing is improved by doing some writing and getting some\nfeedback.  In programming, our program is the story and the \nproblem you are trying to solve is the idea.\n\nitemize\n\nOnce you learn one programming language such as Python, you will \nfind it much easier to learn a second programming language such\nas JavaScript or C++.  The new programming language has very different \nvocabulary and grammar but the problem-solving skills \nwill be the same across all programming languages.\n\nYou will learn the vocabulary and sentences of Python pretty quickly.\nIt will take longer for you to be able to write a coherent program\nto solve a brand-new problem.  We teach programming much like we teach\nwriting.  We start reading and explaining programs, then we write \nsimple programs, and then we write increasingly complex programs over time.\nAt some point you get your muse and see the patterns on your own\nand can see more naturally how to take a problem and \nwrite a program that solves that problem.  And once you get \nto that point, programming becomes a very pleasant and creative process.  \n\nWe start with the vocabulary and structure of Python programs.  Be patient\nas the simple examples remind you of when you started reading for the first\ntime. \n\nWords and sentences\n\nUnlike human languages, the Python vocabulary is actually pretty small.\nWe call this vocabulary the reserved words.  These are words that\nhave very special meaning to Python.  When Python sees these words in \na Python program, they have one and only one meaning to Python.  Later\nas you write programs you will make up your own words that have meaning to \nyou called variables.   You will have great latitude in choosing\nyour names for your variables, but you cannot use any of Python's \nreserved words as a name for a variable.\n\nWhen we train a dog, we use special words like\nsit, stay, and fetch.  When you talk to a dog and\ndon't use any of the reserved words, they just look at you with a \nquizzical look on their face until you say a reserved word.  \nFor example, if you say, \nI wish more people would walk to improve their overall health, \nwhat most dogs likely hear is,\n6417 blah blah blah walk blah blah blah blah.\nThat is because walk is a reserved word in dog language.  \n\nThe reserved words in the language where humans talk to \nPython include the following:\n\nand       del       from      not       while    \nas        elif      global    or        with     \n3828 assert    else      if        pass      yield 2838\nbreak     except    import    print              \nclass     exec      in        raise              \ncontinue  finally   is        return             \ndef       for       lambda    try\n\nThat is it, and unlike a dog, Python is already completely trained.\nWhen you say try, Python will try every time you say it without\nfail.\n\n4257 We will learn these reserved words and how they are used in good time, 1600\nbut for now we will focus on the Python equivalent of speak (in \nhuman-to-dog 439 language). 4784  864 The nice thing about telling Python to speak\n is that we can even tell it what to say by giving it a message in quotes:\n\nAnd we have even written our first syntactically correct Python sentence.\nOur sentence starts with the reserved word print followed\nby a string of text of our choosing enclosed in single quotes.\n\nConversing with Python\n\nNow that we have a word and a simple sentence that we know in Python,\nwe need to know how to start a conversation with Python to test \nour new language skills.\n\nBefore you can converse with Python, you must first install the Python\nsoftware on your computer and learn how to start Python on your \ncomputer.  That is too much detail for this chapter so I suggest\nthat you consult www.py4e.com where I have detailed\ninstructions and screencasts of setting up and starting Python \non Macintosh and Windows systems.  At some point, you will be in \na terminal or command window and you will type python and \nthe Python interpreter will start executing in interactive mode\nand appear somewhat as follows:\n3984 7879 627\n\nThe >>> prompt is the Python interpreter's way of asking you, What\ndo you want me to do next?  Python is ready to have a conversation with\nyou.  All you have to know is how to speak the Python language.\n1895 \nLet's say for example that you did not know even the simplest Python language\nwords or sentences. You might want to use the standard line that astronauts \nuse when they land on a faraway planet and try to speak with the inhabitants\nof the planet:\n\nThis is not going so well.  Unless you think of something quickly,\nthe inhabitants of the planet are likely to stab you with their spears, \nput you on a spit, roast you over a fire, and eat you for dinner.\n\nAt this point, you should also realize that while Python \nis amazingly complex and powerful and very picky about \nthe syntax you use to communicate with it, Python is \nnot intelligent.  You are really just having a conversation\nwith yourself, but using proper syntax.\n\nIn a sense, when you use a program written by someone else\nthe 809 conversation 1949 is 600 between you and those other\n programmers with Python acting as an intermediary.  Python\nis a way for the creators of programs to express how the \nconversation is supposed to proceed.  And\nin just a few more chapters, you will be one of those\nprogrammers using Python to talk to the users of your program.\n\nBefore we leave our first conversation with the Python \ninterpreter, you should probably know the proper way\nto say good-bye when interacting with the inhabitants\nof Planet Python:\n\nYou will notice that the error is different for the first two\nincorrect attempts.   The second error is different because \nif is a reserved word and Python saw the reserved word\nand thought we were trying to say something but got the syntax\nof the sentence wrong.\n\nTerminology: interpreter and compiler\n\nPython 1453 is 8429 a 4458 high-level language intended to be relatively\n straightforward for humans to read and write and for computers\nto read and process.  Other high-level languages include Java, C++,\nPHP, Ruby, Basic, Perl, JavaScript, and many more.  The actual hardware\ninside the Central Processing Unit (CPU) does not understand any\nof these high-level languages.\n\nThe CPU understands a language we call machine language.  Machine\nlanguage is very simple and frankly very tiresome to write because it \nis represented all in zeros and ones.\n\nMachine language seems quite simple on the surface, given that there \nare only zeros and ones, but its syntax is even more complex\nand far more intricate than Python.  So very few programmers ever write\nmachine language.  Instead we build various translators to allow\nprogrammers to write in high-level languages like Python or JavaScript\nand these translators convert the programs to machine language for actual\n8636 execution by the CPU. 9553\n\nSince machine language is tied to the computer hardware, machine language\nis not portable across different types of hardware.  Programs written in \nhigh-level languages can be moved between different computers by using a \ndifferent interpreter on the new machine or recompiling the code to create\na machine language version of the program for the new machine.\n\nThese programming language translators fall into two general categories:\n7592 (one) interpreters and (two) compilers. 8122\n\nAn interpreter reads the source code of the program as written by the\nprogrammer, parses the source code, and interprets the instructions on the fly.\nPython is an interpreter and when we are running Python interactively, \nwe can type a line of Python (a sentence) and Python processes it immediately\nand is ready for us to type another line of Python.   \n\nSome of the lines of Python tell Python that you want it to remember some \nvalue for later.   We need to pick a name for that value to be remembered and\nwe can use that symbolic name to retrieve the value later.  We use the \nterm variable to refer to the labels we use to refer to this stored data.\n\n1740 In this example, we ask Python to remember the value six and use the label x\nso we can retrieve the value later.   We verify that Python has actually remembered\n1463 the value using x and multiply\nit by seven and put the newly computed value in y.  Then we ask Python to print out\nthe value currently in y.\n9813 \nEven though we are typing these commands into Python one line at a time, Python\nis treating them as an ordered sequence of statements with later statements able\nto retrieve data created in earlier statements.   We are writing our first \nsimple paragraph with four sentences in a logical and meaningful order.\n\nIt is the nature of an interpreter to be able to have an interactive conversation\nas shown above.  A compiler needs to be handed the entire program in a file, and then \nit runs a process to translate the high-level source code into machine language\nand then the compiler puts the resulting machine language into a file for later\nexecution.\n100 3252 7646\nIf you have a Windows system, often these executable machine language programs have a\nsuffix of .exe or .dll which stand for executable and dynamic link\nlibrary respectively.  In Linux and Macintosh, there is no suffix that uniquely marks\na file as executable.\n\nIf you were to open an executable file in a text editor, it would look \ncompletely crazy and be unreadable:\n\nIt is not easy to read or write machine language, so it is nice that we have\ncompilers that allow us to write in high-level\nlanguages like Python or C.\n\nNow at this point in our discussion of compilers and interpreters, you should \nbe wondering a bit about the Python interpreter itself.  What language is \nit written in?  Is it written in a compiled language?  When we type\npython, what exactly is happening?\n\nThe Python interpreter is written in a high-level language called C.  \nYou can look at the actual source code for the Python interpreter by\ngoing to www.python.org and working your way to their source code.\nSo Python is a program itself and it is compiled into machine code.\nWhen 6797 you 6302 installed 3119 Python on your computer (or the vendor installed it),\n you copied a machine-code copy of the translated Python program onto your\nsystem.   In Windows, the executable machine code for Python itself is likely\nin a file.\n\nThat is more than you really need to know to be a Python programmer, but\nsometimes it pays to answer those little nagging questions right at \nthe beginning.\n\nWriting a program\n\nTyping commands into the Python interpreter is a great way to experiment \nwith Python's features, but it is not recommended for solving more complex problems.\n2127  7297\nWhen we want to write a program, \nwe use a text editor to write the Python instructions into a file,\nwhich is called a script.  By\nconvention, Python scripts have names that end with .py.\n\nscript\n\nTo execute the script, you have to tell the Python interpreter \nthe name of the file.  In a Unix or Windows command window, \nyou would type python hello.py as follows:\n\nWe call the Python interpreter and tell it to read its source code from\n7672 the file hello.py instead of prompting us for lines of Python code\ninteractively.\n\nYou will notice that there was no need to have quit() at the end of\nthe Python program in the file.   When Python is reading your source code\nfrom a file, it knows to stop when it reaches the end of the file.\n\nWhat is a program?\n\nThe definition of a program at its most basic is a sequence\nof Python statements that have been crafted to do something.\nEven our simple hello.py script is a program.  It is a one-line\nprogram and is not particularly useful, but in the strictest definition,\nit is a Python program.\n\nIt might be easiest to understand what a program is by thinking about a problem \nthat a program might be built to solve, and then looking at a program\nthat would solve that problem.\n\nLets say you are doing Social Computing research on Facebook posts and \nyou are interested in the most frequently used word in a series of posts.\nYou could print out the stream of Facebook posts and pore over the text\nlooking for the most common word, but that would take a long time and be very \nmistake prone.  You would be smart to write a Python program to handle the\ntask quickly and accurately so you can spend the weekend doing something \nfun.\n\nFor example, look at the following text about a clown and a car.  Look at the \ntext and figure out the most common word and how many times it occurs.\n\nThen imagine that you are doing this task looking at millions of lines of \ntext.  Frankly it would be quicker for you to learn Python and write a \nPython program to count the words than it would be to manually \nscan the words.\n\nThe even better news is that I already came up with a simple program to \nfind the most common word in a text file.  I wrote it,\ntested it, and now I am giving it to you to use so you can save some time.\n\nYou don't even need to know Python to use this program.  You will need to get through \nChapter ten of this book to fully understand the awesome Python techniques that were\nused to make the program.  You are the end user, you simply use the program and marvel\nat its cleverness and how it saved you so much manual effort.\nYou simply type the code \ninto a file called words.py and run it or you download the source \ncode from http://www.py4e.com/code3/ and run it.\n\nThis is a good example of how Python and the Python language are acting as an intermediary\nbetween you (the end user) and me (the programmer).  Python is a way for us to exchange useful\ninstruction sequences (i.e., programs) in a common language that can be used by anyone who \ninstalls Python on their computer.  So neither of us are talking to Python,\ninstead we are communicating with each other through Python.\n\nThe building blocks of programs\n\nIn the next few chapters, we will learn more about the vocabulary, sentence structure,\nparagraph structure, and story structure of Python.  We will learn about the powerful\ncapabilities of Python and how to compose those capabilities together to create useful\nprograms.\n\nThere are some low-level conceptual patterns that we use to construct programs.  These\nconstructs are not just for Python programs, they are part of every programming language\nfrom machine language up to the high-level languages.\n\ndescription\n\nGet data from the outside world.  This might be \nreading data from a file, or even some kind of sensor like \na microphone or GPS.  In our initial programs, our input will come from the user\ntyping data on the keyboard.\n\nDisplay the results of the program on a screen\nor store them in a file or perhaps write them to a device like a\nspeaker to play music or speak text.\n\nPerform statements one after\nanother in the order they are encountered in the script.\n\nCheck for certain conditions and\nthen execute or skip a sequence of statements.\n\nPerform some set of statements \nrepeatedly, usually with\nsome variation.\n\nWrite a set of instructions once and give them a name\nand then reuse those instructions as needed throughout your program.\n\ndescription\n\nIt sounds almost too simple to be true, and of course it is never\nso simple.  It is like saying that walking is simply\nputting one foot in front of the other.  The art \nof writing a program is composing and weaving these\nbasic elements together many times over to produce something\nthat is useful to its users.\n\nThe word counting program above directly uses all of \nthese patterns except for one.\n\nWhat could possibly go wrong?\n\nAs we saw in our earliest conversations with Python, we must\ncommunicate very precisely when we write Python code.  The smallest\ndeviation or mistake will cause Python to give up looking at your\nprogram.\n\nBeginning programmers often take the fact that Python leaves no\nroom for errors as evidence that Python is mean, hateful, and cruel.\nWhile Python seems to like everyone else, Python knows them \npersonally and holds a grudge against them.  Because of this grudge,\nPython takes our perfectly written programs and rejects them as \nunfit just to torment us.\n\nThere is little to be gained by arguing with Python.  It is just a tool.\nIt has no emotions and it is happy and ready to serve you whenever you\nneed it.  Its error messages sound harsh, but they are just Python's\ncall for help.  It has looked at what you typed, and it simply cannot\nunderstand what you have entered.\n\nPython is much more like a dog, loving you unconditionally, having a few\nkey words that it understands, looking you with a sweet look on its\nface (>>>), and waiting for you to say something it understands.\nWhen Python says SyntaxError: invalid syntax, it is simply wagging\nits tail and saying, You seemed to say something but I just don't\nunderstand what you meant, but please keep talking to me (>>>).\n\nAs your programs become increasingly sophisticated, you will encounter three \ngeneral types of errors:\n\ndescription\n\nThese are the first errors you will make and the easiest\nto fix.  A syntax error means that you have violated the grammar rules of Python.\nPython does its best to point right at the line and character where \nit noticed it was confused.  The only tricky bit of syntax errors is that sometimes\nthe mistake that needs fixing is actually earlier in the program than where Python\nnoticed it was confused.  So the line and character that Python indicates in \na syntax error may just be a starting point for your investigation.\n\nA logic error is when your program has good syntax but there is a mistake \nin the order of the statements or perhaps a mistake in how the statements relate to one another.\nA good example of a logic error might be, take a drink from your water bottle, put it \nin your backpack, walk to the library, and then put the top back on the bottle.\n\nA semantic error is when your description of the steps to take \nis syntactically perfect and in the right order, but there is simply a mistake in \nthe program.  The program is perfectly correct but it does not do what\nyou intended for it to do. A simple example would\nbe if you were giving a person directions to a restaurant and said, ...when you reach\nthe intersection with the gas station, turn left and go one mile and the restaurant\nis a red building on your left.  Your friend is very late and calls you to tell you that\nthey are on a farm and walking around behind a barn, with no sign of a restaurant.  \nThen you say did you turn left or right at the gas station? and \nthey say, I followed your directions perfectly, I have \nthem written down, it says turn left and go one mile at the gas station.  Then you say,\nI am very sorry, because while my instructions were syntactically correct, they \nsadly contained a small but undetected semantic error.. \n\ndescription\n\nAgain in all three types of errors, Python is merely trying its hardest to \ndo exactly what you have asked.\n\nThe learning journey\n\nAs you progress through the rest of the book, don't be afraid if the concepts \ndon't seem to fit together well the first time.  When you were learning to speak, \nit was not a problem  for your first few years that you just made cute gurgling noises.\nAnd it was OK if it took six months for you to move from simple vocabulary to \nsimple sentences and took five or six more years to move from sentences to paragraphs, and a\nfew more years to be able to write an interesting complete short story on your own.\n\nWe want you to learn Python much more rapidly, so we teach it all at the same time\nover the next few chapters.  \nBut it is like learning a new language that takes time to absorb and understand\nbefore it feels natural.\nThat leads to some confusion as we visit and revisit\ntopics to try to get you to see the big picture while we are defining the tiny\nfragments that make up that big picture.  While the book is written linearly, and\nif you are taking a course it will progress in a linear fashion, don't hesitate\nto be very nonlinear in how you approach the material.  Look forwards and backwards\nand read with a light touch.  By skimming more advanced material without \nfully understanding the details, you can get a better understanding of the why? \nof programming.  By reviewing previous material and even redoing earlier \nexercises, you will realize that you actually learned a lot of material even \nif the material you are currently staring at seems a bit impenetrable.\n\nUsually when you are learning your first programming language, there are a few\nwonderful Ah Hah! moments where you can look up from pounding away at some rock\nwith a hammer and chisel and step away and see that you are indeed building \na beautiful sculpture.\n\nIf something seems particularly hard, there is usually no value in staying up all \nnight and staring at it.   Take a break, take a nap, have a snack, explain what you \nare having a problem with to someone (or perhaps your dog), and then come back to it with\nfresh eyes.  I assure you that once you learn the programming concepts in the book\nyou will look back and see that it was all really easy and elegant and it simply \ntook you a bit of time to absorb it.\n42\nThe end\n"
  },
  {
    "path": "Course-3/Quizzes/quiz_chapter11.md",
    "content": "** 1- Which of the following best describes \"Regular Expressions\"?**\r\n\r\n    1) A small programming language unto itself\r\n    2) A way to solve Algebra formulas for the unknown value\r\n    3) The way Python handles and recovers from errors that would otherwise cause a traceback\r\n    4) A way to calculate mathematical values paying attention to operator precedence\r\n\r\n_Answer is 1) A small programming language unto itself_\r\n\r\n** 2- Which of the following is the way we match the \"start of a line\" in a regular expression?**\r\n\r\n    1) ^\r\n    2) str.startswith()\r\n    3) \\linestart\r\n    4) String.startsWith()\r\n    5) variable[0:1]\r\n\r\n_Answer is 1) ^_\r\n\r\n** 3- What would the following mean in a regular expression? [a-z0-9]**\r\n\r\n    1) Match any number of lowercase letters followed by any number of digits\r\n    2) Match a lowercase letter or a digit\r\n    3) Match an entire line as long as it is lowercase letters or digits\r\n    4) Match any text that is surrounded by square braces\r\n    5) Match anything but a lowercase letter or digit\r\n\r\n_Answer is 2) Match a lowercase letter or a digit_\r\n\r\n** 4- What is the type of the return value of the re.findall() method?\r\n\r\n    1) A list of strings\r\n    2) An integer\r\n    3) A boolean\r\n    4) A single character\r\n    5) A string\r\n\r\n_Answer is 1) A list of strings_\r\n\r\n** 5- What is the \"wild card\" character in a regular expression (i.e., the character that matches any character)?**\r\n\r\n    1) .\r\n    2) *\r\n    3) $\r\n    4) ^\r\n    5) +\r\n    6) ?\r\n\r\n_Answer is 1) ._\r\n\r\n** 6- What is the difference between the \"+\" and \"*\" character in regular expressions?**\r\n\r\n    1) The \"+\" matches at least one character and the \"*\" matches zero or more characters\r\n    2) The \"+\" matches upper case characters and the \"*\" matches lowercase characters\r\n    3) The \"+\" matches the beginning of a line and the \"*\" matches the end of a line\r\n    4) The \"+\" matches the actual plus character and the \"*\" matches any character\r\n    5) The \"+\" indicates \"start of extraction\" and the \"*\" indicates the \"end of extraction\"\r\n\r\n_Answer is 1) The \"+\" matches at least one character and the \"*\" matches zero or more characters_\r\n\r\n** 7- What does the \"[0-9]+\" match in a regular expression?**\r\n\r\n    1) Several digits followed by a plus sign\r\n    2) Any number of digits at the beginning of a line\r\n    3) Any mathematical expression\r\n    4) Zero or more digits\r\n    5) One or more digits\r\n\r\n_Answer is 5) One or more digits_\r\n\r\n** 8- What does the following Python sequence print out?**\r\n```Python\r\nx = 'From: Using the : character'\r\ny = re.findall('^F.+:', x)\r\nprint(y)\r\n```\r\n    1) :\r\n    2) ^F.+:\r\n    4) ['From:']\r\n    5) From:\r\n    6) ['From: Using the :']\r\n\r\n_Answer is 6) ['From: Using the :']_\r\n\r\n** 9- What character do you add to the \"+\" or \"*\" to indicate that the match is to be done in a non-greedy manner?**\r\n\r\n    1) \\g\r\n    2) **\r\n    3) ++\r\n    4) $\r\n    5) ?\r\n    6) ^\r\n\r\n_Answer is 5) ?_\r\n\r\n** 10- Given the following line of text:**\r\n```Python\r\nFrom stephen.marquard@uct.ac.za Sat Jan  5 09:14:16 2008\r\n```\r\n**What would the regular expression '\\S+?@\\S+' match?**\r\n\r\n    1) d@u\r\n    2) \\@\\\r\n    3) From\r\n    4) marquard@uct\r\n    5) stephen.marquard@uct.ac.za\r\n\r\n_Answer is 5) stephen.marquard@uct.ac.za_\r\n"
  },
  {
    "path": "Course-3/Quizzes/quiz_chapter12.md",
    "content": "** 1. What do we call it when a browser uses the HTTP protocol to load a file or page from a server and display it in the browser?**\r\n\r\n\r\n    1) Internet Protocol (IP)\r\n    2) IMAP\r\n    3) SMTP\r\n    4) DECNET\r\n    5) The Request/Response Cycle\r\n\r\n_Answer is 5) The Request/Response Cycle_\r\n\r\n** 2. Which of the following is most similar to a TCP port number?**\r\n\r\n    1) A telephone number\r\n    2) A street number in an address\r\n    3) The distance between two locations\r\n    4) The GPS coordinates of a building\r\n    5) A telephone extension\r\n\r\n_Answer is 5) A telephone extension_\r\n\r\n** 3. What must you do in Python before opening a socket?**\r\n\r\n    1) import tcp\r\n    2) _socket = true\r\n    3) import socket\r\n    4) import tcp-socket\r\n    5) open socket\r\n\r\n_Answer is 3) import socket_\r\n\r\n**4. In a client-server application on the web using sockets, which must come up first?**\r\n\r\n    1) server\r\n    2) client\r\n    3) it does not matter\r\n\r\n_Answer is 1) server_\r\n\r\n** 5. Which of the following is most like an open socket in an application? **\r\n\r\n    1) An \"in-progress\" phone conversation\r\n    2) Fiber optic cables\r\n    3) The wheels on an automobile\r\n    4) The chain on a bicycle\r\n    5) The ringer on a telephone\r\n\r\n_Answer is 1) An \"in-progress\" phone conversation_\r\n\r\n** 6. What does the \"H\" of HTTP stand for?**\r\n\r\n    1) Hyperspeed\r\n    2) Simple\r\n    3) Manual\r\n    4) HyperText\r\n    5) wHolsitic\r\n\r\n_Answer is 4) HyperText_\r\n\r\n** 7. What is an important aspect of an Application Layer protocol like HTTP?**\r\n\r\n    1) How long do we wait before packets are retransmitted?\r\n    2) Which application talks first? The client or server?\r\n    3) What is the IP address for a domain like www.dr-chuck.com?\r\n    4) How much memory does the server need to serve requests?\r\n\r\n_Answer is 2) Which application talks first? The client or server?_\r\n\r\n** 8. What are the three parts of this URL (Uniform Resource Locator)?**\r\n``` http://www.dr-chuck.com/page1.htm ```\r\n\r\n    1) Page, offset, and count\r\n    2) Protocol, document, and offset\r\n    3) Host, offset, and page\r\n    4) Protocol, host, and document\r\n    5) Document, page, and protocol\r\n\r\n_Answer is 4) Protocol, host, and document_\r\n\r\n** 9. When you click on an anchor tag in a web page like below, what HTTP request is sent to the server?**\r\n```Python\r\n<p>Please click <a href=\"page1.htm\">here</a>.</p>\r\n```\r\n\r\n    1) GET\r\n    2) POST\r\n    3) PUT\r\n    4) DELETE\r\n    5) INFO\r\n\r\n_Answer is 1) GET_\r\n\r\n** 10. Which organization publishes Internet Protocol Standards?**\r\n\r\n    1) IETF\r\n    2) IMS\r\n    3) LDAP\r\n    4) SCORM\r\n    5) SIFA\r\n\r\n_Amswer is 1) IETF_\r\n"
  },
  {
    "path": "Course-3/Quizzes/quiz_chapter13.md",
    "content": "** 1. Which of the following Python data structures is most similar to the value returned in this line of Python:**\r\n```Python\r\nx = urllib.request.urlopen('http://data.pr4e.org/romeo.txt')\r\n```\r\n    1) file handle\r\n    2) list\r\n    3) regular expression\r\n    4) dictionary\r\n    5) socket\r\n\r\n_Answer is 1) file handle_\r\n\r\n** 2. In this Python code, which line actually reads the data?**\r\n```Python\r\nimport socket\r\n\r\nmysock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)\r\nmysock.connect(('data.pr4e.org', 80))\r\ncmd = 'GET http://data.pr4e.org/romeo.txt HTTP/1.0\\n\\n'.encode()\r\nmysock.send(cmd)\r\n\r\nwhile True:\r\n    data = mysock.recv(512)\r\n    if (len(data) < 1):\r\n        break\r\n    print(data.decode())\r\nmysock.close()\r\n```\r\n\r\n    1) mysock.recv()\r\n    2) socket.socket()\r\n    3) mysock.close()\r\n    4) mysock.connect()\r\n    5) mysock.send()\r\n\r\n_Answer is 1) mysock.recv()_\r\n\r\n** 3. Which of the following regular expressions would extract the URL from this line of HTML:**\r\n```Python\r\n<p>Please click <a href=\"http://www.dr-chuck.com\">here</a></p>\r\n```\r\n    1) href=\"(.+)\"\r\n    2) href=\".+\"\r\n    3) http://.*\r\n    4) <.*>\r\n\r\n_Answer is1) href=\"(.+)\"_\r\n\r\n** 4. In this Python code, which line is most like the open() call to read a file: **\r\n```Python\r\nimport socket\r\n\r\nmysock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)\r\nmysock.connect(('data.pr4e.org', 80))\r\ncmd = 'GET http://data.pr4e.org/romeo.txt HTTP/1.0\\n\\n'.encode()\r\nmysock.send(cmd)\r\n\r\nwhile True:\r\n    data = mysock.recv(512)\r\n    if (len(data) < 1):\r\n        break\r\n    print(data.decode())\r\nmysock.close()\r\n```\r\n     1) mysock.connect()\r\n     2) import socket\r\n     3) mysock.recv()\r\n     4) mysock.send()\r\n     5) socket.socket()\r\n\r\n_Answer is 1) mysock.connect()_\r\n\r\n\r\n** 5. Which HTTP header tells the browser the kind of document that is being returned?**\r\n\r\n    1) HTML-Document:\r\n    2) Content-Type:\r\n    3) Document-Type:\r\n    4) ETag:\r\n    5) Metadata:\r\n\r\n_Answer is 2) Content-Type:_\r\n\r\n** 6. What should you check before scraping a web site?**\r\n\r\n    1) That the web site returns HTML for all pages\r\n    2) That the web site allows scraping\r\n    3) That the web site only has links within the same site\r\n    4) That the web site supports the HTTP GET command\r\n\r\n_Answer is 2) That the web site allows scraping_\r\n\r\n** 7. What is the purpose of the BeautifulSoup Python library?**\r\n\r\n    1) It builds word clouds from web pages\r\n    2) It allows a web site to choose an attractive skin\r\n    3) It repairs and parses HTML to make it easier for a program to understand\r\n    4) It optimizes files that are retrieved many times\r\n    5) It animates web operations to make them more attractive\r\n\r\n_Answer is 3) It repairs and parses HTML to make it easier for a program to understand_\r\n\r\n** 8. What ends up in the \"x\" variable in the following code:**\r\n```Python\r\nhtml = urllib.request.urlopen(url).read()\r\nsoup = BeautifulSoup(html, 'html.parser')\r\nx = soup('a')\r\n```\r\n    1) A list of all the anchor tags (<a..) in the HTML from the URL\r\n    2) True if there were any anchor tags in the HTML from the URL\r\n    3) All of the externally linked CSS files in the HTML from the URL\r\n    4) All of the paragraphs of the HTML from the URL\r\n\r\n_Answer is 1) A list of all the anchor tags (<a..) in the HTML from the URL_\r\n\r\n** 9. What is the most common Unicode encoding when moving data between systems?**\r\n\r\n     1) UTF-128\r\n     2) UTF-8\r\n     3) UTF-32\r\n     4) UTF-64\r\n     5) UTF-16\r\n\r\n_Answer is 2) UTF-8_\r\n\r\n** 10. What is the ASCII character that is associated with the decimal value 42?**\r\n\r\n    1) !\r\n    2) *\r\n    3) ^\r\n    4) /\r\n    5) +\r\n\r\n_Answer is 2) *_\r\n\r\n** 11. What word does the following sequence of numbers represent in ASCII:\r\n108, 105, 110, 101 **\r\n\r\n    1) func\r\n    2) tree\r\n    3) lost\r\n    4) line\r\n    5) ping\r\n\r\n_Answer is 4) line_\r\n\r\n** 12. How are strings stored internally in Python 3?**\r\n\r\n    1) EBCDIC\r\n    2) UTF-8\r\n    3) Unicode\r\n    4) ASCII\r\n    5) Byte Code\r\n\r\n_Answer is 3) Unicode_\r\n\r\n** 13. When reading data across the network (i.e. from a URL) in Python 3, what method must be used to convert it to the internal format used by strings? **\r\n\r\n    1) trim()\r\n    2) find()\r\n    3) encode()\r\n    4) decode()\r\n    5) upper()\r\n\r\n_Answer is 4) decode()_\r\n"
  },
  {
    "path": "Course-3/Quizzes/quiz_chapter14.md",
    "content": "** 1. What is the name of the Python 2.x library to parse XML data?**\r\n\r\n    1) xml2\r\n    2) xml.etree.ElementTree\r\n    3) xml.json\r\n    4) xml-misc\r\n\r\n_Answer is 2) xml.etree.ElementTree_\r\n\r\n** 2. Which of the following are not commonly used serialization formats?**\r\n\r\n    1) TCP\r\n    2) XML\r\n    3) JSON\r\n    4) Dictionaries\r\n    5) HTTP\r\n\r\n_Answer is 1) TCP, 4) Dictionaries, 5) HTTP_\r\n\r\n** 3. In this XML, which are the \"complex elements\"?**\r\n```XML\r\n<people>\r\n    <person>\r\n       <name>Chuck</name>\r\n       <phone>303 4456</phone>\r\n    </person>\r\n    <person>\r\n       <name>Noah</name>\r\n       <phone>622 7421</phone>\r\n    </person>\r\n</people>\r\n```\r\n    1) Noah\r\n    2) people\r\n    3) person\r\n    4) name\r\n    5) phone\r\n\r\n_Answer is 2) people, 3) person_\r\n\r\n** 4. In the following XML, which are attributes?**\r\n```XML\r\n<person>\r\n  <name>Chuck</name>\r\n  <phone type=\"intl\">\r\n     +1 734 303 4456\r\n  </phone>\r\n  <email hide=\"yes\" />\r\n</person>\r\n```\r\n    1) hide\r\n    2) name\r\n    3) person\r\n    4) email\r\n    5) type\r\n\r\n_Answer is 1) hide, 5) type_\r\n\r\n** 5. In the following XML, which node is the parent node of node e**\r\n```XML\r\n<a>\r\n  <b>X</b>\r\n  <c>\r\n    <d>Y</d>\r\n    <e>Z</e>\r\n  </c>\r\n</a>\r\n```\r\n    1) b\r\n    2) a\r\n    3) e\r\n    4) c\r\n\r\n_Answer is 4) c_\r\n\r\n** 6. Looking at the following XML, what text value would we find at path \"/a/c/e\"**\r\n```XML\r\n<a>\r\n  <b>X</b>\r\n  <c>\r\n    <d>Y</d>\r\n    <e>Z</e>\r\n  </c>\r\n</a>\r\n```\r\n     1) b\r\n     2) Z\r\n     3) a\r\n     4) e\r\n     5) Y\r\n\r\n_Answer is 2) Z_\r\n\r\n** 7. What is the purpose of XML Schema?**\r\n\r\n    1) To compute SHA1 checksums on data to make sure it is not modified in transit\r\n    2) To establish a contract as to what is valid XML\r\n    3) To transfer XML data reliably during network outages\r\n    4) A Python program to tranform XML files\r\n\r\n_Answer is 2) To establish a contract as to what is valid XML_\r\n\r\n** 8. If you were building an XML Schema and wanted to limit the values allowed in an xs:string field to only those in a particular list, what XML tag would you use in your XML Schema definition? **\r\n\r\n    1) xs:sequence\r\n    2) xs:enumeration\r\n    3) xs:element\r\n    4) xs:complexType\r\n    5) maxOccurs\r\n\r\n_Answer is 2) xs:enumeration_\r\n\r\n** 9. What does the \"Z\" mean in this representation of a time:**\r\n``` 2002-05-30T09:30:10Z ```\r\n\r\n    1) This time is in the UTC timezone\r\n    2) The hours value is in the range 0-12\r\n    3) The local timezone for this time is New Zealand\r\n    4) This time is Daylight Savings Time\r\n\r\n_Answer is 1) This time is in the UTC timezone_\r\n\r\n** 10. Which of the following dates is in ISO8601 format?**\r\n\r\n    1) May 30, 2002\r\n    2) 05/30/2002\r\n    3) 2002-May-30\r\n    4) 2002-05-30T09:30:10Z\r\n\r\n_Answer is 4) 2002-05-30T09:30:10Z_\r\n"
  },
  {
    "path": "Course-3/Quizzes/quiz_chapter15.md",
    "content": "** 1. Who is credited with getting the JSON movement started?**\r\n\r\n     1) Bjarne Stroustrup\r\n     2) Mitchell Baker\r\n     3) Pooja Sankar\r\n     4) Douglas Crockford\r\n_Answer is 4) Douglas Crockford_\r\n\r\n** 2. What Python library do you have to import to parse and handle JSON? **\r\n\r\n    1) BeautifulSoup\r\n    2) import re\r\n    3) ElementTree\r\n    4) import json\r\n_Answer is 4) import json_\r\n\r\n** 3. What is the method used to parse a string containing JSON data so that you can work with the data in Python?**\r\n\r\n    1) json.read()\r\n    2) json.loads()\r\n    3) json.parse()\r\n    4) json.connect()\r\n_Answer is 2) json.loads()_\r\n\r\n** 4. What kind of variable will you get in Python when the following JSON is parsed:**\r\n```[ \"Glenn\", \"Sally\", \"Jen\" ]```\r\n\r\n    1) A list with three items\r\n    2) A dictionary with three key / value pairs\r\n    3) A dictionary with one key / value pair\r\n    4) Three tuples\r\n    5) One Tuple\r\n_Answer is 1) A list with three items_\r\n\r\n** 5. Which of the following is not true about the service-oriented approach?**\r\n\r\n    1) An application makes use of the services provided by other applications\r\n    2) Web services and APIs are used to transfer data between applications\r\n    3) Standards are developed where many pairs of applications must work together\r\n    4) An application runs together all in one place\r\n_Answer is 4) An application runs together all in one place_\r\n\r\n** 6. Which of these two web service approaches is preferred in most modern service-oriented applications?**\r\n\r\n    1) SOAP - Simple Object Access Protocol\r\n    2) REST - Representational state transfer\r\n_Answer is 2) REST - Representational state transfer_\r\n\r\n** 7. What library call do you make to append properly encoded parameters to the end of a URL like the following:**\r\n```http://maps.googleapis.com/maps/api/geocode/json?sensor=false&address=Ann+Arbor%2C+MI```\r\n\r\n    1) re.match()\r\n    2) urllib.parse.urlencode()\r\n    3) re.encode()\r\n    4) urllib.urlcat()\r\n_Answer is 2) urllib.parse.urlencode()_\r\n\r\n** 8. What happens when you exceed the Google geocoding API rate limit?**\r\n\r\n    1) You canot use the API until you respond to an email that contains a survey question\r\n    2) Your application starts to perform very slowly\r\n    3) You cannot use the API for 24 hours\r\n    4) The API starts to perform very slowly\r\n_Answer is 3) You cannot use the API for 24 hours_\r\n\r\n** 9. What protocol does Twitter use to protect its API?**\r\n\r\n    1) PKI-HMAC\r\n    2) Java Web Tokens\r\n    3) SHA1-MD5\r\n    4) SOAP\r\n    5) OAuth\r\n    6) WS*Security\r\n_Answer is 5) OAuth_\r\n\r\n** 10. What header does Twitter use to tell you how many more API requests you can make before you will be rate limited?**\r\n\r\n    1) content-type\r\n    2) x-max-requests\r\n    3) x-request-count-down\r\n    4) x-rate-limit-remaining\r\n_Answer is 4) x-rate-limit-remaining_\r\n"
  },
  {
    "path": "Course-4/Week-2/Quizzes/quiz_chapter16.md",
    "content": "** 1. What is the most common Unicode encoding when moving data between systems?**\r\n\r\n    1) UTF-8\r\n    2) UTF-32\r\n    3) UTF-16\r\n    4) UTF-128\r\n    5) UTF-64\r\n\r\n_Answer is 1) UTF-8_\r\n\r\n** 2. What is the decimal (Base-10) numeric value for the upper case letter \"G\" in the ASCII character set?**\r\n\r\n    1) 256\r\n    2) 17\r\n    3) 142\r\n    4) 7\r\n    5) 71\r\n\r\n_Answer is 5) 71_\r\n\r\n** 3. What word does the following sequence of numbers represent in ASCII:**\r\n\r\n``` 108, 105, 115, 116```\r\n\r\n    1) first\r\n    2) dict\r\n    3) list\r\n    4) mist\r\n    5) webs\r\n\r\n_Answer is 3) list_\r\n\r\n** 4. How are strings stored internally in Python 3?**\r\n\r\n    1) UTF-16\r\n    2) EBCDIC\r\n    3) inverted\r\n    4) Unicode\r\n    5) bubble memory\r\n\r\n_Answer is 4) Unicode_\r\n\r\n** 5. When reading data across the network (i.e. from a URL) in Python 3, what method must be used to convert it to the internal format used by strings?**\r\n\r\n    1) encode()\r\n    2) rstrip()\r\n    3) split()\r\n    4) decode()\r\n    5) internal()\r\n\r\n_Answer is 4) decode()_\r\n"
  },
  {
    "path": "Course-4/Week-2/Quizzes/week1- quizz1.md",
    "content": "\r\n** 1. Which came first, the instance or the class?**\r\n\r\n     1) class\r\n     2) function\r\n     3) instance\r\n     4) method\r\n\r\n_Answer is 1) class_\r\n\r\n** 2. In Object Oriented Programming, what is another name for the \"attributes\" of an object?**\r\n\r\n    1) fields\r\n    2) forms\r\n    3) methods\r\n    4) portions\r\n    5) messages\r\n\r\n_Answer is 1) fields_\r\n\r\n** 3. At the moment of creation of a new object, Python looks at the _________ definition to define the structure and capabilities of the newly created object.**\r\n\r\n    1) cache\r\n    2) method\r\n    3) class\r\n    4) instance\r\n    5) constructor\r\n\r\n_Answer is 3) class_\r\n\r\n** 4. Which of the following is NOT a good synonym for \"class\" in Python?**\r\n\r\n    1) template\r\n    2) blueprint\r\n    3) pattern\r\n    4) direction\r\n\r\n_Answer is 4) direction_\r\n\r\n** 5. What does this Python statement do if PartyAnimal is a class?**\r\n```  zap = PartyAnimal() ```\r\n\r\n     1) Subtract the value of the zap variable from the value in the PartyAnimal variable and put the difference in zap\r\n     2) Use the PartyAnimal template to make a new object and assign it to zap\r\n     3) Copy the value from the PartyAnimal variable to the variable zap\r\n     4) Clear out all the data in the PartyAnimal variable and put the old values for the data in zap\r\n\r\n_Answer is 2) Use the PartyAnimal template to make a new object and assign it to zap_\r\n\r\n** 6. What is the syntax to look up the fullname attribute in an object stored in the variable colleen?**\r\n\r\n    1) colleen->fullname\r\n    2) colleen::fullname\r\n    3) colleen.fullname\r\n    4) colleen['fullname']\r\n\r\n_Answer is 3) colleen.fullname_\r\n\r\n** 7. Which of these statements is used to indicate that class A will inherit all the features of class B?**\r\n\r\n    1) class A extends B :\r\n    2) A=B++;\r\n    3) class A instanceOf B :\r\n    4) class A inherits B :\r\n    5) class A(B) :\r\n\r\n_Answer is 5) class A(B) :_\r\n\r\n** 8. What keyword is used to indicate the start of a method in a Python class?**\r\n\r\n    1) continue\r\n    2) def\r\n    3) break\r\n    4) function\r\n\r\n_Answer is 2) def_\r\n\r\n** 9. What is \"self\" typically used for in a Python method within a class?**\r\n\r\n    1) The number of parameters to the method\r\n    2) To terminate a loop\r\n    3) To set the residual value in an expression where the method is used\r\n    4) To refer to the instance in which the method is being called\r\n\r\n_Answer is 4) To refer to the instance in which the method is being called_\r\n\r\n** 10. What does the Python dir() function show when we pass an object into it as a parameter?**\r\n\r\n    1) It shows the methods and attributes of the object\r\n    2) It shows the number of parameters to the constructor\r\n    3) It shows the type of the object\r\n    4) It shows the parent class\r\n\r\n_Answer is 1) It shows the methods and attributes of the object_\r\n\r\n** 11. Which of the following is rarely used in Object Oriented Programming?**\r\n\r\n    1) Constructor\r\n    2) Destructor\r\n    3) Method\r\n    4) Attribute\r\n\r\n_Answer is 2) Destructor_\r\n"
  },
  {
    "path": "Course-4/Week-2/Quizzes/week2- quizz1.md",
    "content": "** 1. Structured Query Language (SQL) is used to (check all that apply)**\r\n\r\n     1) Insert data\r\n     2) Check Python code for errors\r\n     3) Create a table\r\n     4) Delete data\r\n\r\n_Answer is 1, 3, and 4_\r\n\r\n** 2. Which of these is the right syntax to make a new table?**\r\n\r\n     1) MAKE DATASET people;\r\n     2) CREATE people;\r\n     3) CREATE TABLE people;\r\n     4) MAKE people;\r\n\r\n_Answer is 3) CREATE TABLE people;_\r\n\r\n** 3. Which SQL command is used to insert a new row into a table?**\r\n\r\n     1) INSERT AFTER\r\n     2) INSERT INTO\r\n     3) ADD ROW\r\n     4) INSERT ROW\r\n\r\n_Answer is 2) INSERT INTO_\r\n\r\n** Which command is used to retrieve all records from a table?**\r\n\r\n    1) SELECT * FROM Users\r\n    2) RETRIEVE all FROM User\r\n    3) SELECT all FROM Users\r\n    4) RETRIEVE * FROM Users\r\n\r\n_Answer is 1) SELECT * FROM Users_\r\n\r\n** 5. Which keyword will cause the results of the query to be displayed in sorted order?**\r\n\r\n     1) GROUP BY\r\n     2) ORDER BY\r\n     3) WHERE\r\n     4) None of these\r\n\r\n_Answer is 2) ORDER BY_\r\n\r\n** 6. In database terminology, another word for table is**\r\n\r\n    1) field\r\n    2) attribute\r\n    3) relation\r\n    4) row\r\n\r\n_Answer is 3) relation_\r\n\r\n** 7. In a typical online production environment, who has direct access to the production database?**\r\n\r\n    1) Database Administrator\r\n    2) UI/UX Designer\r\n    3) Project Manager\r\n    4) Developer\r\n\r\n_Answer is 1) Database Administrator_\r\n\r\n** 8. Which of the following is the database software used in this class?**\r\n\r\n     1) Postgres\r\n     2) Oracle\r\n     3) MySQL\r\n     4) SQL Server\r\n     5) SQLite\r\n\r\n_Answer is 5) SQLite_\r\n\r\n** 9. What happens if a DELETE command is run on a table without a WHERE clause?**\r\n\r\n    1) It is a syntax error\r\n    2) All the rows without a primary key will be deleted\r\n    3) All the rows in the table are deleted\r\n    4) The first row of the table will be deleted\r\n\r\n_Answer is 3) All the rows in the table are deleted_\r\n\r\n** 10. Which of the following commands would update a column named \"name\" in a table named \"Users\"?**\r\n\r\n    1) Users->name = 'new name' WHERE ...\r\n    2) Users.name='new name' WHERE ...\r\n    3) UPDATE Users (name) VALUES ('new name') WHERE ...\r\n    4) UPDATE Users SET name='new name' WHERE ...\r\n\r\n_Answer is 4) UPDATE Users SET name='new name' WHERE ..._\r\n\r\n** 11. What does this SQL command do?\r\n\r\n```SELECT COUNT(*) FROM Users```\r\n\r\nHint: This is not from the lecture\r\n\r\n    1) It is a syntax errror\r\n    2) It only retrieves the rows of Users if there are at least two rows\r\n    3) It counts the rows in the table Users\r\n    4) It adds a COUNT column to the Users table\r\n\r\n_Answer is 3) It counts the rows in the table Users_\r\n"
  },
  {
    "path": "Course-4/Week-2/assignments/assignment.py",
    "content": "import sqlite3\n\nconn = sqlite3.connect('emaildb.sqlite')\ncur = conn.cursor()\n\ncur.execute('DROP TABLE IF EXISTS Counts')\n\ncur.execute('''\nCREATE TABLE Counts (org TEXT, count INTEGER)''')\n\nfname = input('Enter file name: ')\nif (len(fname) < 1): fname = 'mbox-short.txt'\nfh = open(fname)\nfor line in fh:\n    if not line.startswith('From: '): continue\n    pieces = line.split()\n    email = pieces[1]\n    (emailname, organization) = email.split('@')\n    cur.execute('SELECT count FROM Counts WHERE org = ? ', (organization,))\n    row = cur.fetchone()\n    if row is None:\n        cur.execute('''INSERT INTO Counts (org, count)\n                VALUES (?, 1)''', (organization,))\n    else:\n        cur.execute('UPDATE Counts SET count = count + 1 WHERE org = ?',\n                    (organization,))\n    conn.commit()\n\n# https://www.sqlite.org/lang_select.html\nsqlstr = 'SELECT org, count FROM Counts ORDER BY count DESC LIMIT 10'\n\nfor row in cur.execute(sqlstr):\n    print(str(row[0]), row[1])\n\ncur.close()\n"
  },
  {
    "path": "Course-4/Week-2/assignments/mbox.txt",
    "content": "From stephen.marquard@uct.ac.za Sat Jan  5 09:14:16 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 05 Jan 2008 09:14:16 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 05 Jan 2008 09:14:16 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby flawless.mail.umich.edu () with ESMTP id m05EEFR1013674;\n\tSat, 5 Jan 2008 09:14:15 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 477F90B0.2DB2F.12494 ; \n\t 5 Jan 2008 09:14:10 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5F919BC2F2;\n\tSat,  5 Jan 2008 14:10:05 +0000 (GMT)\nMessage-ID: <200801051412.m05ECIaH010327@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 899\n          for <source@collab.sakaiproject.org>;\n          Sat, 5 Jan 2008 14:09:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A215243002\n\tfor <source@collab.sakaiproject.org>; Sat,  5 Jan 2008 14:13:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m05ECJVp010329\n\tfor <source@collab.sakaiproject.org>; Sat, 5 Jan 2008 09:12:19 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m05ECIaH010327\n\tfor source@collab.sakaiproject.org; Sat, 5 Jan 2008 09:12:18 -0500\nDate: Sat, 5 Jan 2008 09:12:18 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: stephen.marquard@uct.ac.za\nSubject: [sakai] svn commit: r39772 - content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Jan  5 09:14:16 2008\nX-DSPAM-Confidence: 0.8475\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39772\n\nAuthor: stephen.marquard@uct.ac.za\nDate: 2008-01-05 09:12:07 -0500 (Sat, 05 Jan 2008)\nNew Revision: 39772\n\nModified:\ncontent/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlOracle.java\ncontent/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java\nLog:\nSAK-12501 merge to 2-5-x: r39622, r39624:5, r39632:3 (resolve conflict from differing linebreaks for r39622)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom louis@media.berkeley.edu Fri Jan  4 18:10:48 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 04 Jan 2008 18:10:48 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 04 Jan 2008 18:10:48 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby sleepers.mail.umich.edu () with ESMTP id m04NAbGa029441;\n\tFri, 4 Jan 2008 18:10:37 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 477EBCE3.161BB.4320 ; \n\t 4 Jan 2008 18:10:31 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 07969BB706;\n\tFri,  4 Jan 2008 23:10:33 +0000 (GMT)\nMessage-ID: <200801042308.m04N8v6O008125@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 710\n          for <source@collab.sakaiproject.org>;\n          Fri, 4 Jan 2008 23:10:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4BA2F42F57\n\tfor <source@collab.sakaiproject.org>; Fri,  4 Jan 2008 23:10:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04N8vHG008127\n\tfor <source@collab.sakaiproject.org>; Fri, 4 Jan 2008 18:08:57 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04N8v6O008125\n\tfor source@collab.sakaiproject.org; Fri, 4 Jan 2008 18:08:57 -0500\nDate: Fri, 4 Jan 2008 18:08:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: louis@media.berkeley.edu\nSubject: [sakai] svn commit: r39771 - in bspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src: bundle java/org/sakaiproject/site/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Jan  4 18:10:48 2008\nX-DSPAM-Confidence: 0.6178\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39771\n\nAuthor: louis@media.berkeley.edu\nDate: 2008-01-04 18:08:50 -0500 (Fri, 04 Jan 2008)\nNew Revision: 39771\n\nModified:\nbspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties\nbspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nLog:\nBSP-1415 New (Guest) user Notification\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Jan  4 16:10:39 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 04 Jan 2008 16:10:39 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 04 Jan 2008 16:10:39 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby panther.mail.umich.edu () with ESMTP id m04LAcZw014275;\n\tFri, 4 Jan 2008 16:10:38 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 477EA0C6.A0214.25480 ; \n\t 4 Jan 2008 16:10:33 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C48CDBB490;\n\tFri,  4 Jan 2008 21:10:31 +0000 (GMT)\nMessage-ID: <200801042109.m04L92hb007923@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 906\n          for <source@collab.sakaiproject.org>;\n          Fri, 4 Jan 2008 21:10:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7D13042F71\n\tfor <source@collab.sakaiproject.org>; Fri,  4 Jan 2008 21:10:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04L927E007925\n\tfor <source@collab.sakaiproject.org>; Fri, 4 Jan 2008 16:09:02 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04L92hb007923\n\tfor source@collab.sakaiproject.org; Fri, 4 Jan 2008 16:09:02 -0500\nDate: Fri, 4 Jan 2008 16:09:02 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39770 - site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/webapp/vm/sitesetup\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Jan  4 16:10:39 2008\nX-DSPAM-Confidence: 0.6961\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39770\n\nAuthor: zqian@umich.edu\nDate: 2008-01-04 16:09:01 -0500 (Fri, 04 Jan 2008)\nNew Revision: 39770\n\nModified:\nsite-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-list.vm\nLog:\nmerge fix to SAK-9996 into 2-5-x branch: svn merge -r 39687:39688 https://source.sakaiproject.org/svn/site-manage/trunk/\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Fri Jan  4 15:46:24 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 04 Jan 2008 15:46:24 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 04 Jan 2008 15:46:24 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby panther.mail.umich.edu () with ESMTP id m04KkNbx032077;\n\tFri, 4 Jan 2008 15:46:23 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 477E9B13.2F3BC.22965 ; \n\t 4 Jan 2008 15:46:13 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4AE03BB552;\n\tFri,  4 Jan 2008 20:46:13 +0000 (GMT)\nMessage-ID: <200801042044.m04Kiem3007881@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 38\n          for <source@collab.sakaiproject.org>;\n          Fri, 4 Jan 2008 20:45:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A55D242F57\n\tfor <source@collab.sakaiproject.org>; Fri,  4 Jan 2008 20:45:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04KieqE007883\n\tfor <source@collab.sakaiproject.org>; Fri, 4 Jan 2008 15:44:40 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04Kiem3007881\n\tfor source@collab.sakaiproject.org; Fri, 4 Jan 2008 15:44:40 -0500\nDate: Fri, 4 Jan 2008 15:44:40 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Jan  4 15:46:24 2008\nX-DSPAM-Confidence: 0.7565\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39769\n\nAuthor: rjlowe@iupui.edu\nDate: 2008-01-04 15:44:39 -0500 (Fri, 04 Jan 2008)\nNew Revision: 39769\n\nModified:\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans/AssignmentGradeRecordBean.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/producers/GradeGradebookItemProducer.java\ngradebook/trunk/app/ui/src/webapp/WEB-INF/applicationContext.xml\ngradebook/trunk/app/ui/src/webapp/WEB-INF/bundle/messages.properties\ngradebook/trunk/app/ui/src/webapp/WEB-INF/requestContext.xml\nLog:\nSAK-12180 - Fixed errors with grading helper\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Jan  4 15:03:18 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 04 Jan 2008 15:03:18 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 04 Jan 2008 15:03:18 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby fan.mail.umich.edu () with ESMTP id m04K3HGF006563;\n\tFri, 4 Jan 2008 15:03:17 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 477E9100.8F7F4.1590 ; \n\t 4 Jan 2008 15:03:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 57770BB477;\n\tFri,  4 Jan 2008 20:03:09 +0000 (GMT)\nMessage-ID: <200801042001.m04K1cO0007738@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 622\n          for <source@collab.sakaiproject.org>;\n          Fri, 4 Jan 2008 20:02:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AB4D042F4D\n\tfor <source@collab.sakaiproject.org>; Fri,  4 Jan 2008 20:02:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04K1cXv007740\n\tfor <source@collab.sakaiproject.org>; Fri, 4 Jan 2008 15:01:38 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04K1cO0007738\n\tfor source@collab.sakaiproject.org; Fri, 4 Jan 2008 15:01:38 -0500\nDate: Fri, 4 Jan 2008 15:01:38 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39766 - site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Jan  4 15:03:18 2008\nX-DSPAM-Confidence: 0.7626\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39766\n\nAuthor: zqian@umich.edu\nDate: 2008-01-04 15:01:37 -0500 (Fri, 04 Jan 2008)\nNew Revision: 39766\n\nModified:\nsite-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nLog:\nmerge fix to SAK-10788 into site-manage 2.4.x branch:\n\nSakai Source Repository  \t#38024  \tWed Nov 07 14:54:46 MST 2007  \tzqian@umich.edu  \t 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\n\nWatch for enrollments object being null and concatenate provider ids when there are more than one.\nFiles Changed\nMODIFY /site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java \n\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Fri Jan  4 14:50:18 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 04 Jan 2008 14:50:18 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 04 Jan 2008 14:50:18 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby mission.mail.umich.edu () with ESMTP id m04JoHJi019755;\n\tFri, 4 Jan 2008 14:50:17 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 477E8DF2.67B91.5278 ; \n\t 4 Jan 2008 14:50:13 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2D1B9BB492;\n\tFri,  4 Jan 2008 19:47:10 +0000 (GMT)\nMessage-ID: <200801041948.m04JmdwO007705@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 960\n          for <source@collab.sakaiproject.org>;\n          Fri, 4 Jan 2008 19:46:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B3E6742F4A\n\tfor <source@collab.sakaiproject.org>; Fri,  4 Jan 2008 19:49:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04JmeV9007707\n\tfor <source@collab.sakaiproject.org>; Fri, 4 Jan 2008 14:48:40 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04JmdwO007705\n\tfor source@collab.sakaiproject.org; Fri, 4 Jan 2008 14:48:39 -0500\nDate: Fri, 4 Jan 2008 14:48:39 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Jan  4 14:50:18 2008\nX-DSPAM-Confidence: 0.7556\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39765\n\nAuthor: rjlowe@iupui.edu\nDate: 2008-01-04 14:48:37 -0500 (Fri, 04 Jan 2008)\nNew Revision: 39765\n\nAdded:\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans/AssignmentGradeRecordBean.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans/AssignmentGradeRecordCreator.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/entity/GradebookEntryGradeEntityProvider.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/params/GradeGradebookItemViewParams.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/producers/GradeGradebookItemProducer.java\ngradebook/trunk/app/ui/src/webapp/content/templates/grade-gradebook-item.html\nModified:\ngradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/GradebookManager.java\ngradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\ngradebook/trunk/app/ui/pom.xml\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans/GradebookItemBean.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/entity/GradebookEntryEntityProvider.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/producers/AddGradebookItemProducer.java\ngradebook/trunk/app/ui/src/webapp/WEB-INF/applicationContext.xml\ngradebook/trunk/app/ui/src/webapp/WEB-INF/bundle/messages.properties\ngradebook/trunk/app/ui/src/webapp/WEB-INF/requestContext.xml\nLog:\nSAK-12180 - New helper tool to grade an assignment\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Jan  4 11:37:30 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 04 Jan 2008 11:37:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 04 Jan 2008 11:37:30 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby fan.mail.umich.edu () with ESMTP id m04GbT9x022078;\n\tFri, 4 Jan 2008 11:37:29 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 477E60B2.82756.9904 ; \n\t 4 Jan 2008 11:37:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8D13DBB001;\n\tFri,  4 Jan 2008 16:37:07 +0000 (GMT)\nMessage-ID: <200801041635.m04GZQGZ007313@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 120\n          for <source@collab.sakaiproject.org>;\n          Fri, 4 Jan 2008 16:36:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D430B42E42\n\tfor <source@collab.sakaiproject.org>; Fri,  4 Jan 2008 16:36:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04GZQ7W007315\n\tfor <source@collab.sakaiproject.org>; Fri, 4 Jan 2008 11:35:26 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04GZQGZ007313\n\tfor source@collab.sakaiproject.org; Fri, 4 Jan 2008 11:35:26 -0500\nDate: Fri, 4 Jan 2008 11:35:26 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39764 - in msgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums: . ui\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Jan  4 11:37:30 2008\nX-DSPAM-Confidence: 0.7002\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39764\n\nAuthor: cwen@iupui.edu\nDate: 2008-01-04 11:35:25 -0500 (Fri, 04 Jan 2008)\nNew Revision: 39764\n\nModified:\nmsgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java\nmsgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums/ui/PrivateMessageDecoratedBean.java\nLog:\nunmerge Xingtang's checkin for SAK-12488.\n\nsvn merge -r39558:39557 https://source.sakaiproject.org/svn/msgcntr/trunk\nU    messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java\nU    messageforums-app/src/java/org/sakaiproject/tool/messageforums/ui/PrivateMessageDecoratedBean.java\n\nsvn log -r 39558\n------------------------------------------------------------------------\nr39558 | hu2@iupui.edu | 2007-12-20 15:25:38 -0500 (Thu, 20 Dec 2007) | 3 lines\n\nSAK-12488\nwhen send a message to yourself. click reply to all, cc row should be null.\nhttp://jira.sakaiproject.org/jira/browse/SAK-12488\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Jan  4 11:35:08 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 04 Jan 2008 11:35:08 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 04 Jan 2008 11:35:08 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby fan.mail.umich.edu () with ESMTP id m04GZ6lt020480;\n\tFri, 4 Jan 2008 11:35:06 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 477E6033.6469D.21870 ; \n\t 4 Jan 2008 11:35:02 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E40FABAE5B;\n\tFri,  4 Jan 2008 16:34:38 +0000 (GMT)\nMessage-ID: <200801041633.m04GX6eG007292@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 697\n          for <source@collab.sakaiproject.org>;\n          Fri, 4 Jan 2008 16:34:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1CD0C42E42\n\tfor <source@collab.sakaiproject.org>; Fri,  4 Jan 2008 16:34:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04GX6Y3007294\n\tfor <source@collab.sakaiproject.org>; Fri, 4 Jan 2008 11:33:06 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04GX6eG007292\n\tfor source@collab.sakaiproject.org; Fri, 4 Jan 2008 11:33:06 -0500\nDate: Fri, 4 Jan 2008 11:33:06 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Jan  4 11:35:08 2008\nX-DSPAM-Confidence: 0.7615\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39763\n\nAuthor: cwen@iupui.edu\nDate: 2008-01-04 11:33:05 -0500 (Fri, 04 Jan 2008)\nNew Revision: 39763\n\nModified:\nmsgcntr/trunk/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages.properties\nmsgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java\nLog:\nunmerge Xingtang's check in for SAK-12484.\n\nsvn merge -r39571:39570 https://source.sakaiproject.org/svn/msgcntr/trunk\nU    messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages.properties\nU    messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java\n\nsvn log -r 39571\n------------------------------------------------------------------------\nr39571 | hu2@iupui.edu | 2007-12-20 21:26:28 -0500 (Thu, 20 Dec 2007) | 3 lines\n\nSAK-12484\nreply all cc list should not include the current user name.\nhttp://jira.sakaiproject.org/jira/browse/SAK-12484\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gsilver@umich.edu Fri Jan  4 11:12:37 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 04 Jan 2008 11:12:37 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 04 Jan 2008 11:12:37 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby panther.mail.umich.edu () with ESMTP id m04GCaHB030887;\n\tFri, 4 Jan 2008 11:12:36 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 477E5AEB.E670B.28397 ; \n\t 4 Jan 2008 11:12:30 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 99715BAE7D;\n\tFri,  4 Jan 2008 16:12:27 +0000 (GMT)\nMessage-ID: <200801041611.m04GB1Lb007221@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 272\n          for <source@collab.sakaiproject.org>;\n          Fri, 4 Jan 2008 16:12:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0A6ED42DFC\n\tfor <source@collab.sakaiproject.org>; Fri,  4 Jan 2008 16:12:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04GB1Wt007223\n\tfor <source@collab.sakaiproject.org>; Fri, 4 Jan 2008 11:11:01 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04GB1Lb007221\n\tfor source@collab.sakaiproject.org; Fri, 4 Jan 2008 11:11:01 -0500\nDate: Fri, 4 Jan 2008 11:11:01 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gsilver@umich.edu\nSubject: [sakai] svn commit: r39762 - web/trunk/web-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Jan  4 11:12:37 2008\nX-DSPAM-Confidence: 0.7601\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39762\n\nAuthor: gsilver@umich.edu\nDate: 2008-01-04 11:11:00 -0500 (Fri, 04 Jan 2008)\nNew Revision: 39762\n\nModified:\nweb/trunk/web-tool/tool/src/bundle/iframe.properties\nLog:\nSAK-12596\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12596\n- left moot (unused) entries commented for now\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gsilver@umich.edu Fri Jan  4 11:11:52 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 04 Jan 2008 11:11:52 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 04 Jan 2008 11:11:52 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby godsend.mail.umich.edu () with ESMTP id m04GBqqv025330;\n\tFri, 4 Jan 2008 11:11:52 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 477E5AB3.5CC32.30840 ; \n\t 4 Jan 2008 11:11:34 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 62AA4BAE46;\n\tFri,  4 Jan 2008 16:11:31 +0000 (GMT)\nMessage-ID: <200801041610.m04GA5KP007209@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1006\n          for <source@collab.sakaiproject.org>;\n          Fri, 4 Jan 2008 16:11:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C596A3DFA2\n\tfor <source@collab.sakaiproject.org>; Fri,  4 Jan 2008 16:11:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04GA5LR007211\n\tfor <source@collab.sakaiproject.org>; Fri, 4 Jan 2008 11:10:05 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04GA5KP007209\n\tfor source@collab.sakaiproject.org; Fri, 4 Jan 2008 11:10:05 -0500\nDate: Fri, 4 Jan 2008 11:10:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gsilver@umich.edu\nSubject: [sakai] svn commit: r39761 - site/trunk/site-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Jan  4 11:11:52 2008\nX-DSPAM-Confidence: 0.7605\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39761\n\nAuthor: gsilver@umich.edu\nDate: 2008-01-04 11:10:04 -0500 (Fri, 04 Jan 2008)\nNew Revision: 39761\n\nModified:\nsite/trunk/site-tool/tool/src/bundle/admin.properties\nLog:\nSAK-12595\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12595\n- left moot (unused) entries commented for now\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Jan  4 11:11:03 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 04 Jan 2008 11:11:03 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 04 Jan 2008 11:11:03 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby sleepers.mail.umich.edu () with ESMTP id m04GB3Vg011502;\n\tFri, 4 Jan 2008 11:11:03 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 477E5A8D.B378F.24200 ; \n\t 4 Jan 2008 11:10:56 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C7251BAD44;\n\tFri,  4 Jan 2008 16:10:53 +0000 (GMT)\nMessage-ID: <200801041609.m04G9EuX007197@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 483\n          for <source@collab.sakaiproject.org>;\n          Fri, 4 Jan 2008 16:10:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2E7043DFA2\n\tfor <source@collab.sakaiproject.org>; Fri,  4 Jan 2008 16:10:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04G9Eqg007199\n\tfor <source@collab.sakaiproject.org>; Fri, 4 Jan 2008 11:09:15 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04G9EuX007197\n\tfor source@collab.sakaiproject.org; Fri, 4 Jan 2008 11:09:14 -0500\nDate: Fri, 4 Jan 2008 11:09:14 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39760 - in site-manage/trunk/site-manage-tool/tool/src: java/org/sakaiproject/site/tool webapp/vm/sitesetup\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Jan  4 11:11:03 2008\nX-DSPAM-Confidence: 0.6959\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39760\n\nAuthor: zqian@umich.edu\nDate: 2008-01-04 11:09:12 -0500 (Fri, 04 Jan 2008)\nNew Revision: 39760\n\nModified:\nsite-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-list.vm\nLog:\nfix to SAK-10911: Refactor use of site.upd, site.upd.site.mbrship and site.upd.grp.mbrship permissions\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gsilver@umich.edu Fri Jan  4 11:10:22 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 04 Jan 2008 11:10:22 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 04 Jan 2008 11:10:22 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby faithful.mail.umich.edu () with ESMTP id m04GAL9k010604;\n\tFri, 4 Jan 2008 11:10:21 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 477E5A67.34350.23015 ; \n\t 4 Jan 2008 11:10:18 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 98D04BAD43;\n\tFri,  4 Jan 2008 16:10:11 +0000 (GMT)\nMessage-ID: <200801041608.m04G8d7w007184@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 966\n          for <source@collab.sakaiproject.org>;\n          Fri, 4 Jan 2008 16:09:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9F89542DD0\n\tfor <source@collab.sakaiproject.org>; Fri,  4 Jan 2008 16:09:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04G8dXN007186\n\tfor <source@collab.sakaiproject.org>; Fri, 4 Jan 2008 11:08:39 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04G8d7w007184\n\tfor source@collab.sakaiproject.org; Fri, 4 Jan 2008 11:08:39 -0500\nDate: Fri, 4 Jan 2008 11:08:39 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gsilver@umich.edu\nSubject: [sakai] svn commit: r39759 - mailarchive/trunk/mailarchive-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Jan  4 11:10:22 2008\nX-DSPAM-Confidence: 0.7606\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39759\n\nAuthor: gsilver@umich.edu\nDate: 2008-01-04 11:08:38 -0500 (Fri, 04 Jan 2008)\nNew Revision: 39759\n\nModified:\nmailarchive/trunk/mailarchive-tool/tool/src/bundle/email.properties\nLog:\nSAK-12592\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12592\n- left moot (unused) entries commented for now\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Fri Jan  4 10:38:42 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 04 Jan 2008 10:38:42 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 04 Jan 2008 10:38:42 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby flawless.mail.umich.edu () with ESMTP id m04Fcfjm012313;\n\tFri, 4 Jan 2008 10:38:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 477E52FA.E6C6E.24093 ; \n\t 4 Jan 2008 10:38:37 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6A39594CD2;\n\tFri,  4 Jan 2008 15:37:36 +0000 (GMT)\nMessage-ID: <200801041537.m04Fb6Ci007092@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 690\n          for <source@collab.sakaiproject.org>;\n          Fri, 4 Jan 2008 15:37:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CEFA037ACE\n\tfor <source@collab.sakaiproject.org>; Fri,  4 Jan 2008 15:38:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04Fb6nh007094\n\tfor <source@collab.sakaiproject.org>; Fri, 4 Jan 2008 10:37:06 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04Fb6Ci007092\n\tfor source@collab.sakaiproject.org; Fri, 4 Jan 2008 10:37:06 -0500\nDate: Fri, 4 Jan 2008 10:37:06 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Jan  4 10:38:42 2008\nX-DSPAM-Confidence: 0.7559\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39758\n\nAuthor: wagnermr@iupui.edu\nDate: 2008-01-04 10:37:04 -0500 (Fri, 04 Jan 2008)\nNew Revision: 39758\n\nModified:\ngradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\ngradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java\ngradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java\nLog:\nSAK-12175\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12175\nCreate methods required for gb integration with the Assignment2 tool\ngetGradeDefinitionForStudentForItem\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Jan  4 10:17:43 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 04 Jan 2008 10:17:43 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 04 Jan 2008 10:17:42 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby sleepers.mail.umich.edu () with ESMTP id m04FHgfs011536;\n\tFri, 4 Jan 2008 10:17:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 477E4E0F.CCA4B.926 ; \n\t 4 Jan 2008 10:17:38 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BD02DBAC64;\n\tFri,  4 Jan 2008 15:17:34 +0000 (GMT)\nMessage-ID: <200801041515.m04FFv42007050@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 25\n          for <source@collab.sakaiproject.org>;\n          Fri, 4 Jan 2008 15:17:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5B396236B9\n\tfor <source@collab.sakaiproject.org>; Fri,  4 Jan 2008 15:17:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04FFv85007052\n\tfor <source@collab.sakaiproject.org>; Fri, 4 Jan 2008 10:15:57 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04FFv42007050\n\tfor source@collab.sakaiproject.org; Fri, 4 Jan 2008 10:15:57 -0500\nDate: Fri, 4 Jan 2008 10:15:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39757 - in assignment/trunk: assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Jan  4 10:17:42 2008\nX-DSPAM-Confidence: 0.7605\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39757\n\nAuthor: zqian@umich.edu\nDate: 2008-01-04 10:15:54 -0500 (Fri, 04 Jan 2008)\nNew Revision: 39757\n\nModified:\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nassignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm\nLog:\nfix to SAK-12604:Don't show groups/sections filter if the site doesn't have any\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom antranig@caret.cam.ac.uk Fri Jan  4 10:04:14 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 04 Jan 2008 10:04:14 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 04 Jan 2008 10:04:14 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby panther.mail.umich.edu () with ESMTP id m04F4Dci015108;\n\tFri, 4 Jan 2008 10:04:13 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 477E4AE3.D7AF.31669 ; \n\t 4 Jan 2008 10:04:05 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 933E3BAC17;\n\tFri,  4 Jan 2008 15:04:00 +0000 (GMT)\nMessage-ID: <200801041502.m04F21Jo007031@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 32\n          for <source@collab.sakaiproject.org>;\n          Fri, 4 Jan 2008 15:03:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AC2F6236B9\n\tfor <source@collab.sakaiproject.org>; Fri,  4 Jan 2008 15:03:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04F21hn007033\n\tfor <source@collab.sakaiproject.org>; Fri, 4 Jan 2008 10:02:01 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04F21Jo007031\n\tfor source@collab.sakaiproject.org; Fri, 4 Jan 2008 10:02:01 -0500\nDate: Fri, 4 Jan 2008 10:02:01 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: antranig@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Jan  4 10:04:14 2008\nX-DSPAM-Confidence: 0.6932\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39756\n\nAuthor: antranig@caret.cam.ac.uk\nDate: 2008-01-04 10:01:40 -0500 (Fri, 04 Jan 2008)\nNew Revision: 39756\n\nAdded:\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/dynamic/\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/dynamic/DynamicComponentManager.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/support/\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/support/DynamicComponentRecord.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/support/DynamicJARManager.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/support/JARRecord.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/ByteToCharBase64.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/FileUtil.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/RecordFileIO.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/RecordReader.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/RecordWriter.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/StreamDigestor.java\nModified:\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/ComponentsLoaderImpl.java\nLog:\nTemporary commit of incomplete work on JAR caching\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gopal.ramasammycook@gmail.com Fri Jan  4 09:05:31 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 04 Jan 2008 09:05:31 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 04 Jan 2008 09:05:31 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby flawless.mail.umich.edu () with ESMTP id m04E5U3C029277;\n\tFri, 4 Jan 2008 09:05:30 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 477E3D23.EE2E7.5237 ; \n\t 4 Jan 2008 09:05:26 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 33C7856DC0;\n\tFri,  4 Jan 2008 14:05:26 +0000 (GMT)\nMessage-ID: <200801041403.m04E3psW006926@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 575\n          for <source@collab.sakaiproject.org>;\n          Fri, 4 Jan 2008 14:05:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3C0261D617\n\tfor <source@collab.sakaiproject.org>; Fri,  4 Jan 2008 14:05:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04E3pQS006928\n\tfor <source@collab.sakaiproject.org>; Fri, 4 Jan 2008 09:03:52 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04E3psW006926\n\tfor source@collab.sakaiproject.org; Fri, 4 Jan 2008 09:03:51 -0500\nDate: Fri, 4 Jan 2008 09:03:51 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f\nTo: source@collab.sakaiproject.org\nFrom: gopal.ramasammycook@gmail.com\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Jan  4 09:05:31 2008\nX-DSPAM-Confidence: 0.7558\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39755\n\nAuthor: gopal.ramasammycook@gmail.com\nDate: 2008-01-04 09:02:54 -0500 (Fri, 04 Jan 2008)\nNew Revision: 39755\n\nModified:\nsam/branches/SAK-12065/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/grading/GradingSectionAwareServiceAPI.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/QuestionScoresBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/SubmissionStatusBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/TotalScoresBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/SubmissionStatusListener.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueriesAPI.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/ifc/SectionAwareServiceHelper.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/integrated/SectionAwareServiceHelperImpl.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/standalone/SectionAwareServiceHelperImpl.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/grading/GradingSectionAwareServiceImpl.java\nLog:\nSAK-12065 Gopal - Samigo Group Release. SubmissionStatus/TotalScores/Questions View filter.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Fri Jan  4 07:02:32 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 04 Jan 2008 07:02:32 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 04 Jan 2008 07:02:32 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby faithful.mail.umich.edu () with ESMTP id m04C2VN7026678;\n\tFri, 4 Jan 2008 07:02:31 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 477E2050.C2599.3263 ; \n\t 4 Jan 2008 07:02:27 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6497FBA906;\n\tFri,  4 Jan 2008 12:02:11 +0000 (GMT)\nMessage-ID: <200801041200.m04C0gfK006793@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 611\n          for <source@collab.sakaiproject.org>;\n          Fri, 4 Jan 2008 12:01:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5296342D3C\n\tfor <source@collab.sakaiproject.org>; Fri,  4 Jan 2008 12:01:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04C0gnm006795\n\tfor <source@collab.sakaiproject.org>; Fri, 4 Jan 2008 07:00:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04C0gfK006793\n\tfor source@collab.sakaiproject.org; Fri, 4 Jan 2008 07:00:42 -0500\nDate: Fri, 4 Jan 2008 07:00:42 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Jan  4 07:02:32 2008\nX-DSPAM-Confidence: 0.6526\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39754\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2008-01-04 07:00:10 -0500 (Fri, 04 Jan 2008)\nNew Revision: 39754\n\nAdded:\npolls/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/poll/tool/evolvers/\npolls/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/poll/tool/evolvers/SakaiFCKTextEvolver.java\nRemoved:\npolls/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/poll/tool/evolvers/SakaiFCKTextEvolver.java\nModified:\npolls/branches/sakai_2-5-x/.classpath\npolls/branches/sakai_2-5-x/tool/pom.xml\npolls/branches/sakai_2-5-x/tool/src/webapp/WEB-INF/requestContext.xml\nLog:\nsvn log -r39753 https://source.sakaiproject.org/svn/polls/trunk\n------------------------------------------------------------------------\nr39753 | david.horwitz@uct.ac.za | 2008-01-04 13:05:51 +0200 (Fri, 04 Jan 2008) | 1 line\n\nSAK-12228 implmented workaround sugested by AB - needs to be tested against a trunk build\n------------------------------------------------------------------------\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39753 https://source.sakaiproject.org/svn/polls/trunk polls/\nU    polls/.classpath\nA    polls/tool/src/java/org/sakaiproject/poll/tool/evolvers\nA    polls/tool/src/java/org/sakaiproject/poll/tool/evolvers/SakaiFCKTextEvolver.java\nC    polls/tool/src/webapp/WEB-INF/requestContext.xml\nU    polls/tool/pom.xml\n\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn resolved polls/tool/src/webapp/WEB-INF/requestContext.xml\nResolved conflicted state of 'polls/tool/src/webapp/WEB-INF/requestContext.xml\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Fri Jan  4 06:08:27 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 04 Jan 2008 06:08:27 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 04 Jan 2008 06:08:27 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby casino.mail.umich.edu () with ESMTP id m04B8Qw9001368;\n\tFri, 4 Jan 2008 06:08:26 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 477E13A5.30FC0.24054 ; \n\t 4 Jan 2008 06:08:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 784A476D7B;\n\tFri,  4 Jan 2008 11:08:12 +0000 (GMT)\nMessage-ID: <200801041106.m04B6lK3006677@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 585\n          for <source@collab.sakaiproject.org>;\n          Fri, 4 Jan 2008 11:07:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1CACC42D0C\n\tfor <source@collab.sakaiproject.org>; Fri,  4 Jan 2008 11:07:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m04B6lWM006679\n\tfor <source@collab.sakaiproject.org>; Fri, 4 Jan 2008 06:06:47 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m04B6lK3006677\n\tfor source@collab.sakaiproject.org; Fri, 4 Jan 2008 06:06:47 -0500\nDate: Fri, 4 Jan 2008 06:06:47 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Jan  4 06:08:27 2008\nX-DSPAM-Confidence: 0.6948\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39753\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2008-01-04 06:05:51 -0500 (Fri, 04 Jan 2008)\nNew Revision: 39753\n\nAdded:\npolls/trunk/tool/src/java/org/sakaiproject/poll/tool/evolvers/\npolls/trunk/tool/src/java/org/sakaiproject/poll/tool/evolvers/SakaiFCKTextEvolver.java\nModified:\npolls/trunk/.classpath\npolls/trunk/tool/pom.xml\npolls/trunk/tool/src/webapp/WEB-INF/requestContext.xml\nLog:\nSAK-12228 implmented workaround sugested by AB - needs to be tested against a trunk build\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Fri Jan  4 04:49:08 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 04 Jan 2008 04:49:08 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 04 Jan 2008 04:49:08 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby score.mail.umich.edu () with ESMTP id m049n60G017588;\n\tFri, 4 Jan 2008 04:49:06 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 477E010C.48C2.10259 ; \n\t 4 Jan 2008 04:49:03 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 254CC8CDEE;\n\tFri,  4 Jan 2008 09:48:55 +0000 (GMT)\nMessage-ID: <200801040947.m049lUxo006517@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 246\n          for <source@collab.sakaiproject.org>;\n          Fri, 4 Jan 2008 09:48:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8C13342C92\n\tfor <source@collab.sakaiproject.org>; Fri,  4 Jan 2008 09:48:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m049lU3P006519\n\tfor <source@collab.sakaiproject.org>; Fri, 4 Jan 2008 04:47:30 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m049lUxo006517\n\tfor source@collab.sakaiproject.org; Fri, 4 Jan 2008 04:47:30 -0500\nDate: Fri, 4 Jan 2008 04:47:30 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r39752 - in podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp: css podcasts\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Jan  4 04:49:08 2008\nX-DSPAM-Confidence: 0.6528\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39752\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2008-01-04 04:47:16 -0500 (Fri, 04 Jan 2008)\nNew Revision: 39752\n\nModified:\npodcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/css/podcaster.css\npodcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/podcasts/podMain.jsp\nLog:\nsvn log -r39641 https://source.sakaiproject.org/svn/podcasts/trunk\n------------------------------------------------------------------------\nr39641 | josrodri@iupui.edu | 2007-12-28 23:44:24 +0200 (Fri, 28 Dec 2007) | 1 line\n\nSAK-9882: refactored podMain.jsp the right way (at least much closer to)\n------------------------------------------------------------------------\n\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge  -c39641 https://source.sakaiproject.org/svn/podcasts/trunk podcasts/\nC    podcasts/podcasts-app/src/webapp/podcasts/podMain.jsp\nU    podcasts/podcasts-app/src/webapp/css/podcaster.css\n\nconflict merged manualy\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Fri Jan  4 04:33:44 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 04 Jan 2008 04:33:44 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 04 Jan 2008 04:33:44 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby fan.mail.umich.edu () with ESMTP id m049Xge3031803;\n\tFri, 4 Jan 2008 04:33:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 477DFD6C.75DBE.26054 ; \n\t 4 Jan 2008 04:33:35 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6C929BA656;\n\tFri,  4 Jan 2008 09:33:27 +0000 (GMT)\nMessage-ID: <200801040932.m049W2i5006493@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 153\n          for <source@collab.sakaiproject.org>;\n          Fri, 4 Jan 2008 09:33:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6C69423767\n\tfor <source@collab.sakaiproject.org>; Fri,  4 Jan 2008 09:33:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m049W3fl006495\n\tfor <source@collab.sakaiproject.org>; Fri, 4 Jan 2008 04:32:03 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m049W2i5006493\n\tfor source@collab.sakaiproject.org; Fri, 4 Jan 2008 04:32:02 -0500\nDate: Fri, 4 Jan 2008 04:32:02 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r39751 - in podcasts/branches/sakai_2-5-x/podcasts-app/src/webapp: css images podcasts\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Jan  4 04:33:44 2008\nX-DSPAM-Confidence: 0.7002\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39751\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2008-01-04 04:31:35 -0500 (Fri, 04 Jan 2008)\nNew Revision: 39751\n\nRemoved:\npodcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/images/rss-feed-icon.png\npodcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/podcasts/podPermissions.jsp\nModified:\npodcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/css/podcaster.css\npodcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/podcasts/podDelete.jsp\npodcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/podcasts/podMain.jsp\npodcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/podcasts/podNoResource.jsp\npodcasts/branches/sakai_2-5-x/podcasts-app/src/webapp/podcasts/podOptions.jsp\nLog:\nsvn log -r39146 https://source.sakaiproject.org/svn/podcasts/trunk\n------------------------------------------------------------------------\nr39146 | josrodri@iupui.edu | 2007-12-12 21:40:33 +0200 (Wed, 12 Dec 2007) | 1 line\n\nSAK-9882: refactored the other pages as well to take advantage of proper jsp components as well as validation cleanup.\n------------------------------------------------------------------------\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39146 https://source.sakaiproject.org/svn/podcasts/trunk podcasts/\nD    podcasts/podcasts-app/src/webapp/podcasts/podPermissions.jsp\nU    podcasts/podcasts-app/src/webapp/podcasts/podDelete.jsp\nU    podcasts/podcasts-app/src/webapp/podcasts/podMain.jsp\nU    podcasts/podcasts-app/src/webapp/podcasts/podNoResource.jsp\nU    podcasts/podcasts-app/src/webapp/podcasts/podOptions.jsp\nD    podcasts/podcasts-app/src/webapp/images/rss-feed-icon.png\nU    podcasts/podcasts-app/src/webapp/css/podcaster.css\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stephen.marquard@uct.ac.za Fri Jan  4 04:07:34 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 04 Jan 2008 04:07:34 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 04 Jan 2008 04:07:34 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby panther.mail.umich.edu () with ESMTP id m0497WAN027902;\n\tFri, 4 Jan 2008 04:07:32 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 477DF74E.49493.30415 ; \n\t 4 Jan 2008 04:07:29 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 88598BA5B6;\n\tFri,  4 Jan 2008 09:07:19 +0000 (GMT)\nMessage-ID: <200801040905.m0495rWB006420@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 385\n          for <source@collab.sakaiproject.org>;\n          Fri, 4 Jan 2008 09:07:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 90636418A8\n\tfor <source@collab.sakaiproject.org>; Fri,  4 Jan 2008 09:07:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m0495sZs006422\n\tfor <source@collab.sakaiproject.org>; Fri, 4 Jan 2008 04:05:54 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m0495rWB006420\n\tfor source@collab.sakaiproject.org; Fri, 4 Jan 2008 04:05:53 -0500\nDate: Fri, 4 Jan 2008 04:05:53 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: stephen.marquard@uct.ac.za\nSubject: [sakai] svn commit: r39750 - event/branches/SAK-6216/event-util/util/src/java/org/sakaiproject/util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Jan  4 04:07:34 2008\nX-DSPAM-Confidence: 0.7554\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39750\n\nAuthor: stephen.marquard@uct.ac.za\nDate: 2008-01-04 04:05:43 -0500 (Fri, 04 Jan 2008)\nNew Revision: 39750\n\nModified:\nevent/branches/SAK-6216/event-util/util/src/java/org/sakaiproject/util/EmailNotification.java\nLog:\nSAK-6216 merge event change from SAK-11169 (r39033) to synchronize branch with 2-5-x (for convenience for UCT local build)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom louis@media.berkeley.edu Thu Jan  3 19:51:21 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 19:51:21 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 19:51:21 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby jacknife.mail.umich.edu () with ESMTP id m040pJHB027171;\n\tThu, 3 Jan 2008 19:51:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 477D8300.AC098.32562 ; \n\t 3 Jan 2008 19:51:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E6CC4B9F8A;\n\tFri,  4 Jan 2008 00:36:06 +0000 (GMT)\nMessage-ID: <200801040023.m040NpCc005473@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 754\n          for <source@collab.sakaiproject.org>;\n          Fri, 4 Jan 2008 00:35:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8889842C49\n\tfor <source@collab.sakaiproject.org>; Fri,  4 Jan 2008 00:25:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m040NpgM005475\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 19:23:51 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m040NpCc005473\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 19:23:51 -0500\nDate: Thu, 3 Jan 2008 19:23:51 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: louis@media.berkeley.edu\nSubject: [sakai] svn commit: r39749 - in bspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src: bundle webapp/vm/sitesetup\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 19:51:20 2008\nX-DSPAM-Confidence: 0.6956\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39749\n\nAuthor: louis@media.berkeley.edu\nDate: 2008-01-03 19:23:46 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39749\n\nModified:\nbspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties\nbspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-importSites.vm\nLog:\nBSP-1420 Update text to clarify \"Re-Use Materials...\" option in WS Setup\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom louis@media.berkeley.edu Thu Jan  3 17:18:23 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 17:18:23 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 17:18:23 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby jacknife.mail.umich.edu () with ESMTP id m03MIMXY027729;\n\tThu, 3 Jan 2008 17:18:22 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 477D5F23.797F6.16348 ; \n\t 3 Jan 2008 17:18:14 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EF439B98CE;\n\tThu,  3 Jan 2008 22:18:19 +0000 (GMT)\nMessage-ID: <200801032216.m03MGhDa005292@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 236\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 22:18:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 905D53C2FD\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 22:17:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03MGhrs005294\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 17:16:43 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03MGhDa005292\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 17:16:43 -0500\nDate: Thu, 3 Jan 2008 17:16:43 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: louis@media.berkeley.edu\nSubject: [sakai] svn commit: r39746 - in bspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src: bundle webapp/vm/sitesetup\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 17:18:23 2008\nX-DSPAM-Confidence: 0.6959\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39746\n\nAuthor: louis@media.berkeley.edu\nDate: 2008-01-03 17:16:39 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39746\n\nModified:\nbspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties\nbspace/site-manage/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-duplicate.vm\nLog:\nBSP-1421 Add text to clarify \"Duplicate Site\" option in Site Info\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Thu Jan  3 17:07:00 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 17:07:00 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 17:07:00 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby faithful.mail.umich.edu () with ESMTP id m03M6xaq014868;\n\tThu, 3 Jan 2008 17:06:59 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 477D5C7A.4FE1F.22211 ; \n\t 3 Jan 2008 17:06:53 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0BC8D7225E;\n\tThu,  3 Jan 2008 22:06:57 +0000 (GMT)\nMessage-ID: <200801032205.m03M5Ea7005273@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 554\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 22:06:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2AB513C2FD\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 22:06:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03M5EQa005275\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 17:05:14 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03M5Ea7005273\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 17:05:14 -0500\nDate: Thu, 3 Jan 2008 17:05:14 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [sakai] svn commit: r39745 - providers/trunk/cm/cm-authz-provider/src/java/org/sakaiproject/coursemanagement/impl/provider\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 17:07:00 2008\nX-DSPAM-Confidence: 0.7556\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39745\n\nAuthor: ray@media.berkeley.edu\nDate: 2008-01-03 17:05:11 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39745\n\nModified:\nproviders/trunk/cm/cm-authz-provider/src/java/org/sakaiproject/coursemanagement/impl/provider/CourseManagementGroupProvider.java\nLog:\nSAK-12602 Fix logic when a user has multiple roles in a section\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Thu Jan  3 16:34:40 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 16:34:40 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 16:34:40 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby chaos.mail.umich.edu () with ESMTP id m03LYdY1029538;\n\tThu, 3 Jan 2008 16:34:39 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 477D54EA.13F34.26602 ; \n\t 3 Jan 2008 16:34:36 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CC710ADC79;\n\tThu,  3 Jan 2008 21:34:29 +0000 (GMT)\nMessage-ID: <200801032133.m03LX3gG005191@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 611\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 21:34:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 43C4242B55\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 21:34:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03LX3Vb005193\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 16:33:03 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03LX3gG005191\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 16:33:03 -0500\nDate: Thu, 3 Jan 2008 16:33:03 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39744 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 16:34:40 2008\nX-DSPAM-Confidence: 0.9846\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39744\n\nAuthor: cwen@iupui.edu\nDate: 2008-01-03 16:33:02 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39744\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdate external for GB.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Thu Jan  3 16:29:07 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 16:29:07 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 16:29:07 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby fan.mail.umich.edu () with ESMTP id m03LT6uw027749;\n\tThu, 3 Jan 2008 16:29:06 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 477D5397.E161D.20326 ; \n\t 3 Jan 2008 16:28:58 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DEC65ADC79;\n\tThu,  3 Jan 2008 21:28:52 +0000 (GMT)\nMessage-ID: <200801032127.m03LRUqH005177@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 917\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 21:28:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1FBB042B30\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 21:28:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03LRUk4005179\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 16:27:30 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03LRUqH005177\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 16:27:30 -0500\nDate: Thu, 3 Jan 2008 16:27:30 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39743 - gradebook/branches/oncourse_2-4-2/app/ui/src/java/org/sakaiproject/tool/gradebook/ui\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 16:29:07 2008\nX-DSPAM-Confidence: 0.8509\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39743\n\nAuthor: cwen@iupui.edu\nDate: 2008-01-03 16:27:29 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39743\n\nModified:\ngradebook/branches/oncourse_2-4-2/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java\nLog:\nsvn merge -c 39403 https://source.sakaiproject.org/svn/gradebook/trunk\nU    app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java\n\nsvn log -r 39403 https://source.sakaiproject.org/svn/gradebook/trunk\n------------------------------------------------------------------------\nr39403 | wagnermr@iupui.edu | 2007-12-17 17:11:08 -0500 (Mon, 17 Dec 2007) | 3 lines\n\nSAK-12504\nhttp://jira.sakaiproject.org/jira/browse/SAK-12504\nViewing \"All Grades\" page as a TA with grader permissions causes stack trace\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Thu Jan  3 16:23:48 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 16:23:48 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 16:23:48 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby jacknife.mail.umich.edu () with ESMTP id m03LNlf0002115;\n\tThu, 3 Jan 2008 16:23:47 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 477D525E.1448.30389 ; \n\t 3 Jan 2008 16:23:44 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9D005B9D06;\n\tThu,  3 Jan 2008 21:23:38 +0000 (GMT)\nMessage-ID: <200801032122.m03LMFo4005148@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 6\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 21:23:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3535542B69\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 21:23:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03LMFtT005150\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 16:22:15 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03LMFo4005148\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 16:22:15 -0500\nDate: Thu, 3 Jan 2008 16:22:15 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39742 - gradebook/branches/oncourse_2-4-2/app/ui/src/java/org/sakaiproject/tool/gradebook/ui\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 16:23:48 2008\nX-DSPAM-Confidence: 0.9907\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39742\n\nAuthor: cwen@iupui.edu\nDate: 2008-01-03 16:22:14 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39742\n\nModified:\ngradebook/branches/oncourse_2-4-2/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java\nLog:\nsvn merge -c 35014 https://source.sakaiproject.org/svn/gradebook/trunk\nU    app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java\n\nsvn log -r 35014 https://source.sakaiproject.org/svn/gradebook/trunk\n------------------------------------------------------------------------\nr35014 | wagnermr@iupui.edu | 2007-09-12 16:17:59 -0400 (Wed, 12 Sep 2007) | 3 lines\n\nSAK-11458\nhttp://bugs.sakaiproject.org/jira/browse/SAK-11458\nCourse grade does not appear on \"All Grades\" page if no categories in gb\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Thu Jan  3 15:56:00 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 15:56:00 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 15:56:00 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby mission.mail.umich.edu () with ESMTP id m03Ktxn6011763;\n\tThu, 3 Jan 2008 15:55:59 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 477D4BD5.49C7D.29291 ; \n\t 3 Jan 2008 15:55:52 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C1DD26DA3E;\n\tThu,  3 Jan 2008 20:55:46 +0000 (GMT)\nMessage-ID: <200801032054.m03KsIIF005054@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 0\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 20:55:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3721142B2D\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 20:55:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03KsI2x005057\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 15:54:18 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03KsIIF005054\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 15:54:18 -0500\nDate: Thu, 3 Jan 2008 15:54:18 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [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/!\n 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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 15:56:00 2008\nX-DSPAM-Confidence: 0.7003\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39741\n\nAuthor: ray@media.berkeley.edu\nDate: 2008-01-03 15:53:29 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39741\n\nAdded:\ncomponent/trunk/component-api/component/src/config/org/sakaiproject/config/sakai-configuration.xml\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/impl/DynamicDefaultSakaiProperties.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/util/BeanFactoryPostProcessorCreator.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/util/ReversiblePropertyOverrideConfigurer.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/util/SakaiApplicationContext.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/util/SakaiProperties.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/util/SakaiPropertyPromoter.java\ncomponent/trunk/component-impl/integration-test/\ncomponent/trunk/component-impl/integration-test/pom.xml\ncomponent/trunk/component-impl/integration-test/src/\ncomponent/trunk/component-impl/integration-test/src/java/\ncomponent/trunk/component-impl/integration-test/src/java/org/\ncomponent/trunk/component-impl/integration-test/src/java/org/sakaiproject/\ncomponent/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/\ncomponent/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/\ncomponent/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/ITestComponent.java\ncomponent/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/ITestProvider.java\ncomponent/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/TestComponent.java\ncomponent/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/TestProvider1.java\ncomponent/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/TestProvider2.java\ncomponent/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/dynamic/\ncomponent/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/dynamic/DbPropertiesDao.java\ncomponent/trunk/component-impl/integration-test/src/test/\ncomponent/trunk/component-impl/integration-test/src/test/java/\ncomponent/trunk/component-impl/integration-test/src/test/java/org/\ncomponent/trunk/component-impl/integration-test/src/test/java/org/sakaiproject/\ncomponent/trunk/component-impl/integration-test/src/test/java/org/sakaiproject/component/\ncomponent/trunk/component-impl/integration-test/src/test/java/org/sakaiproject/component/ConfigurationLoadingTest.java\ncomponent/trunk/component-impl/integration-test/src/test/java/org/sakaiproject/component/DynamicConfigurationTest.java\ncomponent/trunk/component-impl/integration-test/src/test/resources/\ncomponent/trunk/component-impl/integration-test/src/test/resources/dynamic/\ncomponent/trunk/component-impl/integration-test/src/test/resources/dynamic/sakai-configuration.xml\ncomponent/trunk/component-impl/integration-test/src/test/resources/dynamic/sakai.properties\ncomponent/trunk/component-impl/integration-test/src/test/resources/filesystem/\ncomponent/trunk/component-impl/integration-test/src/test/resources/filesystem/sakai-configuration.xml\ncomponent/trunk/component-impl/integration-test/src/test/resources/filesystem/sakai.properties\ncomponent/trunk/component-impl/integration-test/src/test/resources/filesystem/some-peculiar.properties\ncomponent/trunk/component-impl/integration-test/src/test/resources/log4j.properties\ncomponent/trunk/component-impl/integration-test/src/webapp/\ncomponent/trunk/component-impl/integration-test/src/webapp/WEB-INF/\ncomponent/trunk/component-impl/integration-test/src/webapp/WEB-INF/components.xml\ncomponent/trunk/component-impl/integration-test/xdocs/\ncomponent/trunk/component-impl/integration-test/xdocs/README.txt\nRemoved:\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/api/ComponentsLoader.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/util/PropertyOverrideConfigurer.java\ncomponent/trunk/component-api/component/src/java/org/springframework/\ncomponent/trunk/component-impl/impl/src/java/org/sakaiproject/component/impl/ConfigurationServiceTest.java\ncomponent/trunk/component-impl/integration-test/pom.xml\ncomponent/trunk/component-impl/integration-test/src/\ncomponent/trunk/component-impl/integration-test/src/java/\ncomponent/trunk/component-impl/integration-test/src/java/org/\ncomponent/trunk/component-impl/integration-test/src/java/org/sakaiproject/\ncomponent/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/\ncomponent/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/\ncomponent/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/ITestComponent.java\ncomponent/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/ITestProvider.java\ncomponent/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/TestComponent.java\ncomponent/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/TestProvider1.java\ncomponent/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/TestProvider2.java\ncomponent/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/dynamic/\ncomponent/trunk/component-impl/integration-test/src/java/org/sakaiproject/component/test/dynamic/DbPropertiesDao.java\ncomponent/trunk/component-impl/integration-test/src/test/\ncomponent/trunk/component-impl/integration-test/src/test/java/\ncomponent/trunk/component-impl/integration-test/src/test/java/org/\ncomponent/trunk/component-impl/integration-test/src/test/java/org/sakaiproject/\ncomponent/trunk/component-impl/integration-test/src/test/java/org/sakaiproject/component/\ncomponent/trunk/component-impl/integration-test/src/test/java/org/sakaiproject/component/ConfigurationLoadingTest.java\ncomponent/trunk/component-impl/integration-test/src/test/java/org/sakaiproject/component/DynamicConfigurationTest.java\ncomponent/trunk/component-impl/integration-test/src/test/resources/\ncomponent/trunk/component-impl/integration-test/src/test/resources/dynamic/\ncomponent/trunk/component-impl/integration-test/src/test/resources/dynamic/sakai-configuration.xml\ncomponent/trunk/component-impl/integration-test/src/test/resources/dynamic/sakai.properties\ncomponent/trunk/component-impl/integration-test/src/test/resources/filesystem/\ncomponent/trunk/component-impl/integration-test/src/test/resources/filesystem/sakai-configuration.xml\ncomponent/trunk/component-impl/integration-test/src/test/resources/filesystem/sakai.properties\ncomponent/trunk/component-impl/integration-test/src/test/resources/filesystem/some-peculiar.properties\ncomponent/trunk/component-impl/integration-test/src/test/resources/log4j.properties\ncomponent/trunk/component-impl/integration-test/src/webapp/\ncomponent/trunk/component-impl/integration-test/src/webapp/WEB-INF/\ncomponent/trunk/component-impl/integration-test/src/webapp/WEB-INF/components.xml\ncomponent/trunk/component-impl/integration-test/xdocs/\ncomponent/trunk/component-impl/integration-test/xdocs/README.txt\nModified:\ncomponent/trunk/\ncomponent/trunk/component-api/.classpath\ncomponent/trunk/component-api/component/pom.xml\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/api/ComponentManager.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/cover/ComponentManager.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/impl/SpringCompMgr.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/util/ComponentsLoader.java\ncomponent/trunk/component-impl/.classpath\ncomponent/trunk/component-impl/impl/pom.xml\ncomponent/trunk/component-impl/impl/src/java/org/sakaiproject/component/impl/BasicConfigurationService.java\ncomponent/trunk/component-impl/pack/src/webapp/WEB-INF/components.xml\ncomponent/trunk/pom.xml\nLog:\nSAK-8315 SAK-12237 SAK-12236 Externalize component manager configuration; support lists of properties files, non-file-system properties, and complex configuration objects\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Thu Jan  3 15:53:58 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 15:53:58 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 15:53:58 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby sleepers.mail.umich.edu () with ESMTP id m03KrvIV026669;\n\tThu, 3 Jan 2008 15:53:57 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 477D4B5E.D27F6.23416 ; \n\t 3 Jan 2008 15:53:54 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 49D46B9900;\n\tThu,  3 Jan 2008 20:53:50 +0000 (GMT)\nMessage-ID: <200801032052.m03KqOsp005029@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 663\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 20:53:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 85EF442B2D\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 20:53:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03KqOxn005031\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 15:52:25 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03KqOsp005029\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 15:52:24 -0500\nDate: Thu, 3 Jan 2008 15:52:24 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39740 - reference/trunk/docs/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 15:53:58 2008\nX-DSPAM-Confidence: 0.8507\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39740\n\nAuthor: cwen@iupui.edu\nDate: 2008-01-03 15:52:23 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39740\n\nModified:\nreference/trunk/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql\nreference/trunk/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\nLog:\nsvn merge -r39155:39154 https://source.sakaiproject.org/svn/reference/trunk\nU    docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql\nU    docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\n\nsvn log -r 39155\n------------------------------------------------------------------------\nr39155 | cwen@iupui.edu | 2007-12-12 15:53:46 -0500 (Wed, 12 Dec 2007) | 1 line\n\nmore conversion statements for SAK-10427.\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Jan  3 15:27:26 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 15:27:26 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 15:27:26 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby brazil.mail.umich.edu () with ESMTP id m03KRQhx016556;\n\tThu, 3 Jan 2008 15:27:26 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 477D4528.333B2.13071 ; \n\t 3 Jan 2008 15:27:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B092D78F12;\n\tThu,  3 Jan 2008 20:27:19 +0000 (GMT)\nMessage-ID: <200801032025.m03KPvQi004928@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 206\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 20:27:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9C59F42B2E\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 20:27:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03KPvti004930\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 15:25:57 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03KPvQi004928\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 15:25:57 -0500\nDate: Thu, 3 Jan 2008 15:25:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39739 - assignment/tags\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 15:27:26 2008\nX-DSPAM-Confidence: 0.9895\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39739\n\nAuthor: zqian@umich.edu\nDate: 2008-01-03 15:25:55 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39739\n\nAdded:\nassignment/tags/post-2-4-b/\nLog:\ncreate 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.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Thu Jan  3 15:25:41 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 15:25:41 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 15:25:41 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby flawless.mail.umich.edu () with ESMTP id m03KPeml010360;\n\tThu, 3 Jan 2008 15:25:40 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 477D44BE.43CAA.20354 ; \n\t 3 Jan 2008 15:25:37 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 719B6B82DE;\n\tThu,  3 Jan 2008 20:25:34 +0000 (GMT)\nMessage-ID: <200801032024.m03KOBAp004915@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 3\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 20:25:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CB92242B09\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 20:25:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03KOBs1004917\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 15:24:11 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03KOBAp004915\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 15:24:11 -0500\nDate: Thu, 3 Jan 2008 15:24:11 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 15:25:41 2008\nX-DSPAM-Confidence: 0.9965\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39738\n\nAuthor: cwen@iupui.edu\nDate: 2008-01-03 15:24:05 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39738\n\nRemoved:\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/jsf/NonGradedValueValidator.java\nModified:\ngradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/GradebookManager.java\ngradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\ngradebook/trunk/app/business/src/sql/mysql/SAK-10427.sql\ngradebook/trunk/app/business/src/sql/oracle/SAK-10427.sql\ngradebook/trunk/app/sakai-tool/src/webapp/WEB-INF/faces-application.xml\ngradebook/trunk/app/standalone-app/src/test/org/sakaiproject/tool/gradebook/test/GradebookManagerOPCTest.java\ngradebook/trunk/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/jsf/AssignmentPointsConverter.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/jsf/ClassAvgConverter.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentDetailsBean.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/BulkAssignmentDecoratedBean.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/GradebookDependentBean.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/GradebookSetupBean.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/InstructorViewBean.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/ViewByStudentBean.java\ngradebook/trunk/app/ui/src/webapp/assignmentDetails.jsp\ngradebook/trunk/app/ui/src/webapp/inc/assignmentEditing.jspf\ngradebook/trunk/app/ui/src/webapp/instructorView.jsp\ngradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java\ngradebook/trunk/service/hibernate/src/hibernate/org/sakaiproject/tool/gradebook/GradeRecord.hbm.xml\ngradebook/trunk/service/hibernate/src/java/org/sakaiproject/tool/gradebook/AssignmentGradeRecord.java\ngradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/BaseHibernateManager.java\nLog:\nunmerge non-graded stuff since October. include 37479, 37506, 37669, \n38874, 39111, 39309, 39365, 39376, 39393 (michelle), 39362 (ryan)\n\nsvn merge -r39376:39375 https://source.sakaiproject.org/svn/gradebook/trunk\nU    app/ui/src/java/org/sakaiproject/tool/gradebook/ui/ViewByStudentBean.java\n\nsvn log -r 39376\n------------------------------------------------------------------------\nr39376 | cwen@iupui.edu | 2007-12-17 12:16:42 -0500 (Mon, 17 Dec 2007) | 4 lines\n\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12486\n=>\ninclude non-graded items for grade report page and\nstudent view page.\n------------------------------------------------------------------------\n\nsvn merge -r39365:39364 https://source.sakaiproject.org/svn/gradebook/trunk\nU    app/sakai-tool/src/webapp/WEB-INF/faces-application.xml\nD    app/ui/src/java/org/sakaiproject/tool/gradebook/jsf/NonGradedValueValidator.java\nU    app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties\nU    app/ui/src/webapp/assignmentDetails.jsp\n\nsvn log -r 39365\n-------------------------------------------------------------------------------------------------------------------------500 (Mon,-----------------------------------------------------------------------2485\n=>\nadd validation for non-graded grades.\n------------------------------------------------------------------------\n\nsvn merge -r39309:39308 https://source.sakaiproject.org/svn/gradebook/trunk\nU    app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssigU    app/ui/src/java/org/sakaiproject/tool/gradoject/tool/gradebook/ui/BulkAssignmentDecoratedBean.java\nG    app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties\nC    app/ui/src/webapp/inc/bulkNewItems.jspf\nU    app/ui/src/webapp/inc/assignmentEditing.jspf\n\nsvn revert app/ui/src/webapp/inc/bulkNewItems.jspf\nReverted app/ui/src/webapp/inc/bulkNewItems.jspf\n\nsvn log -r 39309\n------------------------------------------------------------------------\nr39309 | cwen@iupui.edu | 2007-12-15 01:11:33 -0500 (Sat, 15 Dec 2007) | 1 line\n\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12461\n------------------------------------------------------------------------\n\nsvn merge -r39111:39110 https://source.sakaiproject.org/svn/gradebook/trunk\nC    app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\n\nsvn resolved app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\nResolved conflicted state of app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\n\nsvn log -r 39111\n------------------------------------------------------------------------\nr39111 | cwen@iupui.edu | 2007-12-11 14:26:27 -0500 (Tue, 11 Dec 2007) | 1 line\n\nSAK-10427 & SAK-12114 => bulk creation for ungraded items.\n------------------------------------------------------------------------\n\nsvn merge -r38874:38873 https://source.sakaiproject.org/svn/gradebook/trunk\nU    app/ui/src/webapp/gradebookSetup.jsp\n\nsvn log -r 38874\n------------------------------------------------------------------------\nr38874 | cwen@iupui.edu | 2007-11-29 14:35:46 -0500 (Thu, 29 Nov 2007) | 5 lines\n\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12305\nSAK-12305\n=>\nget rid of \"I want to enter grades \nthat do not adhere to the standard grade entry type\"\n------------------------------------------------------------------------------------------------------s://source.sakaiproject.org/svn/gradebo-----------------------------------------------------------------------------------------okManagerHibernateImpl.java\nU    app/ui/src/java/org/sakaiproject/tool/gradebook/jsf/ClassAvgConverter.java\nG    app/ui/src/java/org/sakaiproject/tool/gradebook/ui/ViewByStudentBean.java\nU    app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentDetailsBean.java\nU    app/ui/src/java/org/sakaiproject/tool/gradebook/ui/GradebookDependentBean.java\nU    app/ui/src/java/org/sakaiproject/tool/gradebook/ui/InstructorViewBean.java\nU    app/ui/src/webapp/instructorView.jsp\nG    app/ui/src/webapp/assignmentDetails.jsp\n\nsvn resolved app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\nResolved conflicted state of app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\n\nsvn log -r 37669\n------------------------------------------------------------------------\nr37669 | cwen@iupui.edu | 2007-10-31 13:15:28 -0400 (Wed, 31 Oct 2007) | 4 lines\n\nhttp://128.196.219.68/jira/browse/SAK-10427\nSAK-10427\n=>\nfix some displyaing/saving issues.\n------------------------------------------------------------------------\n\nsvn merge -r37506:37505 https://source.sakaiproject.org/svn/gradebook/trunk\nG    app/ui/src/java/org/sakaiproject/tool/gradebook/ui/ViewByStudentBean.java\nG    app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentDetailsBean.java\nC    app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java\n\nsvn resolved app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java\nResolved conflicted state of app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java\n\nsvn log -r 37506\n------------------------------------------------------------------------------------------------------------------------------------------------------------------128.196.219.68/jira/browse/SAK-10427\nSAK-10427\n=>\nfix some NPE.\n------------------------------------------------------------------------\n\nsvn merge -r37479:37478 https://source.sakaiproject.org/svn/gradebook/trunk\nU    app/standalone-app/src/test/org/sakaiproject/tool/gradebook/test/GradebookManagerOPCTest.java\nU    app/business/src/sql/mysql/SAK-10427.sql\nU    app/business/src/sql/oracle/SAK-10427.sql\nG    app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\nU    app/business/src/java/org/sakaiproject/tool/gradebook/business/GradebookManager.java\nG    app/ui/src/java/org/sakaiproject/tool/gradebook/ui/ViewByStudentBean.java\nU    app/ui/src/java/org/sakaiproject/tool/gradebook/ui/GradebookSetupBean.java\nG    app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentDetailsBean.java\nC    app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java\nC    app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties\nG    app/ui/src/webapp/inc/assignmentEditing.jspf\nG    app/ui/src/webapp/gradebookSetup.jsp\nG    app/ui/src/webapp/assignmentDetails.jsp\nU    service/hibernate/src/hibernate/org/sakaiproject/tool/gradebook/GradeRecord.hbm.xml\nU    service/hibernate/src/java/org/sakaiproject/tool/gradebook/Assignment.java\nU    service/hibernate/src/java/org/sakaiproject/tool/gradebook/AssignmentGradeRecord.java\nU    service/hibernate/src/jaU    service/hibernate/src/jaU    service/hibernate/src/jaU    service/hibernate/src/jaU    service/hiberndebook/GradebookServiceHibernateImpl.java\nU    service/impl/src/java/org/sakaiproject/component/gradebook/BaseHibernateManager.java\nU    service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java\n\nsvn resolved app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java\nResolved conflicted state of app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java\n\nsvn resolved app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties\nResolved conflicted state of app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties\n\nsvn log -r 37479\n------------------------------------------------------------------------\nr37479 | cwen@iupui.edu | 2007-10-29 14:30:26 -0400 (Mon, 29 Oct 2007) | 5 lines\n\nhttp://128.196.219.68/jira/browse/SAK-10427\nSAK-10427\n=>\nallow creating non-calculated items without include those\nitems for course grade calculation or stats.\n------------------------------------------------------------------------\n\nsvn merge -r39393:39392 https://source.sakaiprojectsvn merge -r39393:39392 https://source.sakaiprojectsvn merge -r39393:39392 https://sousiness/impl/GradebookManagerHibernateImpl.java\n\nsvn resolved app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\nResolved conflicted state of app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\n\nsvn log -r 39393\n------------------------------------------------------------------------\nr39393 | wagnermr@iupui.edu | 2007-12-17 15:20:23 -0500 (Mon, 17 Dec 2007) | 3 lines\n\nSAK-12494\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12494\nViewing a non-calculated gb item in a gradebook with grade entry by letter or % results in stack trace\n------------------------------------------------------------------------\n\nsvn merge -r39362:39361 https://source.sakaiproject.org/svn/gradebook/trunk\nU    app/ui/src/java/org/sakaiproject/tool/gradebook/jsf/AssignmentPointsConverter.java\n\nsvn log -r 39362 \n------------------------------------------------------------------------\nr39362 | rjlowe@iupui.edu | 2007-12-17 10:53:09 -0500 (Mon, 17 Dec 2007) | 1 line\n\nSAK-12465 - Non-Standard grades are not showing up in GB table\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Jan  3 15:24:04 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 15:24:04 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 15:24:04 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby sleepers.mail.umich.edu () with ESMTP id m03KO3LK008561;\n\tThu, 3 Jan 2008 15:24:03 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 477D445B.21D7.20425 ; \n\t 3 Jan 2008 15:23:57 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D0FB7B93BE;\n\tThu,  3 Jan 2008 20:23:42 +0000 (GMT)\nMessage-ID: <200801032022.m03KMFfc004903@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 222\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 20:23:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3BEE842AC7\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 20:23:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03KMFYH004905\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 15:22:15 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03KMFfc004903\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 15:22:15 -0500\nDate: Thu, 3 Jan 2008 15:22:15 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39737 - assignment/branches/post-2-4\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 15:24:04 2008\nX-DSPAM-Confidence: 0.9875\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39737\n\nAuthor: zqian@umich.edu\nDate: 2008-01-03 15:22:14 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39737\n\nModified:\nassignment/branches/post-2-4/runconversion_readme.txt\nLog:\nupdate the runconversion_readme.txt file\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Jan  3 14:32:46 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 14:32:46 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 14:32:46 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby jacknife.mail.umich.edu () with ESMTP id m03JWiQk001230;\n\tThu, 3 Jan 2008 14:32:44 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 477D383C.D9FDA.777 ; \n\t 3 Jan 2008 14:32:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 68EFFB9850;\n\tThu,  3 Jan 2008 19:32:09 +0000 (GMT)\nMessage-ID: <200801031930.m03JUkCZ004841@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 784\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 19:31:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 39EA942AB7\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 19:31:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03JUks6004843\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 14:30:46 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03JUkCZ004841\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 14:30:46 -0500\nDate: Thu, 3 Jan 2008 14:30:46 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39736 - assignment/branches/sakai_2-3-x/assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 14:32:46 2008\nX-DSPAM-Confidence: 0.9867\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39736\n\nAuthor: zqian@umich.edu\nDate: 2008-01-03 14:30:45 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39736\n\nModified:\nassignment/branches/sakai_2-3-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_new_edit_assignment.vm\nLog:\nfix to SAK-12599:year limit in Assignment tool 2.4.1 version\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Jan  3 13:53:51 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 13:53:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 13:53:52 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby brazil.mail.umich.edu () with ESMTP id m03IrpLa025048;\n\tThu, 3 Jan 2008 13:53:51 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 477D2F36.8F808.4392 ; \n\t 3 Jan 2008 13:53:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 47217B9815;\n\tThu,  3 Jan 2008 18:36:35 +0000 (GMT)\nMessage-ID: <200801031849.m03InajQ004753@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 365\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 18:36:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6897C42AC8\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 18:50:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03InbUO004755\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 13:49:37 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03InajQ004753\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 13:49:37 -0500\nDate: Thu, 3 Jan 2008 13:49:37 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39735 - assignment/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 13:53:51 2008\nX-DSPAM-Confidence: 0.9903\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39735\n\nAuthor: zqian@umich.edu\nDate: 2008-01-03 13:49:35 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39735\n\nRemoved:\nassignment/branches/post-2-4-umich/\nLog:\nthe post-2-4-umich branch has been merged back to post-2-4 and is no longer needed.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Thu Jan  3 13:39:06 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 13:39:06 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 13:39:06 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby casino.mail.umich.edu () with ESMTP id m03Id5EQ009413;\n\tThu, 3 Jan 2008 13:39:05 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 477D2BBD.8B5A.10166 ; \n\t 3 Jan 2008 13:38:55 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C5DF9B974F;\n\tThu,  3 Jan 2008 18:29:50 +0000 (GMT)\nMessage-ID: <200801031837.m03IbPY7004727@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 220\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 18:29:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AE73242AB0\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 18:38:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03IbPfc004729\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 13:37:25 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03IbPY7004727\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 13:37:25 -0500\nDate: Thu, 3 Jan 2008 13:37:25 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r39734 - gradebook/branches/sakai_2-5-x/service/impl/src/java/org/sakaiproject/component/gradebook\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 13:39:06 2008\nX-DSPAM-Confidence: 0.7006\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39734\n\nAuthor: mmmay@indiana.edu\nDate: 2008-01-03 13:37:24 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39734\n\nModified:\ngradebook/branches/sakai_2-5-x/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java\nLog:\nsvn merge -r 39397:39398  https://source.sakaiproject.org/svn/gradebook/trunk\nU    service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java\nin-143-196:~/java/2-5/sakai_2-5-x/gradebook mmmay$ svn log -r 39397:39398  https://source.sakaiproject.org/svn/gradebook/trunk\n------------------------------------------------------------------------\nr39398 | wagnermr@iupui.edu | 2007-12-17 16:29:35 -0500 (Mon, 17 Dec 2007) | 3 lines\n\nSAK-10606\nhttp://bugs.sakaiproject.org/jira/browse/SAK-10606\nGB authorization error in logs when student accesses Forums\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Thu Jan  3 13:20:53 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 13:20:53 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 13:20:53 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby mission.mail.umich.edu () with ESMTP id m03IKrTF010248;\n\tThu, 3 Jan 2008 13:20:53 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 477D2778.AE112.13062 ; \n\t 3 Jan 2008 13:20:43 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7E449B9739;\n\tThu,  3 Jan 2008 18:11:34 +0000 (GMT)\nMessage-ID: <200801031819.m03IJA7j004645@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 94\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 18:11:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C49AB42AB7\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 18:20:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03IJAIX004647\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 13:19:10 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03IJA7j004645\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 13:19:10 -0500\nDate: Thu, 3 Jan 2008 13:19:10 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39733 - gradebook/branches/SAK-10427/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 13:20:53 2008\nX-DSPAM-Confidence: 0.9907\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39733\n\nAuthor: cwen@iupui.edu\nDate: 2008-01-03 13:19:09 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39733\n\nModified:\ngradebook/branches/SAK-10427/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\nLog:\nsvn merge -c 39728 https://source.sakaiproject.org/svn/gradebook/trunk\nU    app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\n\nsvn log -r 39728 https://source.sakaiproject.org/svn/gradebook/trunk\n------------------------------------------------------------------------\nr39728 | cwen@iupui.edu | 2008-01-03 13:06:41 -0500 (Thu, 03 Jan 2008) | 4 lines\n\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12005\n=>\nfix GB test again and turn on maven2 unit test for\nbuild.\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Jan  3 13:17:07 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 13:17:07 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 13:17:07 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby jacknife.mail.umich.edu () with ESMTP id m03IH6km021589;\n\tThu, 3 Jan 2008 13:17:06 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 477D269B.D3006.14486 ; \n\t 3 Jan 2008 13:17:02 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CB4F1B9778;\n\tThu,  3 Jan 2008 18:07:59 +0000 (GMT)\nMessage-ID: <200801031815.m03IFbue004618@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 388\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 18:07:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 915EA42AB7\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 18:16:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03IFbMM004620\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 13:15:37 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03IFbue004618\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 13:15:37 -0500\nDate: Thu, 3 Jan 2008 13:15:37 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39732 - site/branches/sakai_2-5-x/site-tool/tool/src/webapp/vm/adminsites\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 13:17:07 2008\nX-DSPAM-Confidence: 0.9886\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39732\n\nAuthor: zqian@umich.edu\nDate: 2008-01-03 13:15:35 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39732\n\nModified:\nsite/branches/sakai_2-5-x/site-tool/tool/src/webapp/vm/adminsites/chef_sites_list.vm\nLog:\nmerge fix to SAK-12431 into 2-5-x branch: svn merge -r 39728:39729 https://source.sakaiproject.org/svn/site/trunk/\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Jan  3 13:14:34 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 13:14:34 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 13:14:34 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby casino.mail.umich.edu () with ESMTP id m03IEYEe025569;\n\tThu, 3 Jan 2008 13:14:34 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 477D2602.8D8BF.8789 ; \n\t 3 Jan 2008 13:14:29 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7E24AB975A;\n\tThu,  3 Jan 2008 18:06:09 +0000 (GMT)\nMessage-ID: <200801031812.m03ICrFH004606@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 710\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 18:05:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4098942AB7\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 18:14:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03ICs7e004608\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 13:12:54 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03ICrFH004606\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 13:12:53 -0500\nDate: Thu, 3 Jan 2008 13:12:53 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39731 - site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/webapp/vm/sitebrowser\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 13:14:34 2008\nX-DSPAM-Confidence: 0.8495\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39731\n\nAuthor: zqian@umich.edu\nDate: 2008-01-03 13:12:52 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39731\n\nModified:\nsite-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/webapp/vm/sitebrowser/chef_sitebrowser_list.vm\nLog:\nmerge fix to SAK-12431 into 2-5-x branch: svn merge -r 39729:39730 https://source.sakaiproject.org/svn/site-manage/trunk/\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Jan  3 13:14:30 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 13:14:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 13:14:30 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby score.mail.umich.edu () with ESMTP id m03IEUkm018632;\n\tThu, 3 Jan 2008 13:14:30 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 477D25E9.9CF47.16689 ; \n\t 3 Jan 2008 13:14:06 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 22812B975D;\n\tThu,  3 Jan 2008 18:05:39 +0000 (GMT)\nMessage-ID: <200801031807.m03I7eg2004582@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 43\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 18:03:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 763D942AB7\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 18:08:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03I7ePp004584\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 13:07:40 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03I7eg2004582\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 13:07:40 -0500\nDate: Thu, 3 Jan 2008 13:07:40 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39730 - site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitebrowser\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 13:14:30 2008\nX-DSPAM-Confidence: 0.7606\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39730\n\nAuthor: zqian@umich.edu\nDate: 2008-01-03 13:07:38 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39730\n\nModified:\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitebrowser/chef_sitebrowser_list.vm\nLog:\nfix to SAK-12431:When site doesn't have a creator velocity variable is outputted\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Thu Jan  3 13:14:19 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 13:14:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 13:14:19 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby jacknife.mail.umich.edu () with ESMTP id m03IEIbb019289;\n\tThu, 3 Jan 2008 13:14:18 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 477D25ED.74FA0.14767 ; \n\t 3 Jan 2008 13:14:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5B632B975E;\n\tThu,  3 Jan 2008 18:05:40 +0000 (GMT)\nMessage-ID: <200801031806.m03I6g8Y004558@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 997\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 18:02:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7D80442AB7\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 18:07:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03I6gww004560\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 13:06:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03I6g8Y004558\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 13:06:42 -0500\nDate: Thu, 3 Jan 2008 13:06:42 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39728 - gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 13:14:19 2008\nX-DSPAM-Confidence: 0.9875\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39728\n\nAuthor: cwen@iupui.edu\nDate: 2008-01-03 13:06:41 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39728\n\nModified:\ngradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\nLog:\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12005\n=>\nfix GB test again and turn on maven2 unit test for\nbuild.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Jan  3 13:13:58 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 13:13:58 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 13:13:58 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby casino.mail.umich.edu () with ESMTP id m03IDveu025155;\n\tThu, 3 Jan 2008 13:13:57 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 477D25DD.49C16.12950 ; \n\t 3 Jan 2008 13:13:52 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A2371B9739;\n\tThu,  3 Jan 2008 18:05:29 +0000 (GMT)\nMessage-ID: <200801031806.m03I6pEt004570@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 89\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 18:02:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5773F42AB7\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 18:07:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03I6pVt004572\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 13:06:51 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03I6pEt004570\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 13:06:51 -0500\nDate: Thu, 3 Jan 2008 13:06:51 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39729 - site/trunk/site-tool/tool/src/webapp/vm/adminsites\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 13:13:58 2008\nX-DSPAM-Confidence: 0.8489\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39729\n\nAuthor: zqian@umich.edu\nDate: 2008-01-03 13:06:49 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39729\n\nModified:\nsite/trunk/site-tool/tool/src/webapp/vm/adminsites/chef_sites_list.vm\nLog:\nfix to SAK-12431:When site doesn't have a creator velocity variable is outputted\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Thu Jan  3 13:13:32 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 13:13:32 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 13:13:32 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby score.mail.umich.edu () with ESMTP id m03IDVEW018260;\n\tThu, 3 Jan 2008 13:13:31 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 477D25C5.EFCFE.9183 ; \n\t 3 Jan 2008 13:13:28 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D308EB9700;\n\tThu,  3 Jan 2008 18:04:40 +0000 (GMT)\nMessage-ID: <200801031804.m03I4lVU004546@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 571\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 18:02:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8638E42AB7\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 18:05:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03I4lVj004548\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 13:04:47 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03I4lVU004546\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 13:04:47 -0500\nDate: Thu, 3 Jan 2008 13:04:47 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39727 - gradebook/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 13:13:32 2008\nX-DSPAM-Confidence: 0.9854\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39727\n\nAuthor: cwen@iupui.edu\nDate: 2008-01-03 13:04:46 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39727\n\nAdded:\ngradebook/branches/SAK-10427/\nLog:\ncreate branch for SAK-10427. as of r39722.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Thu Jan  3 12:49:07 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 12:49:07 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 12:49:07 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby jacknife.mail.umich.edu () with ESMTP id m03Hn6EJ004324;\n\tThu, 3 Jan 2008 12:49:06 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 477D1FFB.C7CA6.21000 ; \n\t 3 Jan 2008 12:48:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id AD193B9598;\n\tThu,  3 Jan 2008 17:48:37 +0000 (GMT)\nMessage-ID: <200801031747.m03HlB1h004532@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 324\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 17:48:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9DF5342AA1\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 17:48:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03HlB9J004534\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 12:47:11 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03HlB1h004532\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 12:47:11 -0500\nDate: Thu, 3 Jan 2008 12:47:11 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [sakai] svn commit: r39726 - component/branches/SAK-8315/component-api/component/src/config/org/sakaiproject/config\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 12:49:07 2008\nX-DSPAM-Confidence: 0.7549\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39726\n\nAuthor: ray@media.berkeley.edu\nDate: 2008-01-03 12:47:08 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39726\n\nModified:\ncomponent/branches/SAK-8315/component-api/component/src/config/org/sakaiproject/config/sakai.properties\nLog:\nMerge -r38279:39599 from trunk\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Jan  3 12:32:45 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 12:32:45 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 12:32:45 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby awakenings.mail.umich.edu () with ESMTP id m03HWiim011776;\n\tThu, 3 Jan 2008 12:32:44 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 477D1C2E.ACBA7.29737 ; \n\t 3 Jan 2008 12:32:33 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 87832B96A1;\n\tThu,  3 Jan 2008 17:32:14 +0000 (GMT)\nMessage-ID: <200801031730.m03HUeEg004479@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 21\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 17:31:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1D56842A72\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 17:31:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03HUe0M004481\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 12:30:40 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03HUeEg004479\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 12:30:40 -0500\nDate: Thu, 3 Jan 2008 12:30:40 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 12:32:45 2008\nX-DSPAM-Confidence: 0.9877\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39725\n\nAuthor: zqian@umich.edu\nDate: 2008-01-03 12:30:37 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39725\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-bundles/assignment.properties\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_new_edit_assignment.vm\nLog:\nmerge the fix to SAK-12421 into 2-5-x branch: svn merge -r 39722:39723 https://source.sakaiproject.org/svn/assignment/trunk/\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Jan  3 12:28:03 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 12:28:03 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 12:28:03 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby score.mail.umich.edu () with ESMTP id m03HS2KJ023366;\n\tThu, 3 Jan 2008 12:28:02 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 477D1B1A.6689C.7216 ; \n\t 3 Jan 2008 12:27:57 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 42C1DB964E;\n\tThu,  3 Jan 2008 17:27:54 +0000 (GMT)\nMessage-ID: <200801031726.m03HQUQ6004462@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 295\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 17:27:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C8CA01D62B\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 17:27:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03HQU97004464\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 12:26:30 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03HQUQ6004462\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 12:26:30 -0500\nDate: Thu, 3 Jan 2008 12:26:30 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 12:28:03 2008\nX-DSPAM-Confidence: 0.9881\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39724\n\nAuthor: zqian@umich.edu\nDate: 2008-01-03 12:26:25 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39724\n\nModified:\nassignment/branches/post-2-4/assignment-bundles/assignment.properties\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_new_edit_assignment.vm\nLog:\nmerge the fix to SAK-12421 into post-2-4 branch: svn merge -r 39722:39723 https://source.sakaiproject.org/svn/assignment/trunk/\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Jan  3 12:24:50 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 12:24:50 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 12:24:50 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby godsend.mail.umich.edu () with ESMTP id m03HOnLx001048;\n\tThu, 3 Jan 2008 12:24:49 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 477D1A5B.85549.28589 ; \n\t 3 Jan 2008 12:24:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6E7B9B961F;\n\tThu,  3 Jan 2008 17:24:45 +0000 (GMT)\nMessage-ID: <200801031723.m03HNIp2004441@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 859\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 17:24:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E41C41D62B\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 17:24:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03HNIPD004443\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 12:23:18 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03HNIp2004441\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 12:23:18 -0500\nDate: Thu, 3 Jan 2008 12:23:18 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 12:24:50 2008\nX-DSPAM-Confidence: 0.9864\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39723\n\nAuthor: zqian@umich.edu\nDate: 2008-01-03 12:23:13 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39723\n\nModified:\nassignment/trunk/assignment-bundles/assignment.properties\nassignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nassignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_new_edit_assignment.vm\nLog:\nfix to SAK-12421: grading settings error cause assignmets to be dropped from gradebook\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Thu Jan  3 11:44:41 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 11:44:41 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 11:44:41 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby fan.mail.umich.edu () with ESMTP id m03Gie0u020858;\n\tThu, 3 Jan 2008 11:44:40 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 477D10EC.6EFE6.11423 ; \n\t 3 Jan 2008 11:44:36 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B598AB9592;\n\tThu,  3 Jan 2008 16:44:31 +0000 (GMT)\nMessage-ID: <200801031643.m03Gh1r2004386@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 464\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 16:44:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4765438EC2\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 16:44:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03Gh29d004388\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 11:43:02 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03Gh1r2004386\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 11:43:01 -0500\nDate: Thu, 3 Jan 2008 11:43:01 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39722 - in gradebook/trunk/app: business/src/java/org/sakaiproject/tool/gradebook/business/impl standalone-app\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 11:44:41 2008\nX-DSPAM-Confidence: 0.9870\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39722\n\nAuthor: cwen@iupui.edu\nDate: 2008-01-03 11:43:00 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39722\n\nModified:\ngradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\ngradebook/trunk/app/standalone-app/pom.xml\nLog:\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12005\n=>\nfix GB test again and turn on maven2 unit test for\nbuild.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Jan  3 11:28:41 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 11:28:41 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 11:28:41 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby godsend.mail.umich.edu () with ESMTP id m03GSfDF002740;\n\tThu, 3 Jan 2008 11:28:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 477D0D31.5AE7.8943 ; \n\t 3 Jan 2008 11:28:35 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 03C205ABD7;\n\tThu,  3 Jan 2008 16:28:34 +0000 (GMT)\nMessage-ID: <200801031627.m03GR5UM004357@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 898\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 16:28:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0DD7B42A42\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 16:28:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03GR5W6004359\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 11:27:05 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03GR5UM004357\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 11:27:05 -0500\nDate: Thu, 3 Jan 2008 11:27:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39721 - in site-manage/trunk/site-manage-tool/tool/src: java/org/sakaiproject/site/tool webapp/vm/sitesetup\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 11:28:41 2008\nX-DSPAM-Confidence: 0.8493\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39721\n\nAuthor: zqian@umich.edu\nDate: 2008-01-03 11:27:03 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39721\n\nModified:\nsite-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-type.vm\nLog:\nfix to SAK-12324:Ability to limit course creation\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gopal.ramasammycook@gmail.com Thu Jan  3 11:12:18 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 11:12:18 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 11:12:18 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby awakenings.mail.umich.edu () with ESMTP id m03GCHhZ027832;\n\tThu, 3 Jan 2008 11:12:17 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 477D095B.8A20D.22970 ; \n\t 3 Jan 2008 11:12:14 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 613D7B953F;\n\tThu,  3 Jan 2008 16:11:35 +0000 (GMT)\nMessage-ID: <200801031610.m03GAkl3004326@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 578\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 16:11:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5B6B942A72\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 16:11:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03GAkqT004328\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 11:10:46 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03GAkl3004326\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 11:10:46 -0500\nDate: Thu, 3 Jan 2008 11:10:46 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f\nTo: source@collab.sakaiproject.org\nFrom: gopal.ramasammycook@gmail.com\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 11:12:18 2008\nX-DSPAM-Confidence: 0.9837\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39720\n\nAuthor: gopal.ramasammycook@gmail.com\nDate: 2008-01-03 11:10:02 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39720\n\nModified:\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages.properties\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/QuestionScoresBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/SubmissionStatusBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/TotalScoresBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/QuestionScoreListener.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/TotalScoreListener.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/integrated/SectionAwareServiceHelperImpl.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/PublishedAssessmentService.java\nLog:\nSAK-12065 Group Release. Gopal\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gsilver@umich.edu Thu Jan  3 10:31:13 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 10:31:13 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 10:31:13 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby mission.mail.umich.edu () with ESMTP id m03FVDYb007589;\n\tThu, 3 Jan 2008 10:31:13 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 477CFFAB.BC538.9751 ; \n\t 3 Jan 2008 10:30:54 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id F2DF3B94C6;\n\tThu,  3 Jan 2008 15:28:34 +0000 (GMT)\nMessage-ID: <200801031528.m03FSpXg004260@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 42\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 15:28:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 65FB63EA95\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 15:29:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03FSpDo004262\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 10:28:51 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03FSpXg004260\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 10:28:51 -0500\nDate: Thu, 3 Jan 2008 10:28:51 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gsilver@umich.edu\nSubject: [sakai] svn commit: r39719 - announcement/trunk/announcement-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 10:31:13 2008\nX-DSPAM-Confidence: 0.8479\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39719\n\nAuthor: gsilver@umich.edu\nDate: 2008-01-03 10:28:50 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39719\n\nModified:\nannouncement/trunk/announcement-tool/tool/src/bundle/announcement.properties\nLog:\nSAK-12590\nhttp://jira.sakaiproject.org/jira/browse/SAK-12590\n- left moot (unused) entries commented for now\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gsilver@umich.edu Thu Jan  3 10:28:16 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 10:28:16 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 10:28:16 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby brazil.mail.umich.edu () with ESMTP id m03FSGu7002980;\n\tThu, 3 Jan 2008 10:28:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 477CFF09.6EFD1.11661 ; \n\t 3 Jan 2008 10:28:13 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2365FB94AD;\n\tThu,  3 Jan 2008 15:26:16 +0000 (GMT)\nMessage-ID: <200801031526.m03FQhmF004248@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 39\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 15:25:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 60A9A3EA95\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 15:27:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03FQhu3004250\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 10:26:43 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03FQhmF004248\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 10:26:43 -0500\nDate: Thu, 3 Jan 2008 10:26:43 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gsilver@umich.edu\nSubject: [sakai] svn commit: r39718 - calendar/trunk/calendar-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 10:28:16 2008\nX-DSPAM-Confidence: 0.9852\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39718\n\nAuthor: gsilver@umich.edu\nDate: 2008-01-03 10:26:42 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39718\n\nModified:\ncalendar/trunk/calendar-tool/tool/src/bundle/calendar.properties\nLog:\nSAK-12591\nhttp://jira.sakaiproject.org/jira/browse/SAK-12591\n- left moot (unused) entries commented for now\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stuart.freeman@et.gatech.edu Thu Jan  3 10:23:05 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 10:23:05 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 10:23:05 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby panther.mail.umich.edu () with ESMTP id m03FN42d026581;\n\tThu, 3 Jan 2008 10:23:04 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 477CFDCF.5338D.4507 ; \n\t 3 Jan 2008 10:22:58 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D222DB9497;\n\tThu,  3 Jan 2008 15:20:42 +0000 (GMT)\nMessage-ID: <200801031521.m03FLXtP004230@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 578\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 15:20:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D888042A42\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 15:22:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03FLYv5004232\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 10:21:34 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03FLXtP004230\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 10:21:33 -0500\nDate: Thu, 3 Jan 2008 10:21:33 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: stuart.freeman@et.gatech.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 10:23:05 2008\nX-DSPAM-Confidence: 0.9928\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39717\n\nAuthor: stuart.freeman@et.gatech.edu\nDate: 2008-01-03 10:21:29 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39717\n\nAdded:\npolls/branches/sakai_2-4-x/tool/src/webapp/WEB-INF/classes/\npolls/branches/sakai_2-4-x/tool/src/webapp/WEB-INF/classes/log4j.properties\nRemoved:\npolls/branches/sakai_2-4-x/tool/src/webapp/WEB-INF/classes/log4j.properties\nModified:\npolls/branches/sakai_2-4-x/tool/pom.xml\npolls/branches/sakai_2-4-x/tool/project.xml\npolls/branches/sakai_2-4-x/tool/src/bundle/org/sakaiproject/poll/bundle/Messages.properties\npolls/branches/sakai_2-4-x/tool/src/java/org/sakaiproject/poll/tool/params/PollToolBean.java\npolls/branches/sakai_2-4-x/tool/src/java/org/sakaiproject/poll/tool/validators/OptionValidator.java\nLog:\nSAK-11704 don't allow creation of polls with empty questions\n\n--(stuart@mothra:pts/2)----------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/polls)--\n--(0933:Thu,03 Jan 08:$)-- svn merge -r35792:35793 https://source.sakaiproject.org/svn/polls/trunk .\nC    tool/src/java/org/sakaiproject/poll/tool/params/PollToolBean.java\nC    tool/src/bundle/org/sakaiproject/poll/bundle/Messages.properties\nSkipped missing target: 'tool/src/webapp/classes'\nA    tool/src/webapp/WEB-INF/classes\nA    tool/src/webapp/WEB-INF/classes/log4j.properties\n--(stuart@mothra:pts/2)----------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/polls)--\n--(0934:Thu,03 Jan 08:$)-- ^merge^log\nsvn log -r35792:35793 https://source.sakaiproject.org/svn/polls/trunk .\n------------------------------------------------------------------------\nr35793 | david.horwitz@uct.ac.za | 2007-09-26 05:26:53 -0400 (Wed, 26 Sep 2007) | 2 lines\n\nSAK-11704 Validate for empty question text\nSAK-10987 correct placement of option validation + supress stack trace\n------------------------------------------------------------------------\n--(stuart@mothra:pts/2)----------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/polls)--\n--(1014:Thu,03 Jan 08:$)-- svn merge -r38152:38153 https://source.sakaiproject.org/svn/polls/trunk .\nU    tool/src/java/org/sakaiproject/poll/tool/validators/OptionValidator.java\n--(stuart@mothra:pts/2)----------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/polls)--\n--(1015:Thu,03 Jan 08:$)-- ^merge^log\nsvn log -r38152:38153 https://source.sakaiproject.org/svn/polls/trunk .\n------------------------------------------------------------------------\nr38153 | david.horwitz@uct.ac.za | 2007-11-14 01:53:07 -0500 (Wed, 14 Nov 2007) | 1 line\n\nSAK-11704 trim value before testing for being empty\n------------------------------------------------------------------------\n--(stuart@mothra:pts/2)----------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/polls)--\n--(1016:Thu,03 Jan 08:$)-- svn merge -r39547:39548 https://source.sakaiproject.org/svn/polls/trunk .\nG    tool/src/java/org/sakaiproject/poll/tool/validators/OptionValidator.java\nC    tool/pom.xml\n--(stuart@mothra:pts/2)----------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/polls)--\n--(1017:Thu,03 Jan 08:$)-- ^merge^log\nsvn log -r39547:39548 https://source.sakaiproject.org/svn/polls/trunk .\n------------------------------------------------------------------------\nr39548 | david.horwitz@uct.ac.za | 2007-12-20 10:00:05 -0500 (Thu, 20 Dec 2007) | 1 line\n\nSAK-11704 now check for the empty strings from fckeditor\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Jan  3 10:22:18 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 10:22:18 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 10:22:18 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby panther.mail.umich.edu () with ESMTP id m03FMHbh026139;\n\tThu, 3 Jan 2008 10:22:17 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 477CFDA4.17A4A.7348 ; \n\t 3 Jan 2008 10:22:14 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D50FEB9487;\n\tThu,  3 Jan 2008 15:19:38 +0000 (GMT)\nMessage-ID: <200801031519.m03FJsfm004218@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 557\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 15:19:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9640842A42\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 15:21:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03FJsAY004220\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 10:19:54 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03FJsfm004218\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 10:19:54 -0500\nDate: Thu, 3 Jan 2008 10:19:54 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39716 - site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 10:22:18 2008\nX-DSPAM-Confidence: 0.9898\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39716\n\nAuthor: zqian@umich.edu\nDate: 2008-01-03 10:19:53 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39716\n\nModified:\nsite-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nLog:\nfix to SAK-12532:Better log message when no setup.request from site setup.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gsilver@umich.edu Thu Jan  3 10:08:15 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 10:08:15 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 10:08:15 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby sleepers.mail.umich.edu () with ESMTP id m03F8FlV014814;\n\tThu, 3 Jan 2008 10:08:15 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 477CFA3D.3F06F.810 ; \n\t 3 Jan 2008 10:07:44 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 47CA15ABD7;\n\tThu,  3 Jan 2008 15:07:40 +0000 (GMT)\nMessage-ID: <200801031506.m03F6Ctn004182@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 400\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 15:07:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A8B81429D3\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 15:07:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03F6CJx004184\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 10:06:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03F6Ctn004182\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 10:06:12 -0500\nDate: Thu, 3 Jan 2008 10:06:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gsilver@umich.edu\nSubject: [sakai] svn commit: r39715 - site-manage/trunk/site-manage-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 10:08:15 2008\nX-DSPAM-Confidence: 0.9855\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39715\n\nAuthor: gsilver@umich.edu\nDate: 2008-01-03 10:06:11 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39715\n\nModified:\nsite-manage/trunk/site-manage-tool/tool/src/bundle/sitebrowser.properties\nLog:\nSAK-12594\nhttp://jira.sakaiproject.org/jira/browse/SAK-12594\n- left moot (unused) entries commented for now\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gsilver@umich.edu Thu Jan  3 10:06:50 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 10:06:50 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 10:06:50 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby jacknife.mail.umich.edu () with ESMTP id m03F6nqE012415;\n\tThu, 3 Jan 2008 10:06:49 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 477CFA02.482EF.2284 ; \n\t 3 Jan 2008 10:06:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5F7EEB9464;\n\tThu,  3 Jan 2008 15:06:42 +0000 (GMT)\nMessage-ID: <200801031505.m03F534R004169@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 510\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 15:06:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 298DE42A2F\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 15:06:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03F53Q1004171\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 10:05:03 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03F534R004169\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 10:05:03 -0500\nDate: Thu, 3 Jan 2008 10:05:03 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gsilver@umich.edu\nSubject: [sakai] svn commit: r39714 - site-manage/trunk/site-manage-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 10:06:50 2008\nX-DSPAM-Confidence: 0.8484\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39714\n\nAuthor: gsilver@umich.edu\nDate: 2008-01-03 10:05:02 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39714\n\nModified:\nsite-manage/trunk/site-manage-tool/tool/src/bundle/membership.properties\nLog:\nSAK-12593\nhttp://jira.sakaiproject.org/jira/browse/SAK-12593\n- left moot (unused) entries commented for now\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gsilver@umich.edu Thu Jan  3 10:05:08 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 10:05:08 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 10:05:08 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby faithful.mail.umich.edu () with ESMTP id m03F578A007456;\n\tThu, 3 Jan 2008 10:05:07 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 477CF99E.75B7.2438 ; \n\t 3 Jan 2008 10:05:04 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7B30FAE3A5;\n\tThu,  3 Jan 2008 15:05:07 +0000 (GMT)\nMessage-ID: <200801031503.m03F3cRt004144@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 695\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 15:04:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DCFD7429D3\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 15:04:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03F3c1c004146\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 10:03:38 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03F3cRt004144\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 10:03:38 -0500\nDate: Thu, 3 Jan 2008 10:03:38 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gsilver@umich.edu\nSubject: [sakai] svn commit: r39713 - site-manage/trunk/site-manage-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 10:05:08 2008\nX-DSPAM-Confidence: 0.9856\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39713\n\nAuthor: gsilver@umich.edu\nDate: 2008-01-03 10:03:36 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39713\n\nModified:\nsite-manage/trunk/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties\nLog:\nSAK-12523\nhttp://jira.sakaiproject.org/jira/browse/SAK-12523\n- left moot (unused) entries commented for now\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Jan  3 10:02:34 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 10:02:34 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 10:02:34 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby awakenings.mail.umich.edu () with ESMTP id m03F2Xgc020626;\n\tThu, 3 Jan 2008 10:02:33 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 477CF903.80B22.2743 ; \n\t 3 Jan 2008 10:02:30 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9A203B9475;\n\tThu,  3 Jan 2008 15:02:32 +0000 (GMT)\nMessage-ID: <200801031501.m03F11ZP004123@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 726\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 15:02:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2F730429D3\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 15:02:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03F117c004126\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 10:01:01 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03F11ZP004123\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 10:01:01 -0500\nDate: Thu, 3 Jan 2008 10:01:01 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39712 - in authz/trunk/authz-tool: . tool tool/src/bundle tool/src/java/org/sakaiproject/authz/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 10:02:34 2008\nX-DSPAM-Confidence: 0.9892\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39712\n\nAuthor: zqian@umich.edu\nDate: 2008-01-03 10:00:58 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39712\n\nModified:\nauthz/trunk/authz-tool/.classpath\nauthz/trunk/authz-tool/tool/pom.xml\nauthz/trunk/authz-tool/tool/src/bundle/authz-tool.properties\nauthz/trunk/authz-tool/tool/src/java/org/sakaiproject/authz/tool/RealmsAction.java\nLog:\nfix 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.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Thu Jan  3 09:31:30 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 09:31:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 09:31:30 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby godsend.mail.umich.edu () with ESMTP id m03EVTiv001667;\n\tThu, 3 Jan 2008 09:31:29 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 477CF1BA.DF8C2.8558 ; \n\t 3 Jan 2008 09:31:25 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 590D86144A;\n\tThu,  3 Jan 2008 14:31:21 +0000 (GMT)\nMessage-ID: <200801031429.m03ETqAT004022@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 847\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 14:31:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 033EA3FAD8\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 14:30:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03ETqm6004024\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 09:29:52 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03ETqAT004022\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 09:29:52 -0500\nDate: Thu, 3 Jan 2008 09:29:52 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [sakai] svn commit: r39711 - in gradebook/trunk/service: api/src/java/org/sakaiproject/service/gradebook/shared impl/src/java/org/sakaiproject/component/gradebook\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 09:31:30 2008\nX-DSPAM-Confidence: 0.8484\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39711\n\nAuthor: wagnermr@iupui.edu\nDate: 2008-01-03 09:29:50 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39711\n\nModified:\ngradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java\ngradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java\nLog:\nSAK-12175\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12175\nCreate methods required for gb integration with the Assignment2 tool\nremove previously added getAllGradebookItems because unnecessary\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stuart.freeman@et.gatech.edu Thu Jan  3 09:25:07 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 09:25:07 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 09:25:07 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby mission.mail.umich.edu () with ESMTP id m03EP72M031643;\n\tThu, 3 Jan 2008 09:25:07 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 477CF03C.1B18C.30257 ; \n\t 3 Jan 2008 09:25:03 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 361DD6AA2F;\n\tThu,  3 Jan 2008 14:25:05 +0000 (GMT)\nMessage-ID: <200801031423.m03ENc58004008@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 701\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 14:24:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CC2C03FAD8\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 14:24:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03ENcqf004010\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 09:23:38 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03ENc58004008\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 09:23:38 -0500\nDate: Thu, 3 Jan 2008 09:23:38 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: stuart.freeman@et.gatech.edu\nSubject: [sakai] svn commit: r39710 - reference/branches/sakai_2-4-x/docs/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 09:25:07 2008\nX-DSPAM-Confidence: 0.8518\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39710\n\nAuthor: stuart.freeman@et.gatech.edu\nDate: 2008-01-03 09:23:36 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39710\n\nAdded:\nreference/branches/sakai_2-4-x/docs/conversion/sakai_2_4_0-2_4_x_mysql_conversion_005.sql\nreference/branches/sakai_2-4-x/docs/conversion/sakai_2_4_0-2_4_x_oracle_conversion_005.sql\nLog:\nSAK-12429 gradebook performance issue\n\n--(0920:Thu,03 Jan 08:$)-- vi sakai_2_4_0-2_4_x_mysql_conversion_005.sql \n--(stuart@mothra:pts/2)--------------------------------------------------(/home/stuart/src/sakai_2-4-x/reference/docs/conversion)--\n--(0921:Thu,03 Jan 08:$)-- vi sakai_2_4_0-2_4_x_oracle_conversion_005.sql \n--(stuart@mothra:pts/2)--------------------------------------------------(/home/stuart/src/sakai_2-4-x/reference/docs/conversion)--\n--(0922:Thu,03 Jan 08:$)-- svn add !$\nsvn add sakai_2_4_0-2_4_x_oracle_conversion_005.sql\nA         sakai_2_4_0-2_4_x_oracle_conversion_005.sql\n--(stuart@mothra:pts/2)--------------------------------------------------(/home/stuart/src/sakai_2-4-x/reference/docs/conversion)--\n--(0923:Thu,03 Jan 08:$)-- ^oracle^mysql\nsvn add sakai_2_4_0-2_4_x_mysql_conversion_005.sql\nA         sakai_2_4_0-2_4_x_mysql_conversion_005.sql\n--(stuart@mothra:pts/2)--------------------------------------------------(/home/stuart/src/sakai_2-4-x/reference/docs/conversion)--\n--(0923:Thu,03 Jan 08:$)-- svn log -r39153 https://source.sakaiproject.org/svn/reference/trunk\n------------------------------------------------------------------------\nr39153 | cwen@iupui.edu | 2007-12-12 15:45:36 -0500 (Wed, 12 Dec 2007) | 1 line\n\nSAK-12429 => add index for gradebook.\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom tnguyen@iupui.edu Thu Jan  3 09:22:37 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 09:22:37 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 09:22:37 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby jacknife.mail.umich.edu () with ESMTP id m03EMbM0021928;\n\tThu, 3 Jan 2008 09:22:37 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 477CEFA7.4BD76.20123 ; \n\t 3 Jan 2008 09:22:34 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 34DBBB93FC;\n\tThu,  3 Jan 2008 14:22:34 +0000 (GMT)\nMessage-ID: <200801031420.m03EKxOB003996@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 137\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 14:22:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 35CFB3875D\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 14:22:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03EKxoR003998\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 09:20:59 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03EKxOB003996\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 09:20:59 -0500\nDate: Thu, 3 Jan 2008 09:20:59 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to tnguyen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: tnguyen@iupui.edu\nSubject: [sakai] svn commit: r39709 - oncourse/trunk/src/siterequest/src/java/edu/iu/oncourse/siterequest\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 09:22:37 2008\nX-DSPAM-Confidence: 0.8483\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39709\n\nAuthor: tnguyen@iupui.edu\nDate: 2008-01-03 09:20:58 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39709\n\nModified:\noncourse/trunk/src/siterequest/src/java/edu/iu/oncourse/siterequest/SiteRequestManager.java\nLog:\nONC-244 - Site Request Form / Add department CTL to the department list dropdown.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stuart.freeman@et.gatech.edu Thu Jan  3 09:15:57 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 09:15:57 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 09:15:57 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby panther.mail.umich.edu () with ESMTP id m03EFv2W020903;\n\tThu, 3 Jan 2008 09:15:57 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 477CEE17.CE69E.15998 ; \n\t 3 Jan 2008 09:15:54 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 87E27B93DC;\n\tThu,  3 Jan 2008 14:15:50 +0000 (GMT)\nMessage-ID: <200801031414.m03EEOKY003968@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 292\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 14:15:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 97A6242A16\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 14:15:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03EEO8f003970\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 09:14:24 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03EEOKY003968\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 09:14:24 -0500\nDate: Thu, 3 Jan 2008 09:14:24 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: stuart.freeman@et.gatech.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 09:15:57 2008\nX-DSPAM-Confidence: 0.8524\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39708\n\nAuthor: stuart.freeman@et.gatech.edu\nDate: 2008-01-03 09:14:20 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39708\n\nAdded:\ngradebook/branches/sakai_2-4-x/app/business/src/sql/mysql/SAK-12429.sql\ngradebook/branches/sakai_2-4-x/app/business/src/sql/oracle/SAK-12429.sql\nModified:\ngradebook/branches/sakai_2-4-x/service/hibernate/src/hibernate/org/sakaiproject/tool/gradebook/GradingEvent.hbm.xml\nLog:\nSAK-12429 gradebook performance issue\n\n--(stuart@mothra:pts/2)------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/gradebook)--\n--(0859:Thu,03 Jan 08:$)-- svn merge -r 39136:39137 https://source.sakaiproject.org/svn/gradebook/trunk .\nA    app/business/src/sql/mysql/SAK-12429.sql\nA    app/business/src/sql/oracle/SAK-12429.sql\n--(stuart@mothra:pts/2)------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/gradebook)--\n--(0859:Thu,03 Jan 08:$)-- ^merge^log\nsvn log -r 39136:39137 https://source.sakaiproject.org/svn/gradebook/trunk .\n------------------------------------------------------------------------\nr39137 | cwen@iupui.edu | 2007-12-12 10:05:59 -0500 (Wed, 12 Dec 2007) | 1 line\n\nSAK-12429 => add index for improving performance.\n------------------------------------------------------------------------\n--(stuart@mothra:pts/2)------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/gradebook)--\n--(0859:Thu,03 Jan 08:$)-- svn merge -r 39138:39139 https://source.sakaiproject.org/svn/gradebook/trunk .\nU    service/hibernate/src/hibernate/org/sakaiproject/tool/gradebook/GradingEvent.hbm.xml\n--(stuart@mothra:pts/2)------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/gradebook)--\n--(0900:Thu,03 Jan 08:$)-- ^merge^log\nsvn log -r 39138:39139 https://source.sakaiproject.org/svn/gradebook/trunk .\n------------------------------------------------------------------------\nr39138 | wagnermr@iupui.edu | 2007-12-12 10:10:30 -0500 (Wed, 12 Dec 2007) | 3 lines\n\nSAK-12432\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12432\nCircular dependency between GradebookService and facade Authz\n------------------------------------------------------------------------\nr39139 | cwen@iupui.edu | 2007-12-12 10:41:58 -0500 (Wed, 12 Dec 2007) | 2 lines\n\nSAK-12429 =>\nadd index to hibernate mapping.\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Thu Jan  3 09:13:52 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 09:13:52 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 09:13:52 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby mission.mail.umich.edu () with ESMTP id m03EDpvG027055;\n\tThu, 3 Jan 2008 09:13:51 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 477CED96.34B62.9184 ; \n\t 3 Jan 2008 09:13:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B6E20B93C0;\n\tThu,  3 Jan 2008 14:13:43 +0000 (GMT)\nMessage-ID: <200801031412.m03ECEFD003956@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 679\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 14:13:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3D4E142A14\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 14:13:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03ECEs6003958\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 09:12:14 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03ECEFD003956\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 09:12:14 -0500\nDate: Thu, 3 Jan 2008 09:12:14 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [sakai] svn commit: r39707 - msgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 09:13:52 2008\nX-DSPAM-Confidence: 0.9879\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39707\n\nAuthor: wagnermr@iupui.edu\nDate: 2008-01-03 09:12:13 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39707\n\nModified:\nmsgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums/DiscussionForumTool.java\nLog:\nSAK-10606\nhttp://jira.sakaiproject.org/jira/browse/SAK-10606\nGB authorization error in logs when student accesses Forums\nBacking out logic changes in forums to resolve separately\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gopal.ramasammycook@gmail.com Thu Jan  3 08:44:20 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 03 Jan 2008 08:44:20 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 03 Jan 2008 08:44:20 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby score.mail.umich.edu () with ESMTP id m03DiJZw029706;\n\tThu, 3 Jan 2008 08:44:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 477CE6AD.1ED85.19312 ; \n\t 3 Jan 2008 08:44:16 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 59A62B937F;\n\tThu,  3 Jan 2008 13:41:28 +0000 (GMT)\nMessage-ID: <200801031342.m03DgeVK003283@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 829\n          for <source@collab.sakaiproject.org>;\n          Thu, 3 Jan 2008 13:41:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2C9FA42A02\n\tfor <source@collab.sakaiproject.org>; Thu,  3 Jan 2008 13:43:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m03Dgeai003285\n\tfor <source@collab.sakaiproject.org>; Thu, 3 Jan 2008 08:42:40 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m03DgeVK003283\n\tfor source@collab.sakaiproject.org; Thu, 3 Jan 2008 08:42:40 -0500\nDate: Thu, 3 Jan 2008 08:42:40 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f\nTo: source@collab.sakaiproject.org\nFrom: gopal.ramasammycook@gmail.com\nSubject: [sakai] svn commit: r39706 - in sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui: bean/evaluation listener/evaluation\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Jan  3 08:44:20 2008\nX-DSPAM-Confidence: 0.9843\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39706\n\nAuthor: gopal.ramasammycook@gmail.com\nDate: 2008-01-03 08:42:24 -0500 (Thu, 03 Jan 2008)\nNew Revision: 39706\n\nModified:\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramScoresBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/HistogramListener.java\nLog:\nGopal - Stats descrimination calculation update.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Wed Jan  2 18:47:10 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 18:47:10 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 18:47:10 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby brazil.mail.umich.edu () with ESMTP id m02Nl9iU002974;\n\tWed, 2 Jan 2008 18:47:09 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 477C2278.35062.21939 ; \n\t 2 Jan 2008 18:47:06 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DBFC374647;\n\tWed,  2 Jan 2008 23:47:03 +0000 (GMT)\nMessage-ID: <200801022345.m02NjcHH001850@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 953\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 23:46:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 700324295B\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 23:46:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02NjcDw001852\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 18:45:38 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02NjcHH001850\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 18:45:38 -0500\nDate: Wed, 2 Jan 2008 18:45:38 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [sakai] svn commit: r39697 - course-management/branches/sakai_2-5-x/cm-impl/hibernate-impl/impl/src/java/org/sakaiproject/coursemanagement/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 18:47:10 2008\nX-DSPAM-Confidence: 0.7568\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39697\n\nAuthor: ray@media.berkeley.edu\nDate: 2008-01-02 18:45:35 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39697\n\nModified:\ncourse-management/branches/sakai_2-5-x/cm-impl/hibernate-impl/impl/src/java/org/sakaiproject/coursemanagement/impl/SampleDataLoader.java\nLog:\nSAK-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\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Wed Jan  2 18:10:17 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 18:10:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 18:10:17 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby awakenings.mail.umich.edu () with ESMTP id m02NAFG7026631;\n\tWed, 2 Jan 2008 18:10:15 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 477C19D2.2B96D.25992 ; \n\t 2 Jan 2008 18:10:12 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 453924EB73;\n\tWed,  2 Jan 2008 23:10:06 +0000 (GMT)\nMessage-ID: <200801022308.m02N8fmL001796@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 577\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 23:09:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A327042955\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 23:09:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02N8fxN001798\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 18:08:41 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02N8fmL001796\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 18:08:41 -0500\nDate: Wed, 2 Jan 2008 18:08:41 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [sakai] svn commit: r39696 - course-management/trunk/cm-impl/hibernate-impl/impl/src/java/org/sakaiproject/coursemanagement/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 18:10:17 2008\nX-DSPAM-Confidence: 0.7568\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39696\n\nAuthor: ray@media.berkeley.edu\nDate: 2008-01-02 18:08:37 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39696\n\nModified:\ncourse-management/trunk/cm-impl/hibernate-impl/impl/src/java/org/sakaiproject/coursemanagement/impl/SampleDataLoader.java\nLog:\nSAK-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\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Wed Jan  2 17:04:51 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 17:04:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 17:04:51 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby flawless.mail.umich.edu () with ESMTP id m02M4o6P029828;\n\tWed, 2 Jan 2008 17:04:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 477C0A7C.CEE01.30848 ; \n\t 2 Jan 2008 17:04:47 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CA469B0034;\n\tWed,  2 Jan 2008 22:04:42 +0000 (GMT)\nMessage-ID: <200801022203.m02M3QKD001687@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 314\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 22:04:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D1F0E42959\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 22:04:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02M3QwZ001689\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 17:03:26 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02M3QKD001687\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 17:03:26 -0500\nDate: Wed, 2 Jan 2008 17:03:26 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39695 - site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 17:04:51 2008\nX-DSPAM-Confidence: 0.7619\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39695\n\nAuthor: zqian@umich.edu\nDate: 2008-01-02 17:03:24 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39695\n\nModified:\nsite-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nLog:\nfix 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. \n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Wed Jan  2 17:02:33 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 17:02:33 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 17:02:33 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby panther.mail.umich.edu () with ESMTP id m02M2Xb2024661;\n\tWed, 2 Jan 2008 17:02:33 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 477C09F4.392F1.16075 ; \n\t 2 Jan 2008 17:02:30 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CD877B72DE;\n\tWed,  2 Jan 2008 22:02:25 +0000 (GMT)\nMessage-ID: <200801022201.m02M15vH001675@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 353\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 22:02:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4374942959\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 22:02:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02M15Dh001677\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 17:01:05 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02M15vH001675\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 17:01:05 -0500\nDate: Wed, 2 Jan 2008 17:01:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 17:02:33 2008\nX-DSPAM-Confidence: 0.9871\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39694\n\nAuthor: wagnermr@iupui.edu\nDate: 2008-01-02 17:01:03 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39694\n\nAdded:\ngradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradeDefinition.java\nModified:\ngradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\ngradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java\ngradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/BaseHibernateManager.java\ngradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java\nLog:\nSAK-12175\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12175\nCreate methods required for gb integration with the Assignment2 tool\ngetGradesForStudentsForItem\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stuart.freeman@et.gatech.edu Wed Jan  2 17:00:56 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 17:00:56 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 17:00:56 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby jacknife.mail.umich.edu () with ESMTP id m02M0tvt022297;\n\tWed, 2 Jan 2008 17:00:55 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 477C0991.66572.12680 ; \n\t 2 Jan 2008 17:00:52 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 11DADB72DE;\n\tWed,  2 Jan 2008 22:00:47 +0000 (GMT)\nMessage-ID: <200801022159.m02LxOsg001648@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 391\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 22:00:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6448942959\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 22:00:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02LxOPF001650\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 16:59:24 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02LxOsg001648\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 16:59:24 -0500\nDate: Wed, 2 Jan 2008 16:59:24 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: stuart.freeman@et.gatech.edu\nSubject: [sakai] svn commit: r39692 - util/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 17:00:56 2008\nX-DSPAM-Confidence: 0.8525\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39692\n\nAuthor: stuart.freeman@et.gatech.edu\nDate: 2008-01-02 16:59:22 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39692\n\nModified:\nutil/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util/FormattedText.java\nLog:\nSAK-10306 Editor has problems inserting links and setting target to new window\n\n--(stuart@mothra:pts/5)-------------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/util)--\n--(1659:Wed,02 Jan 08:$)-- svn merge -r 35675:35676 https://source.sakaiproject.org/svn/util/trunk .\nU    util-util/util/src/java/org/sakaiproject/util/FormattedText.java\n--(stuart@mothra:pts/5)-------------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/util)--\n--(1700:Wed,02 Jan 08:$)-- ^merge^log\nsvn log -r 35675:35676 https://source.sakaiproject.org/svn/util/trunk .\n------------------------------------------------------------------------\nr35676 | joshua.ryan@asu.edu | 2007-09-21 20:02:50 -0400 (Fri, 21 Sep 2007) | 2 lines\n\nSAK-10306 removing extra pattern replacement that was causing issues with https urls. Fix from Ryan Lowe.\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Wed Jan  2 16:55:17 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 16:55:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 16:55:17 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby panther.mail.umich.edu () with ESMTP id m02LtGvU021450;\n\tWed, 2 Jan 2008 16:55:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 477C083D.F1397.8925 ; \n\t 2 Jan 2008 16:55:12 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BCF35B8BAF;\n\tWed,  2 Jan 2008 21:55:07 +0000 (GMT)\nMessage-ID: <200801022153.m02LrhrH001632@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 358\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 21:54:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4971B42934\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 21:54:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02LrhaV001634\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 16:53:43 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02LrhrH001632\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 16:53:43 -0500\nDate: Wed, 2 Jan 2008 16:53:43 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39691 - osp/branches/osp_nightly\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 16:55:17 2008\nX-DSPAM-Confidence: 0.8477\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39691\n\nAuthor: chmaurer@iupui.edu\nDate: 2008-01-02 16:53:41 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39691\n\nModified:\nosp/branches/osp_nightly/\nosp/branches/osp_nightly/.externals\nosp/branches/osp_nightly/pom.xml\nLog:\nadding entitybroker since gradebook requires it now\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stuart.freeman@et.gatech.edu Wed Jan  2 16:53:57 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 16:53:57 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 16:53:57 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby fan.mail.umich.edu () with ESMTP id m02Lrums015608;\n\tWed, 2 Jan 2008 16:53:56 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 477C07ED.6A38A.5828 ; \n\t 2 Jan 2008 16:53:52 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A050EB72DE;\n\tWed,  2 Jan 2008 21:53:52 +0000 (GMT)\nMessage-ID: <200801022152.m02LqN8o001620@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 71\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 21:53:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3E38242947\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 21:53:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02LqNbY001622\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 16:52:23 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02LqN8o001620\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 16:52:23 -0500\nDate: Wed, 2 Jan 2008 16:52:23 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: stuart.freeman@et.gatech.edu\nSubject: [sakai] svn commit: r39690 - in mailtool/branches/sakai_2-4-x: . mailtool mailtool/src/java/org/sakaiproject/tool/mailtool mailtool/src/webapp/WEB-INF\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 16:53:57 2008\nX-DSPAM-Confidence: 0.9947\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39690\n\nAuthor: stuart.freeman@et.gatech.edu\nDate: 2008-01-02 16:52:20 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39690\n\nModified:\nmailtool/branches/sakai_2-4-x/.classpath\nmailtool/branches/sakai_2-4-x/mailtool/pom.xml\nmailtool/branches/sakai_2-4-x/mailtool/project.xml\nmailtool/branches/sakai_2-4-x/mailtool/src/java/org/sakaiproject/tool/mailtool/EmailUser.java\nmailtool/branches/sakai_2-4-x/mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java\nmailtool/branches/sakai_2-4-x/mailtool/src/webapp/WEB-INF/faces-config.xml\nLog:\nSAK-10738 proper display of unicode characters, thanks to Kevin Chan for pointing out which revisions actually had to be merged\n\n--(stuart@mothra:pts/5)---------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/mailtool)--\n--(1643:Wed,02 Jan 08:$)-- svn merge -r32592:32593 https://source.sakaiproject.org/svn/mailtool/trunk/ .\nC    .classpath\nG    mailtool/project.xml\nC    mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java\n--(stuart@mothra:pts/5)---------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/mailtool)--\n--(1643:Wed,02 Jan 08:$)-- ^merge^log\nsvn log -r32592:32593 https://source.sakaiproject.org/svn/mailtool/trunk/ .\n------------------------------------------------------------------------\nr32593 | kimsooil@bu.edu | 2007-07-16 13:53:33 -0400 (Mon, 16 Jul 2007) | 2 lines\n\nfix SAK-10738 (Upgrade mail-1.3.1.jar to mail-1.4.jar)\nnote: it's not include in mailtool.war (it goes to /tomcat/shared/lib)\n------------------------------------------------------------------------\n--(stuart@mothra:pts/5)---------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/mailtool)--\n--(1643:Wed,02 Jan 08:$)-- svn merge -r32638:32639 https://source.sakaiproject.org/svn/mailtool/trunk/ .\nG    mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java\n--(stuart@mothra:pts/5)---------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/mailtool)--\n--(1653:Wed,02 Jan 08:$)-- ^merge^log\nsvn log -r32638:32639 https://source.sakaiproject.org/svn/mailtool/trunk/ .\n------------------------------------------------------------------------\nr32639 | ian@caret.cam.ac.uk | 2007-07-17 07:54:46 -0400 (Tue, 17 Jul 2007) | 3 lines\n\nFixed to work with JavaMail 1.3.1\n\nSAK-10738\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Wed Jan  2 15:51:46 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 15:51:46 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 15:51:46 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby brazil.mail.umich.edu () with ESMTP id m02Kpkwt030535;\n\tWed, 2 Jan 2008 15:51:46 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 477BF95C.781A2.24968 ; \n\t 2 Jan 2008 15:51:43 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2DD27B1ABE;\n\tWed,  2 Jan 2008 20:48:38 +0000 (GMT)\nMessage-ID: <200801022050.m02KoD1g001526@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 673\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 20:48:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CAF0B42936\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 20:51:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02KoDNB001528\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 15:50:13 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02KoD1g001526\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 15:50:13 -0500\nDate: Wed, 2 Jan 2008 15:50:13 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 15:51:46 2008\nX-DSPAM-Confidence: 0.9832\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39689\n\nAuthor: rjlowe@iupui.edu\nDate: 2008-01-02 15:50:11 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39689\n\nAdded:\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans/GradebookMessageRenderer.java\ngradebook/trunk/app/ui/src/webapp/component-templates/\ngradebook/trunk/app/ui/src/webapp/component-templates/Messages.html\ngradebook/trunk/app/ui/src/webapp/content/images/\ngradebook/trunk/app/ui/src/webapp/content/images/error-arrow.png\nModified:\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans/GradebookItemBean.java\ngradebook/trunk/app/ui/src/webapp/WEB-INF/applicationContext.xml\ngradebook/trunk/app/ui/src/webapp/WEB-INF/bundle/messages.properties\ngradebook/trunk/app/ui/src/webapp/content/css/gradebook.css\ngradebook/trunk/app/ui/src/webapp/content/templates/add-gradebook-item.html\nLog:\nNOJIRA - Gradebook RSF helper validation work and error throwing\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Wed Jan  2 15:28:02 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 15:28:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 15:28:02 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby casino.mail.umich.edu () with ESMTP id m02KS1NK012735;\n\tWed, 2 Jan 2008 15:28:01 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 477BF3CA.71812.2158 ; \n\t 2 Jan 2008 15:27:57 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 50307B8A32;\n\tWed,  2 Jan 2008 20:24:52 +0000 (GMT)\nMessage-ID: <200801022026.m02KQLMk001504@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 413\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 20:24:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3AEEF37AD9\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 20:27:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02KQMCU001507\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 15:26:22 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02KQLMk001504\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 15:26:21 -0500\nDate: Wed, 2 Jan 2008 15:26:21 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39688 - site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 15:28:02 2008\nX-DSPAM-Confidence: 0.8504\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39688\n\nAuthor: zqian@umich.edu\nDate: 2008-01-02 15:26:20 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39688\n\nModified:\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-list.vm\nLog:\nfix 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.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Wed Jan  2 15:20:50 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 15:20:50 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 15:20:50 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby jacknife.mail.umich.edu () with ESMTP id m02KKnOR006071;\n\tWed, 2 Jan 2008 15:20:49 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 477BF212.71E82.5991 ; \n\t 2 Jan 2008 15:20:37 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2C332B8A1B;\n\tWed,  2 Jan 2008 20:17:29 +0000 (GMT)\nMessage-ID: <200801022018.m02KIxMC001487@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 351\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 20:17:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 98549427AE\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 20:20:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02KIxLv001489\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 15:18:59 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02KIxMC001487\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 15:18:59 -0500\nDate: Wed, 2 Jan 2008 15:18:59 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r39687 - in gradebook/trunk/app/ui/src: java/org/sakaiproject/tool/gradebook/ui/helpers/beans webapp/content/js webapp/content/templates\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 15:20:50 2008\nX-DSPAM-Confidence: 0.9864\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39687\n\nAuthor: rjlowe@iupui.edu\nDate: 2008-01-02 15:18:57 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39687\n\nAdded:\ngradebook/trunk/app/ui/src/webapp/content/js/add-gradebook-item.js\nModified:\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans/AssignmentCreator.java\ngradebook/trunk/app/ui/src/webapp/content/templates/add-gradebook-item.html\nLog:\nNOJIRA - Adding JS to add form in helper\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Wed Jan  2 14:35:41 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 14:35:41 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 14:35:41 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby faithful.mail.umich.edu () with ESMTP id m02JZfp3000888;\n\tWed, 2 Jan 2008 14:35:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 477BE786.758A3.25327 ; \n\t 2 Jan 2008 14:35:37 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 86ABDB898D;\n\tWed,  2 Jan 2008 19:35:31 +0000 (GMT)\nMessage-ID: <200801021934.m02JY7iK001434@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 128\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 19:35:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7743024C3D\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 19:35:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02JY7wX001436\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 14:34:07 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02JY7iK001434\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 14:34:07 -0500\nDate: Wed, 2 Jan 2008 14:34:07 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 14:35:41 2008\nX-DSPAM-Confidence: 0.9842\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39686\n\nAuthor: rjlowe@iupui.edu\nDate: 2008-01-02 14:34:05 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39686\n\nAdded:\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans/AssignmentCreator.java\nModified:\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans/GradebookItemBean.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/producers/AddGradebookItemProducer.java\ngradebook/trunk/app/ui/src/webapp/WEB-INF/applicationContext.xml\ngradebook/trunk/app/ui/src/webapp/WEB-INF/requestContext.xml\ngradebook/trunk/app/ui/src/webapp/content/templates/add-gradebook-item.html\nLog:\nNOJIRA - gradebook helper work\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Wed Jan  2 12:56:50 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 12:56:50 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 12:56:50 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby awakenings.mail.umich.edu () with ESMTP id m02HuoZa017116;\n\tWed, 2 Jan 2008 12:56:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 477BD05A.3252A.14412 ; \n\t 2 Jan 2008 12:56:44 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C865FB87F7;\n\tWed,  2 Jan 2008 17:56:37 +0000 (GMT)\nMessage-ID: <200801021755.m02HtJKE001310@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 838\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 17:56:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9529D3FAD0\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 17:56:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02HtJF0001312\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 12:55:19 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02HtJKE001310\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 12:55:19 -0500\nDate: Wed, 2 Jan 2008 12:55:19 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39685 - site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 12:56:50 2008\nX-DSPAM-Confidence: 0.8500\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39685\n\nAuthor: zqian@umich.edu\nDate: 2008-01-02 12:55:18 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39685\n\nModified:\nsite-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nLog:\nfix to SAK-12575:Adding second roster to course site removes previously added roster\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Wed Jan  2 12:54:14 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 12:54:14 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 12:54:14 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby mission.mail.umich.edu () with ESMTP id m02HsEWP031266;\n\tWed, 2 Jan 2008 12:54:14 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 477BCFC0.24C52.22694 ; \n\t 2 Jan 2008 12:54:10 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4257DB8810;\n\tWed,  2 Jan 2008 17:53:07 +0000 (GMT)\nMessage-ID: <200801021752.m02Hqk8q001298@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 222\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 17:52:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6DDC43FAD0\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 17:53:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02HqkGH001300\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 12:52:46 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02Hqk8q001298\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 12:52:46 -0500\nDate: Wed, 2 Jan 2008 12:52:46 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 12:54:14 2008\nX-DSPAM-Confidence: 0.8462\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39684\n\nAuthor: rjlowe@iupui.edu\nDate: 2008-01-02 12:52:44 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39684\n\nModified:\ngradebook/trunk/app/sakai-tool/src/webapp/WEB-INF/web.xml\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/producers/AddGradebookItemProducer.java\ngradebook/trunk/app/ui/src/webapp/WEB-INF/requestContext.xml\nLog:\nNOJIRA - Gradebook Helper injections\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Wed Jan  2 11:13:25 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 11:13:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 11:13:25 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby faithful.mail.umich.edu () with ESMTP id m02GDPdJ003400;\n\tWed, 2 Jan 2008 11:13:25 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 477BB81E.2F8E5.8169 ; \n\t 2 Jan 2008 11:13:21 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id F172CB852C;\n\tWed,  2 Jan 2008 16:13:15 +0000 (GMT)\nMessage-ID: <200801021612.m02GC0dc001119@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 458\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 16:13:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D3A57427D9\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 16:13:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02GC0Qn001121\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 11:12:00 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02GC0dc001119\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 11:12:00 -0500\nDate: Wed, 2 Jan 2008 11:12:00 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r39683 - gradebook/trunk/app/ui/src/webapp/WEB-INF\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 11:13:25 2008\nX-DSPAM-Confidence: 0.9860\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39683\n\nAuthor: rjlowe@iupui.edu\nDate: 2008-01-02 11:11:58 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39683\n\nAdded:\ngradebook/trunk/app/ui/src/webapp/WEB-INF/faces-beans.xml\nLog:\nNOJIRA - adding accidentially removed faces-beans.xml\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Wed Jan  2 11:09:35 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 11:09:35 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 11:09:35 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby awakenings.mail.umich.edu () with ESMTP id m02G9Yam000565;\n\tWed, 2 Jan 2008 11:09:34 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 477BB738.9A2.4028 ; \n\t 2 Jan 2008 11:09:30 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2D8DCB7F2B;\n\tWed,  2 Jan 2008 16:09:24 +0000 (GMT)\nMessage-ID: <200801021608.m02G85Mp001097@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 15\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 16:09:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9BDC1427D9\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 16:09:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02G85o8001099\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 11:08:05 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02G85Mp001097\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 11:08:05 -0500\nDate: Wed, 2 Jan 2008 11:08:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 11:09:35 2008\nX-DSPAM-Confidence: 0.9842\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39682\n\nAuthor: rjlowe@iupui.edu\nDate: 2008-01-02 11:08:02 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39682\n\nAdded:\ngradebook/trunk/app/sakai-tool/src/webapp/tools/sakai.gradebook.helpers.xml\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans/\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/beans/GradebookItemBean.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/entity/\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/entity/GradebookEntryEntityProvider.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/params/\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/params/AddGradebookItemViewParams.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/producers/\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/producers/AddGradebookItemProducer.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/helpers/producers/PermissionsErrorProducer.java\ngradebook/trunk/app/ui/src/webapp/WEB-INF/applicationContext.xml\ngradebook/trunk/app/ui/src/webapp/WEB-INF/bundle/\ngradebook/trunk/app/ui/src/webapp/WEB-INF/bundle/messages.properties\ngradebook/trunk/app/ui/src/webapp/WEB-INF/requestContext.xml\ngradebook/trunk/app/ui/src/webapp/content/\ngradebook/trunk/app/ui/src/webapp/content/css/\ngradebook/trunk/app/ui/src/webapp/content/css/gradebook.css\ngradebook/trunk/app/ui/src/webapp/content/js/\ngradebook/trunk/app/ui/src/webapp/content/templates/\ngradebook/trunk/app/ui/src/webapp/content/templates/add-gradebook-item.html\ngradebook/trunk/app/ui/src/webapp/content/templates/permissions-error.html\nRemoved:\ngradebook/trunk/app/sakai-tool/src/webapp/WEB-INF/applicationContext.xml\ngradebook/trunk/app/ui/src/webapp/WEB-INF/faces-beans.xml\ngradebook/trunk/helper-app/\nModified:\ngradebook/trunk/app/sakai-tool/src/webapp/WEB-INF/web.xml\ngradebook/trunk/app/ui/pom.xml\ngradebook/trunk/pom.xml\nLog:\nNOJIRA - moving gradebook helper into gradebook webapp\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Wed Jan  2 09:54:32 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 09:54:32 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 09:54:31 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby score.mail.umich.edu () with ESMTP id m02EsViP017747;\n\tWed, 2 Jan 2008 09:54:31 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 477BA59C.2FFBD.27725 ; \n\t 2 Jan 2008 09:54:28 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8FAC2B838B;\n\tWed,  2 Jan 2008 14:53:15 +0000 (GMT)\nMessage-ID: <200801021452.m02Eqwdg001017@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 769\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 14:52:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D9CFF40E8C\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 14:54:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02EqwsV001019\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 09:52:58 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02Eqwdg001017\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 09:52:58 -0500\nDate: Wed, 2 Jan 2008 09:52:58 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r39681 - gradebook/branches/sakai_2-5-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 09:54:31 2008\nX-DSPAM-Confidence: 0.7622\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39681\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2008-01-02 09:52:48 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39681\n\nModified:\ngradebook/branches/sakai_2-5-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/SpreadsheetUploadBean.java\nLog:\nsvn log -r39640 https://source.sakaiproject.org/svn/gradebook/trunk\n------------------------------------------------------------------------\nr39640 | josrodri@iupui.edu | 2007-12-28 21:15:33 +0200 (Fri, 28 Dec 2007) | 1 line\n\nSAK-12549: Did not deal properly with a valid assignment but no grades recorded\n------------------------------------------------------------------------\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39640 https://source.sakaiproject.org/svn/gradebook/trunk gradebook/\nU\ngradebook/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/SpreadsheetUploadBean.java\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Wed Jan  2 09:40:42 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 09:40:42 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 09:40:42 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby panther.mail.umich.edu () with ESMTP id m02EegQW019203;\n\tWed, 2 Jan 2008 09:40:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 477BA264.93C42.15418 ; \n\t 2 Jan 2008 09:40:39 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D3E9EB8455;\n\tWed,  2 Jan 2008 14:39:34 +0000 (GMT)\nMessage-ID: <200801021439.m02Ed9jw000996@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 429\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 14:39:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 70A8B40E8C\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 14:40:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02EdATb000998\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 09:39:10 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02Ed9jw000996\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 09:39:09 -0500\nDate: Wed, 2 Jan 2008 09:39:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 09:40:42 2008\nX-DSPAM-Confidence: 0.9865\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39680\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2008-01-02 09:38:43 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39680\n\nModified:\ncomponent/branches/sakai_2-5-x/component-api/component/src/config/org/sakaiproject/config/sakai.properties\nreference/branches/sakai_2-5-x/docs/sakai.properties\nLog:\nSAK-12044 add portuguese as supported languaage\n\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39375 https://source.sakaiproject.org/svn/msgcntr/trunk msgcntr/\nU    msgcntr/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages_pt_PT.properties\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39598 https://source.sakaiproject.org/svn/reference/trunk reference/\nU    reference/docs/sakai.properties\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39599 https://source.sakaiproject.org/svn/component/trunk component/\nU    component/component-api/component/src/config/org/sakaiproject/config/sakai.properties\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Wed Jan  2 09:38:43 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 09:38:43 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 09:38:43 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby casino.mail.umich.edu () with ESMTP id m02Ecg4S029498;\n\tWed, 2 Jan 2008 09:38:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 477BA1EB.543D.16904 ; \n\t 2 Jan 2008 09:38:37 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B288BB8442;\n\tWed,  2 Jan 2008 14:37:31 +0000 (GMT)\nMessage-ID: <200801021437.m02EbGJG000984@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 761\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 14:37:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B09CE40E8C\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 14:38:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02EbGpT000986\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 09:37:16 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02EbGJG000984\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 09:37:16 -0500\nDate: Wed, 2 Jan 2008 09:37:16 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [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!\n g/sakaiproject/umem/tool/bundle velocity/branches/sakai_2-5-x/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 09:38:43 2008\nX-DSPAM-Confidence: 0.8500\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39679\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2008-01-02 09:33:05 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39679\n\nAdded:\nassignment/branches/sakai_2-5-x/assignment-bundles/assignment_pt_PT.properties\nrwiki/branches/sakai_2-5-x/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/Messages_pt_PT.properties\nrwiki/branches/sakai_2-5-x/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/PrepopulatePages_pt_PT.properties\nrwiki/branches/sakai_2-5-x/rwiki-util/radeox/src/bundle/radeox_messages_pt_PT.properties\nrwiki/branches/sakai_2-5-x/rwiki-util/util/src/bundle/uk/ac/cam/caret/sakai/rwiki/utils/bundle/Messages_pt_PT.properties\nsam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_pt_PT.properties\nsam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_pt_PT.properties\nsam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport_pt_PT.properties\nsam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_pt_PT.properties\nsam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_pt_PT.properties\nsam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_pt_PT.properties\nsam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_pt_PT.properties\nsam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_pt_PT.properties\nsam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_pt_PT.properties\nsam/branches/sakai_2-5-x/samigo-services/src/java/org/sakaiproject/tool/assessment/bundle/Messages_pt_PT.properties\nsearch/branches/sakai_2-5-x/search-tool/tool/src/bundle/org/sakaiproject/search/tool/bundle/Messages_pt_PT.properties\nsite-manage/branches/sakai_2-5-x/pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle/Messages_pt_PT.properties\nsite-manage/branches/sakai_2-5-x/site-manage-impl/impl/src/bundle/SectionFields_pt_PT.properties\nsite-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/bundle/membership_pt_PT.properties\nsite-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/bundle/sitebrowser_pt_PT.properties\nsite-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/bundle/sitesetupgeneric_pt_PT.properties\nvelocity/branches/sakai_2-5-x/tool/src/bundle/velocity-tool_pt_PT.properties\nModified:\nmsgcntr/branches/sakai_2-5-x/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages_pt_PT.properties\nusermembership/branches/sakai_2-5-x/tool/src/bundle/org/sakaiproject/umem/tool/bundle/Messages_pt_PT.properties\nLog:\nSAK-12044 pt_PT bundles part 4 - final batch\n\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39202 https://source.sakaiproject.org/svn/search/trunk search/\nA    search/search-tool/tool/src/bundle/org/sakaiproject/search/tool/bundle/Messages_pt_PT.properties\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39202 https://source.sakaiproject.org/svn/usermembership/trunk usermembership/\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39203 https://source.sakaiproject.org/svn/usermembership/trunk usermembership/\nU    usermembership/tool/src/bundle/org/sakaiproject/umem/tool/bundle/Messages_pt_PT.properties\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39204 https://source.sakaiproject.org/svn/velocity/trunk velocity/\nA    velocity/tool/src/bundle/velocity-tool_pt_PT.properties\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39205 https://source.sakaiproject.org/svn/rwiki/trunk rwiki/\nA    rwiki/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/PrepopulatePages_pt_PT.properties\nA    rwiki/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/Messages_pt_PT.properties\nA    rwiki/rwiki-util/radeox/src/bundle/radeox_messages_pt_PT.properties\nA    rwiki/rwiki-util/util/src/bundle/uk/ac/cam/caret/sakai/rwiki/utils/bundle/Messages_pt_PT.properties\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39206 https://source.sakaiproject.org/svn/site-manage/trunk site-manage/\nA    site-manage/site-manage-tool/tool/src/bundle/sitesetupgeneric_pt_PT.properties\nA    site-manage/site-manage-tool/tool/src/bundle/membership_pt_PT.properties\nA    site-manage/site-manage-tool/tool/src/bundle/sitebrowser_pt_PT.properties\nA    site-manage/pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle/Messages_pt_PT.properties\nA    site-manage/site-manage-impl/impl/src/bundle/SectionFields_pt_PT.properties\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39207 https://source.sakaiproject.org/svn/assignment/trunk assignment/\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39359 https://source.sakaiproject.org/svn/assignment/trunk assignment/\nA    assignment/assignment-bundles/assignment_pt_PT.properties\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39368 https://source.sakaiproject.org/svn/sam/trunk sam\nA    sam/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_pt_PT.properties\nA    sam/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_pt_PT.properties\nA    sam/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_pt_PT.properties\nA    sam/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_pt_PT.properties\nA    sam/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_pt_PT.properties\nA    sam/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_pt_PT.properties\nA    sam/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport_pt_PT.properties\nA    sam/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_pt_PT.properties\nA    sam/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_pt_PT.properties\nA    sam/samigo-services/src/java/org/sakaiproject/tool/assessment/bundle/Messages_pt_PT.properties\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39375 https://source.sakaiproject.org/svn/msgcntr/trunk msgcntr/\nU    msgcntr/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages_pt_PT.properties\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Wed Jan  2 09:16:03 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 09:16:03 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 09:16:03 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby mission.mail.umich.edu () with ESMTP id m02EG3qc027295;\n\tWed, 2 Jan 2008 09:16:03 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 477B9C9D.E968C.12891 ; \n\t 2 Jan 2008 09:16:00 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1A3EEB83F1;\n\tWed,  2 Jan 2008 14:14:49 +0000 (GMT)\nMessage-ID: <200801021414.m02EEV0T000957@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 624\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 14:14:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C2BA04067D\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 14:15:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02EEVMH000959\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 09:14:31 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02EEV0T000957\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 09:14:31 -0500\nDate: Wed, 2 Jan 2008 09:14:31 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 09:16:03 2008\nX-DSPAM-Confidence: 0.8479\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39678\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2008-01-02 09:12:50 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39678\n\nAdded:\ncitations/branches/sakai_2-5-x/citations-util/util/src/bundle/citations_pt_PT.properties\ncontent/branches/sakai_2-5-x/content-bundles/content_pt_PT.properties\ncontent/branches/sakai_2-5-x/content-bundles/types_pt_PT.properties\ncontent/branches/sakai_2-5-x/content-impl/impl/src/bundle/siteemacon_pt_PT.properties\ncontent/branches/sakai_2-5-x/content-tool/tool/src/bundle/helper_pt_PT.properties\npresence/branches/sakai_2-5-x/presence-tool/tool/src/bundle/admin_pt_PT.properties\nroster/branches/sakai_2-5-x/roster-app/src/bundle/org/sakaiproject/tool/roster/bundle/Messages_pt_PT.properties\nuser/branches/sakai_2-5-x/user-tool-prefs/tool/src/bundle/user-tool-prefs_pt_PT.properties\nLog:\nSAK-12044 pt_PT message bundles batch 3\n\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39197 https://source.sakaiproject.org/svn/user/trunk user\nA    user/user-tool-prefs/tool/src/bundle/user-tool-prefs_pt_PT.properties\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39198 https://source.sakaiproject.org/svn/presence/trunk presence/\nA    presence/presence-tool/tool/src/bundle/admin_pt_PT.properties\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39199 https://source.sakaiproject.org/svn/citations/trunk citations/\nA    citations/citations-util/util/src/bundle/citations_pt_PT.properties\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39200 https://source.sakaiproject.org/svn/content/trunk content\nA    content/content-bundles/types_pt_PT.properties\nA    content/content-bundles/content_pt_PT.properties\nA    content/content-tool/tool/src/bundle/helper_pt_PT.properties\nA    content/content-impl/impl/src/bundle/siteemacon_pt_PT.properties\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39200 https://source.sakaiproject.org/svn/roster/trunk roster/\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39201 https://source.sakaiproject.org/svn/roster/trunk roster/\nA    roster/roster-app/src/bundle/org/sakaiproject/tool/roster/bundle/Messages_pt_PT.properties\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Jan  2 09:13:10 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 09:13:10 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 09:13:10 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby casino.mail.umich.edu () with ESMTP id m02EDAHJ016720;\n\tWed, 2 Jan 2008 09:13:10 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 477B9BE8.977E.19989 ; \n\t 2 Jan 2008 09:12:58 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 556B7B8404;\n\tWed,  2 Jan 2008 14:11:43 +0000 (GMT)\nMessage-ID: <200801021410.m02EAaGd000928@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 85\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 14:11:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DC7944067D\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 14:11:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02EAaSg000930\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 09:10:36 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02EAaGd000928\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 09:10:36 -0500\nDate: Wed, 2 Jan 2008 09:10:36 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r39677 - entitybroker/trunk/api/src/java/org/sakaiproject/entitybroker/util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 09:13:10 2008\nX-DSPAM-Confidence: 0.9865\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39677\n\nAuthor: aaronz@vt.edu\nDate: 2008-01-02 09:10:34 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39677\n\nModified:\nentitybroker/trunk/api/src/java/org/sakaiproject/entitybroker/util/ClassLoaderReporter.java\nLog:\nSAK-12408: Added comment to the EB interface to make it more clear\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Wed Jan  2 09:07:48 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 09:07:48 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 09:07:48 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby panther.mail.umich.edu () with ESMTP id m02E7lC0002907;\n\tWed, 2 Jan 2008 09:07:47 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 477B9AAC.D17F0.15613 ; \n\t 2 Jan 2008 09:07:43 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 07603B83D7;\n\tWed,  2 Jan 2008 14:07:35 +0000 (GMT)\nMessage-ID: <200801021406.m02E6Ims000892@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 870\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 14:07:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E5D9A40696\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 14:07:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02E6Iw4000894\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 09:06:18 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02E6Ims000892\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 09:06:18 -0500\nDate: Wed, 2 Jan 2008 09:06:18 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 09:07:48 2008\nX-DSPAM-Confidence: 0.9852\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39676\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2008-01-02 09:04:14 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39676\n\nAdded:\nemail/branches/sakai_2-5-x/email-impl/impl/src/bundle/email-impl_pt_PT.properties\nlogin/branches/sakai_2-5-x/login-authn-tool/tool/src/bundle/sitenav_pt_PT.properties\nlogin/branches/sakai_2-5-x/login-tool/tool/src/bundle/auth_pt_PT.properties\nmailarchive/branches/sakai_2-5-x/mailarchive-impl/impl/src/bundle/siteemaanc_pt_PT.properties\nmailarchive/branches/sakai_2-5-x/mailarchive-tool/tool/src/bundle/email_pt_PT.properties\nmessage/branches/sakai_2-5-x/message-tool/tool/src/bundle/recent_pt_PT.properties\nmsgcntr/branches/sakai_2-5-x/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages_pt_PT.properties\nportal/branches/sakai_2-5-x/portal-impl/impl/src/bundle/sitenav_pt_PT.properties\nportal/branches/sakai_2-5-x/portal-util/util/src/bundle/portal-util_pt_PT.properties\nLog:\nSAK-12044 pt_pt message bundles 2\n\nsvn merge -c39191 https://source.sakaiproject.org/svn/email/trunk email/\nA    email/email-impl/impl/src/bundle/email-impl_pt_PT.properties\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39192 https://source.sakaiproject.org/svn/mailarchive/trunk mailarchive/\nA    mailarchive/mailarchive-tool/tool/src/bundle/email_pt_PT.properties\nA    mailarchive/mailarchive-impl/impl/src/bundle/siteemaanc_pt_PT.properties\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39193 https://source.sakaiproject.org/svn/msgcntr/trunk msgcntr/\nA    msgcntr/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages_pt_PT.properties\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39194 https://source.sakaiproject.org/svn/message/trunk message/\nA    message/message-tool/tool/src/bundle/recent_pt_PT.properties\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39195 https://source.sakaiproject.org/svn/portal/trunk portal/\nA    portal/portal-impl/impl/src/bundle/sitenav_pt_PT.properties\nA    portal/portal-util/util/src/bundle/portal-util_pt_PT.properties\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -c39196 https://source.sakaiproject.org/svn/login/trunk login/\nA    login/login-authn-tool/tool/src/bundle/sitenav_pt_PT.properties\nA    login/login-tool/tool/src/bundle/auth_pt_PT.properties\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Wed Jan  2 08:55:03 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 08:55:03 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 08:55:03 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby casino.mail.umich.edu () with ESMTP id m02Dt1IR010035;\n\tWed, 2 Jan 2008 08:55:01 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 477B97AF.A4703.12747 ; \n\t 2 Jan 2008 08:54:58 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 329696195D;\n\tWed,  2 Jan 2008 13:54:52 +0000 (GMT)\nMessage-ID: <200801021353.m02DrUxJ000878@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 651\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 13:54:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7EB563F32F\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 13:54:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02DrU5T000880\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 08:53:30 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02DrUxJ000878\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 08:53:30 -0500\nDate: Wed, 2 Jan 2008 08:53:30 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 08:55:03 2008\nX-DSPAM-Confidence: 0.9856\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39675\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2008-01-02 08:51:20 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39675\n\nAdded:\naccess/branches/sakai_2-5-x/access-impl/impl/src/bundle/access_pt_PT.properties\nannouncement/branches/sakai_2-5-x/announcement-impl/impl/src/bundle/annc-access_pt_PT.properties\nannouncement/branches/sakai_2-5-x/announcement-impl/impl/src/bundle/siteemaanc_pt_PT.properties\nannouncement/branches/sakai_2-5-x/announcement-tool/tool/src/bundle/announcement_pt_PT.properties\nblog/branches/sakai_2-5-x/tool/src/bundle/uk/ac/lancs/e_science/sakai/tools/blogger/bundle/Messages_pt_PT.properties\ncalendar/branches/sakai_2-5-x/calendar-impl/impl/src/bundle/calendarimpl_pt_PT.properties\ncalendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_pt_PT.properties\ncalendar/branches/sakai_2-5-x/calendar-tool/tool/src/bundle/calendar_pt_PT.properties\nchat/branches/sakai_2-5-x/chat-impl/impl/src/bundle/chat_pt_PT.properties\nchat/branches/sakai_2-5-x/chat-tool/tool/src/bundle/chat_pt_PT.properties\nLog:\nSAK-12044 first chunck of pt_PT translations\n\nsvn merge -c39186 https://source.sakaiproject.org/svn/access/trunk access/\nA    access/access-impl/impl/src/bundle/access_pt_PT.properties\nsvn merge -c39187 https://source.sakaiproject.org/svn/announcement/trunk announcement\nA    announcement/announcement-tool/tool/src/bundle/announcement_pt_PT.properties\nA    announcement/announcement-impl/impl/src/bundle/annc-access_pt_PT.properties\nA    announcement/announcement-impl/impl/src/bundle/siteemaanc_pt_PT.properties\nsvn merge -c39188 https://source.sakaiproject.org/svn/blog/trunk blog\nA    blog/tool/src/bundle/uk/ac/lancs/e_science/sakai/tools/blogger/bundle/Messages_pt_PT.properties\nsvn merge -c39189 https://source.sakaiproject.org/svn/calendar/trunk calendar/\nA    calendar/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_pt_PT.properties\nA    calendar/calendar-tool/tool/src/bundle/calendar_pt_PT.properties\nA    calendar/calendar-impl/impl/src/bundle/calendarimpl_pt_PT.properties\nsvn merge -c39190 https://source.sakaiproject.org/svn/chat/trunk chat/\nA    chat/chat-tool/tool/src/bundle/chat_pt_PT.properties\nA    chat/chat-impl/impl/src/bundle/chat_pt_PT.properties\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Wed Jan  2 08:37:45 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 08:37:45 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 08:37:45 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby mission.mail.umich.edu () with ESMTP id m02Dbjua013777;\n\tWed, 2 Jan 2008 08:37:45 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 477B93A2.53910.25963 ; \n\t 2 Jan 2008 08:37:41 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 41AE7B836F;\n\tWed,  2 Jan 2008 13:37:38 +0000 (GMT)\nMessage-ID: <200801021336.m02DaFXJ000836@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 433\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 13:37:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D70F73F32F\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 13:37:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02DaF0m000838\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 08:36:15 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02DaFXJ000836\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 08:36:15 -0500\nDate: Wed, 2 Jan 2008 08:36:15 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r39674 - assignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 08:37:45 2008\nX-DSPAM-Confidence: 0.8519\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39674\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2008-01-02 08:36:05 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39674\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission_confirmation.vm\nLog:\nsvn merge  -c39657 https://source.sakaiproject.org/svn/assignment/trunk assignment/\nU    assignment/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission_confirmation.vm\n\nsvn log -r39657 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr39657 | zqian@umich.edu | 2007-12-31 21:51:23 +0200 (Mon, 31 Dec 2007) | 1 line\nSAK-10943\nFix to SAK-10943:Submission notification fails silently for submitting users who don't have an email address\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Wed Jan  2 08:23:44 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 08:23:44 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 08:23:44 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby sleepers.mail.umich.edu () with ESMTP id m02DNhbs016909;\n\tWed, 2 Jan 2008 08:23:43 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 477B905A.7DFF3.16585 ; \n\t 2 Jan 2008 08:23:41 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 10395B82C9;\n\tWed,  2 Jan 2008 13:23:25 +0000 (GMT)\nMessage-ID: <200801021322.m02DM6F1000811@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 842\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 13:23:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A47AA3EB30\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 13:23:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02DM6I0000813\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 08:22:06 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02DM6F1000811\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 08:22:06 -0500\nDate: Wed, 2 Jan 2008 08:22:06 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r39673 - calendar/branches/sakai_2-5-x/calendar-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 08:23:44 2008\nX-DSPAM-Confidence: 0.8514\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39673\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2008-01-02 08:21:56 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39673\n\nModified:\ncalendar/branches/sakai_2-5-x/calendar-tool/tool/src/bundle/calendar.properties\nLog:\nsvn merge  -c39646 https://source.sakaiproject.org/svn/calendar/trunk calendar/\nU    calendar/calendar-tool/tool/src/bundle/calendar.properties\n\nsvn log  -r39646 https://source.sakaiproject.org/svn/calendar/trunk\n------------------------------------------------------------------------\nr39646 | gsilver@umich.edu | 2007-12-30 04:07:07 +0200 (Sun, 30 Dec 2007) | 2 lines\n\nSAK-9349\nhttp://jira.sakaiproject.org/jira/browse/SAK-9349\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Wed Jan  2 08:17:41 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 08:17:41 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 08:17:41 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby awakenings.mail.umich.edu () with ESMTP id m02DHeAv025516;\n\tWed, 2 Jan 2008 08:17:40 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 477B8EEE.CCD34.16797 ; \n\t 2 Jan 2008 08:17:37 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C7472B82C4;\n\tWed,  2 Jan 2008 13:17:29 +0000 (GMT)\nMessage-ID: <200801021316.m02DG2XL000780@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 350\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 13:17:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CFB8C3F5F9\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 13:17:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02DG2hR000782\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 08:16:02 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02DG2XL000780\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 08:16:02 -0500\nDate: Wed, 2 Jan 2008 08:16:02 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r39672 - podcasts/branches/sakai_2-5-x/podcasts/src/java/org/sakaiproject/tool/podcasts\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 08:17:41 2008\nX-DSPAM-Confidence: 0.8511\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39672\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2008-01-02 08:15:52 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39672\n\nModified:\npodcasts/branches/sakai_2-5-x/podcasts/src/java/org/sakaiproject/tool/podcasts/RSSPodfeedServlet.java\nLog:\nsvn merge -c39455 https://source.sakaiproject.org/svn/podcasts/trunk podcasts\nU    podcasts/podcasts/src/java/org/sakaiproject/tool/podcasts/RSSPodfeedServlet.java\n\nsvn log -r39455 https://source.sakaiproject.org/svn/podcasts/trunk\n------------------------------------------------------------------------\nr39455 | josrodri@iupui.edu | 2007-12-18 21:51:48 +0200 (Tue, 18 Dec 2007) | 1 line\n\nSAK-6404: changed events logged to podcast.read.public, podcast.read.site\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gopal.ramasammycook@gmail.com Wed Jan  2 07:01:41 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 07:01:41 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 07:01:41 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby sleepers.mail.umich.edu () with ESMTP id m02C1e8T027231;\n\tWed, 2 Jan 2008 07:01:40 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 477B7D14.762BB.15186 ; \n\t 2 Jan 2008 07:01:27 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 98CFA8F0E7;\n\tWed,  2 Jan 2008 12:01:09 +0000 (GMT)\nMessage-ID: <200801021159.m02Bxd62031614@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 686\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 12:00:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 784063E867\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 12:00:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02BxdlR031616\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 06:59:39 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02Bxd62031614\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 06:59:39 -0500\nDate: Wed, 2 Jan 2008 06:59:39 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f\nTo: source@collab.sakaiproject.org\nFrom: gopal.ramasammycook@gmail.com\nSubject: [sakai] svn commit: r39671 - sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 07:01:41 2008\nX-DSPAM-Confidence: 0.9843\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39671\n\nAuthor: gopal.ramasammycook@gmail.com\nDate: 2008-01-02 06:59:30 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39671\n\nModified:\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java\nLog:\nSAK-12065 Bug Fix for Deleting released group - tooltip display was causing a null pointer exception.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Wed Jan  2 05:16:10 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 05:16:10 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 05:16:10 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby score.mail.umich.edu () with ESMTP id m02AG8VO006787;\n\tWed, 2 Jan 2008 05:16:08 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 477B6461.BE348.1561 ; \n\t 2 Jan 2008 05:16:04 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B2304620B9;\n\tWed,  2 Jan 2008 10:15:58 +0000 (GMT)\nMessage-ID: <200801021014.m02AEeaw031506@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 83\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 10:15:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 67A9B24B62\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 10:15:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m02AEeWV031508\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 05:14:40 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m02AEeaw031506\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 05:14:40 -0500\nDate: Wed, 2 Jan 2008 05:14:40 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r39670 - event/branches/sakai_2-5-x/event-util/util/src/java/org/sakaiproject/util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 05:16:10 2008\nX-DSPAM-Confidence: 0.8505\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39670\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2008-01-02 05:14:28 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39670\n\nModified:\nevent/branches/sakai_2-5-x/event-util/util/src/java/org/sakaiproject/util/EmailNotification.java\nLog:\nsvn merge  -c39033 https://source.sakaiproject.org/svn/event/trunk event\nU    event/event-util/util/src/java/org/sakaiproject/util/EmailNotification.java\n\nsvn log -r39033 https://source.sakaiproject.org/svn/event/trunk\n------------------------------------------------------------------------\nr39033 | ian@caret.cam.ac.uk | 2007-12-07 18:03:07 +0200 (Fri, 07 Dec 2007) | 6 lines\n\nhttp://bugs.sakaiproject.org/jira/browse/SAK-11169\n\nAdded switch for bulk preference on email notification,\nPatch Supplied by Daniel Parry.\n\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Wed Jan  2 04:40:56 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 04:40:56 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 04:40:56 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby mission.mail.umich.edu () with ESMTP id m029esYZ025372;\n\tWed, 2 Jan 2008 04:40:54 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 477B5C1D.B5DC0.15753 ; \n\t 2 Jan 2008 04:40:51 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0A28CB7FC5;\n\tWed,  2 Jan 2008 09:40:47 +0000 (GMT)\nMessage-ID: <200801020939.m029dOSM031477@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1000\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 09:40:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7E61A24EA5\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 09:40:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m029dOnd031479\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 04:39:24 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m029dOSM031477\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 04:39:24 -0500\nDate: Wed, 2 Jan 2008 04:39:24 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 04:40:56 2008\nX-DSPAM-Confidence: 0.7625\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39669\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2008-01-02 04:38:54 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39669\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-bundles/assignment.properties\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm\nLog:\nsvn merge  -c38510 https://source.sakaiproject.org/svn/assignment/trunk assignment/\nU    assignment/assignment-bundles/assignment.properties\nU    assignment/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nU    assignment/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm\nU\nassignment/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm\n\nsvn log -r38510 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr38510 | zqian@umich.edu | 2007-11-20 23:08:48 +0200 (Tue, 20 Nov 2007) | 1 line\n\nfix to SAK-12227:Drafts should not be gradable before a due date\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Wed Jan  2 04:24:50 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 04:24:50 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 04:24:50 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby sleepers.mail.umich.edu () with ESMTP id m029Omhu025841;\n\tWed, 2 Jan 2008 04:24:48 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 477B585B.6740F.18513 ; \n\t 2 Jan 2008 04:24:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 45D7AB7ED6;\n\tWed,  2 Jan 2008 09:24:45 +0000 (GMT)\nMessage-ID: <200801020923.m029NMHw031431@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 342\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 09:24:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 90B2F24EA5\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 09:24:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m029NMRS031433\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 04:23:22 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m029NMHw031431\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 04:23:22 -0500\nDate: Wed, 2 Jan 2008 04:23:22 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r39668 - assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 04:24:50 2008\nX-DSPAM-Confidence: 0.8524\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39668\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2008-01-02 04:23:12 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39668\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nsvn log -r39659 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr39659 | zqian@umich.edu | 2007-12-31 23:22:03 +0200 (Mon, 31 Dec 2007) | 1 line\n\nfix to SAK-12543: Assignment tool Adds a Zero at the end of point values under certain condition\n------------------------------------------------------------------------\n\nsvn merge  -c39659 https://source.sakaiproject.org/svn/assignment/trunk assignment/\nU    assignment/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Wed Jan  2 03:56:59 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 03:56:59 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 03:56:59 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby flawless.mail.umich.edu () with ESMTP id m028uvSp024067;\n\tWed, 2 Jan 2008 03:56:57 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 477B51CB.C5B34.20922 ; \n\t 2 Jan 2008 03:56:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 652BCB7583;\n\tWed,  2 Jan 2008 08:56:44 +0000 (GMT)\nMessage-ID: <200801020855.m028tNPG030945@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 82\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 08:56:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 239083A3B9\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 08:56:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m028tNoI030947\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 03:55:23 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m028tNPG030945\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 03:55:23 -0500\nDate: Wed, 2 Jan 2008 03:55:23 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 03:56:59 2008\nX-DSPAM-Confidence: 0.7623\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39667\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2008-01-02 03:55:03 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39667\n\nModified:\nsite-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nsite-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addParticipant.vm\nLog:\nsvn log -r39603 https://source.sakaiproject.org/svn/site-manage/trunk\n------------------------------------------------------------------------\nr39603 | zqian@umich.edu | 2007-12-21 19:19:37 +0200 (Fri, 21 Dec 2007) | 1 line\n\nFix to SAK-12547:\"Students registered for course\" shown for non-course sites\n------------------------------------------------------------------------\nsvn merge -c39603 https://source.sakaiproject.org/svn/site-manage/trunk site-manage/\nU    site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nC    site-manage/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addParticipant.vm\n\n\nConflict was merged manualy\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Wed Jan  2 03:22:37 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 03:22:37 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 03:22:37 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby score.mail.umich.edu () with ESMTP id m028MZjO018928;\n\tWed, 2 Jan 2008 03:22:35 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 477B49C6.48AAB.20329 ; \n\t 2 Jan 2008 03:22:32 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 68785B7ACC;\n\tWed,  2 Jan 2008 08:22:18 +0000 (GMT)\nMessage-ID: <200801020820.m028KvWT030865@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 947\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 08:21:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5D29C3AEB3\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 08:22:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m028KvS4030867\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 03:20:57 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m028KvWT030865\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 03:20:57 -0500\nDate: Wed, 2 Jan 2008 03:20:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r39666 - util/branches/sakai_2-5-x/util-util/util/src/java/org/sakaiproject/util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 03:22:37 2008\nX-DSPAM-Confidence: 0.8509\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39666\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2008-01-02 03:20:47 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39666\n\nModified:\nutil/branches/sakai_2-5-x/util-util/util/src/java/org/sakaiproject/util/FormattedText.java\nLog:\nsvn log -r38889 https://source.sakaiproject.org/svn/util/trunk\n------------------------------------------------------------------------\nr38889 | joshua.ryan@asu.edu | 2007-11-30 00:20:17 +0200 (Fri, 30 Nov 2007) | 2 lines\n\nSAK-11056 added 'start' attribute to the allowed list of attributes in safe html\n\n------------------------------------------------------------------------\n\nsvn merge  -c38889 https://source.sakaiproject.org/svn/util/trunk util/\nU    util/util-util/util/src/java/org/sakaiproject/util/FormattedText.java\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Wed Jan  2 03:04:19 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 03:04:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 03:04:19 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby panther.mail.umich.edu () with ESMTP id m0284HZJ012679;\n\tWed, 2 Jan 2008 03:04:17 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 477B457C.4C19E.442 ; \n\t 2 Jan 2008 03:04:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 111AEB7BD0;\n\tWed,  2 Jan 2008 08:04:11 +0000 (GMT)\nMessage-ID: <200801020802.m0282tRX030848@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 320\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 08:03:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3A7553AEB3\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 08:03:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m0282t0C030850\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 03:02:55 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m0282tRX030848\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 03:02:55 -0500\nDate: Wed, 2 Jan 2008 03:02:55 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [contrib] svn commit: r44484 - uct\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 03:04:19 2008\nX-DSPAM-Confidence: 0.9844\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn?root=contrib&view=rev&rev=44484\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2008-01-02 03:02:46 -0500 (Wed, 02 Jan 2008)\nNew Revision: 44484\n\nRemoved:\nuct/reset-pass/\nLog:\nSAK-11961 This code is now in main svn \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Wed Jan  2 03:02:55 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 03:02:55 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 03:02:55 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby fan.mail.umich.edu () with ESMTP id m0282prw005404;\n\tWed, 2 Jan 2008 03:02:51 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 477B4525.D651D.26708 ; \n\t 2 Jan 2008 03:02:48 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 14D2266375;\n\tWed,  2 Jan 2008 08:02:39 +0000 (GMT)\nMessage-ID: <200801020801.m0281HWA030836@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 997\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 08:02:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 05FD73AEB3\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 08:02:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m0281HW1030838\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 03:01:17 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m0281HWA030836\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 03:01:17 -0500\nDate: Wed, 2 Jan 2008 03:01:17 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r39665 - in reset-pass/branches/sakai_2-4-x: . reset-pass\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 03:02:55 2008\nX-DSPAM-Confidence: 0.8472\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39665\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2008-01-02 03:00:53 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39665\n\nAdded:\nreset-pass/branches/sakai_2-4-x/project.properties\nreset-pass/branches/sakai_2-4-x/project.xml\nreset-pass/branches/sakai_2-4-x/reset-pass/project.properties\nreset-pass/branches/sakai_2-4-x/reset-pass/project.xml\nLog:\nSAK-11961 add the maven 1 build artefacts\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Wed Jan  2 02:53:22 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 02 Jan 2008 02:53:22 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 02 Jan 2008 02:53:22 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby faithful.mail.umich.edu () with ESMTP id m027rJge029126;\n\tWed, 2 Jan 2008 02:53:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 477B42E9.8268C.19690 ; \n\t 2 Jan 2008 02:53:16 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6228366375;\n\tWed,  2 Jan 2008 07:53:22 +0000 (GMT)\nMessage-ID: <200801020751.m027plRv030812@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 92\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 07:53:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 28C543AD6A\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 07:52:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m027plgG030814\n\tfor <source@collab.sakaiproject.org>; Wed, 2 Jan 2008 02:51:47 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m027plRv030812\n\tfor source@collab.sakaiproject.org; Wed, 2 Jan 2008 02:51:47 -0500\nDate: Wed, 2 Jan 2008 02:51:47 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r39664 - reset-pass/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Jan  2 02:53:22 2008\nX-DSPAM-Confidence: 0.9823\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39664\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2008-01-02 02:51:31 -0500 (Wed, 02 Jan 2008)\nNew Revision: 39664\n\nAdded:\nreset-pass/branches/sakai_2-4-x/\nLog:\nCut a 2-4-x branch\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Tue Jan  1 20:25:00 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 01 Jan 2008 20:25:00 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 01 Jan 2008 20:25:00 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby sleepers.mail.umich.edu () with ESMTP id m021OwVY022052;\n\tTue, 1 Jan 2008 20:24:58 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 477AE7E5.16A5A.21242 ; \n\t 1 Jan 2008 20:24:56 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 14B214EF08;\n\tWed,  2 Jan 2008 01:24:44 +0000 (GMT)\nMessage-ID: <200801020123.m021N2Q9030488@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 776\n          for <source@collab.sakaiproject.org>;\n          Wed, 2 Jan 2008 01:24:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 58DE123889\n\tfor <source@collab.sakaiproject.org>; Wed,  2 Jan 2008 01:24:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m021N3d3030490\n\tfor <source@collab.sakaiproject.org>; Tue, 1 Jan 2008 20:23:03 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m021N2Q9030488\n\tfor source@collab.sakaiproject.org; Tue, 1 Jan 2008 20:23:02 -0500\nDate: Tue, 1 Jan 2008 20:23:02 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39663 - in component/branches/SAK-12134/component-api/component/src/java/org/sakaiproject: component/api component/impl component/proxy util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Jan  1 20:25:00 2008\nX-DSPAM-Confidence: 0.8489\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39663\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2008-01-01 20:22:44 -0500 (Tue, 01 Jan 2008)\nNew Revision: 39663\n\nAdded:\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/ComponentManagerRegister.java\nRemoved:\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/NoisierDefaultListableBeanFactoryPreMerge.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/SakaiComponentApplicationContextX.java\nModified:\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/api/ComponentBeanFactory.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/api/ComponentManager.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/impl/DynamicDefaultSakaiProperties.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/impl/SpringCompMgr.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/proxy/ComponentManagerProxy.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/ComponentApplicationContext.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/ComponentsLoader.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/ContainerApplicationContext.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/NoisierDefaultListableBeanFactory.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/PropertyOverrideConfigurer.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/SpringComponentManager.java\nLog:\nSAK-12134\nWorking version using all exported from seperate application contexts,\nhowever, there appear to be some errors with duplicate initialization of components in more than one component manager.\n\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Tue Jan  1 07:40:27 2008\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 01 Jan 2008 07:40:27 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 01 Jan 2008 07:40:27 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby brazil.mail.umich.edu () with ESMTP id m01CeQwk003485;\n\tTue, 1 Jan 2008 07:40:26 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 477A34B4.AA373.1089 ; \n\t 1 Jan 2008 07:40:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EADB3AD70D;\n\tTue,  1 Jan 2008 12:40:16 +0000 (GMT)\nMessage-ID: <200801011238.m01CcxYc028903@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 998\n          for <source@collab.sakaiproject.org>;\n          Tue, 1 Jan 2008 12:40:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0B6DF3E831\n\tfor <source@collab.sakaiproject.org>; Tue,  1 Jan 2008 12:40:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id m01Cd0jm028905\n\tfor <source@collab.sakaiproject.org>; Tue, 1 Jan 2008 07:39:00 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id m01CcxYc028903\n\tfor source@collab.sakaiproject.org; Tue, 1 Jan 2008 07:38:59 -0500\nDate: Tue, 1 Jan 2008 07:38:59 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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!\n 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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Jan  1 07:40:27 2008\nX-DSPAM-Confidence: 0.6999\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39662\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2008-01-01 07:37:54 -0500 (Tue, 01 Jan 2008)\nNew Revision: 39662\n\nAdded:\ncomponent/branches/SAK-12134/component-api/component/src/config/org/sakaiproject/config/sakai-configuration.xml\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/impl/DynamicDefaultSakaiProperties.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/BeanFactoryPostProcessorCreator.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/ComponentApplicationContext.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/ContainerApplicationContext.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/NoisierDefaultListableBeanFactoryPreMerge.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/ReversiblePropertyOverrideConfigurer.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/SakaiComponentApplicationContextX.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/SakaiProperties.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/SakaiPropertyPromoter.java\ncomponent/branches/SAK-12134/component-impl/integration-test/\ncomponent/branches/SAK-12134/component-impl/integration-test/pom.xml\ncomponent/branches/SAK-12134/component-impl/integration-test/src/\ncomponent/branches/SAK-12134/component-impl/integration-test/src/java/\ncomponent/branches/SAK-12134/component-impl/integration-test/src/java/org/\ncomponent/branches/SAK-12134/component-impl/integration-test/src/java/org/sakaiproject/\ncomponent/branches/SAK-12134/component-impl/integration-test/src/java/org/sakaiproject/component/\ncomponent/branches/SAK-12134/component-impl/integration-test/src/java/org/sakaiproject/component/test/\ncomponent/branches/SAK-12134/component-impl/integration-test/src/java/org/sakaiproject/component/test/ITestComponent.java\ncomponent/branches/SAK-12134/component-impl/integration-test/src/java/org/sakaiproject/component/test/ITestProvider.java\ncomponent/branches/SAK-12134/component-impl/integration-test/src/java/org/sakaiproject/component/test/TestComponent.java\ncomponent/branches/SAK-12134/component-impl/integration-test/src/java/org/sakaiproject/component/test/TestProvider1.java\ncomponent/branches/SAK-12134/component-impl/integration-test/src/java/org/sakaiproject/component/test/TestProvider2.java\ncomponent/branches/SAK-12134/component-impl/integration-test/src/java/org/sakaiproject/component/test/dynamic/\ncomponent/branches/SAK-12134/component-impl/integration-test/src/java/org/sakaiproject/component/test/dynamic/DbPropertiesDao.java\ncomponent/branches/SAK-12134/component-impl/integration-test/src/test/\ncomponent/branches/SAK-12134/component-impl/integration-test/src/test/java/\ncomponent/branches/SAK-12134/component-impl/integration-test/src/test/java/org/\ncomponent/branches/SAK-12134/component-impl/integration-test/src/test/java/org/sakaiproject/\ncomponent/branches/SAK-12134/component-impl/integration-test/src/test/java/org/sakaiproject/component/\ncomponent/branches/SAK-12134/component-impl/integration-test/src/test/java/org/sakaiproject/component/ConfigurationLoadingTest.java\ncomponent/branches/SAK-12134/component-impl/integration-test/src/test/java/org/sakaiproject/component/DynamicConfigurationTest.java\ncomponent/branches/SAK-12134/component-impl/integration-test/src/test/resources/\ncomponent/branches/SAK-12134/component-impl/integration-test/src/test/resources/dynamic/\ncomponent/branches/SAK-12134/component-impl/integration-test/src/test/resources/dynamic/sakai-configuration.xml\ncomponent/branches/SAK-12134/component-impl/integration-test/src/test/resources/dynamic/sakai.properties\ncomponent/branches/SAK-12134/component-impl/integration-test/src/test/resources/filesystem/\ncomponent/branches/SAK-12134/component-impl/integration-test/src/test/resources/filesystem/sakai-configuration.xml\ncomponent/branches/SAK-12134/component-impl/integration-test/src/test/resources/filesystem/sakai.properties\ncomponent/branches/SAK-12134/component-impl/integration-test/src/test/resources/filesystem/some-peculiar.properties\ncomponent/branches/SAK-12134/component-impl/integration-test/src/test/resources/log4j.properties\ncomponent/branches/SAK-12134/component-impl/integration-test/src/webapp/\ncomponent/branches/SAK-12134/component-impl/integration-test/src/webapp/WEB-INF/\ncomponent/branches/SAK-12134/component-impl/integration-test/src/webapp/WEB-INF/components.xml\ncomponent/branches/SAK-12134/component-impl/integration-test/xdocs/\ncomponent/branches/SAK-12134/component-impl/integration-test/xdocs/README.txt\nModified:\ncomponent/branches/SAK-12134/component-api/.classpath\ncomponent/branches/SAK-12134/component-api/component/src/config/org/sakaiproject/config/sakai.properties\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/api/ComponentBeanFactory.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/api/ComponentManager.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/cover/ComponentManager.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/impl/SpringCompMgr.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/proxy/ComponentManagerProxy.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/ComponentsLoader.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/NoisierDefaultListableBeanFactory.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/SpringComponentManager.java\ncomponent/branches/SAK-12134/component-impl/impl/src/java/org/sakaiproject/component/impl/BasicConfigurationService.java\ncomponent/branches/SAK-12134/component-impl/pack/src/webapp/WEB-INF/components.xml\ncomponent/branches/SAK-12134/pom.xml\nLog:\nSAK-12134\nMerged Rays configuration branch \nTested 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 \nthe projects define their exports. I think I may have re-introduced some bindings to spring in the process of the merge.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Mon Dec 31 16:28:46 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 31 Dec 2007 16:28:46 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 31 Dec 2007 16:28:46 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby brazil.mail.umich.edu () with ESMTP id lBVLSjox014555;\n\tMon, 31 Dec 2007 16:28:46 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 47795F08.5BFAB.28069 ; \n\t31 Dec 2007 16:28:43 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 12225B6180;\n\tMon, 31 Dec 2007 21:28:42 +0000 (GMT)\nMessage-ID: <200712312127.lBVLRPqw021363@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 282\n          for <source@collab.sakaiproject.org>;\n          Mon, 31 Dec 2007 21:28:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 75F94226EC\n\tfor <source@collab.sakaiproject.org>; Mon, 31 Dec 2007 21:28:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBVLRPM1021365\n\tfor <source@collab.sakaiproject.org>; Mon, 31 Dec 2007 16:27:25 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBVLRPqw021363\n\tfor source@collab.sakaiproject.org; Mon, 31 Dec 2007 16:27:25 -0500\nDate: Mon, 31 Dec 2007 16:27:25 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39660 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 31 16:28:46 2007\nX-DSPAM-Confidence: 0.9872\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39660\n\nAuthor: zqian@umich.edu\nDate: 2007-12-31 16:27:23 -0500 (Mon, 31 Dec 2007)\nNew Revision: 39660\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerge fix to SAK-12543 into post-2-4:svn merge -r 39658:39659 https://source.sakaiproject.org/svn/assignment/trunk/\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Mon Dec 31 16:23:41 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 31 Dec 2007 16:23:41 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 31 Dec 2007 16:23:41 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby jacknife.mail.umich.edu () with ESMTP id lBVLNfqC019552;\n\tMon, 31 Dec 2007 16:23:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 47795DCA.EBF7E.29181 ; \n\t31 Dec 2007 16:23:36 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8B422B5EFA;\n\tMon, 31 Dec 2007 21:23:22 +0000 (GMT)\nMessage-ID: <200712312122.lBVLM6kP021351@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 757\n          for <source@collab.sakaiproject.org>;\n          Mon, 31 Dec 2007 21:23:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0FA4F226EC\n\tfor <source@collab.sakaiproject.org>; Mon, 31 Dec 2007 21:23:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBVLM6RT021353\n\tfor <source@collab.sakaiproject.org>; Mon, 31 Dec 2007 16:22:06 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBVLM6kP021351\n\tfor source@collab.sakaiproject.org; Mon, 31 Dec 2007 16:22:06 -0500\nDate: Mon, 31 Dec 2007 16:22:06 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39659 - assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 31 16:23:41 2007\nX-DSPAM-Confidence: 0.8501\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39659\n\nAuthor: zqian@umich.edu\nDate: 2007-12-31 16:22:03 -0500 (Mon, 31 Dec 2007)\nNew Revision: 39659\n\nModified:\nassignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nfix to SAK-12543: Assignment tool Adds a Zero at the end of point values under certain condition\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Mon Dec 31 14:57:11 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 31 Dec 2007 14:57:11 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 31 Dec 2007 14:57:11 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby fan.mail.umich.edu () with ESMTP id lBVJvBKO004445;\n\tMon, 31 Dec 2007 14:57:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 4779498E.1425A.16382 ; \n\t31 Dec 2007 14:57:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1F55AA16DD;\n\tMon, 31 Dec 2007 19:57:02 +0000 (GMT)\nMessage-ID: <200712311955.lBVJtnZl021268@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 982\n          for <source@collab.sakaiproject.org>;\n          Mon, 31 Dec 2007 19:56:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6613F3E83F\n\tfor <source@collab.sakaiproject.org>; Mon, 31 Dec 2007 19:56:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBVJtnBu021270\n\tfor <source@collab.sakaiproject.org>; Mon, 31 Dec 2007 14:55:49 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBVJtnZl021268\n\tfor source@collab.sakaiproject.org; Mon, 31 Dec 2007 14:55:49 -0500\nDate: Mon, 31 Dec 2007 14:55:49 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39658 - assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 31 14:57:11 2007\nX-DSPAM-Confidence: 0.9897\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39658\n\nAuthor: zqian@umich.edu\nDate: 2007-12-31 14:55:47 -0500 (Mon, 31 Dec 2007)\nNew Revision: 39658\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission_confirmation.vm\nLog:\nFix to SAK-10943 in pot-2-4:Submission notification fails silently for submitting users who don't have an email address\n\nOnly show email notification message when user has submitted the assignment\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Mon Dec 31 14:52:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 31 Dec 2007 14:52:50 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 31 Dec 2007 14:52:50 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby casino.mail.umich.edu () with ESMTP id lBVJqn9F022573;\n\tMon, 31 Dec 2007 14:52:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 4779488C.1FA4.27927 ; \n\t31 Dec 2007 14:52:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8512795840;\n\tMon, 31 Dec 2007 19:52:46 +0000 (GMT)\nMessage-ID: <200712311951.lBVJpP1j021254@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 928\n          for <source@collab.sakaiproject.org>;\n          Mon, 31 Dec 2007 19:52:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3EECA3E83B\n\tfor <source@collab.sakaiproject.org>; Mon, 31 Dec 2007 19:52:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBVJpPNp021256\n\tfor <source@collab.sakaiproject.org>; Mon, 31 Dec 2007 14:51:25 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBVJpP1j021254\n\tfor source@collab.sakaiproject.org; Mon, 31 Dec 2007 14:51:25 -0500\nDate: Mon, 31 Dec 2007 14:51:25 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39657 - assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 31 14:52:50 2007\nX-DSPAM-Confidence: 0.9887\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39657\n\nAuthor: zqian@umich.edu\nDate: 2007-12-31 14:51:23 -0500 (Mon, 31 Dec 2007)\nNew Revision: 39657\n\nModified:\nassignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission_confirmation.vm\nLog:\nFix to SAK-10943:Submission notification fails silently for submitting users who don't have an email address\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Mon Dec 31 14:42:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 31 Dec 2007 14:42:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 31 Dec 2007 14:42:19 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby awakenings.mail.umich.edu () with ESMTP id lBVJgIGS008193;\n\tMon, 31 Dec 2007 14:42:18 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 47794614.8E936.11188 ; \n\t31 Dec 2007 14:42:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5A364B5A58;\n\tMon, 31 Dec 2007 19:42:08 +0000 (GMT)\nMessage-ID: <200712311940.lBVJetrm021242@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 831\n          for <source@collab.sakaiproject.org>;\n          Mon, 31 Dec 2007 19:41:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CEBCB3E83B\n\tfor <source@collab.sakaiproject.org>; Mon, 31 Dec 2007 19:41:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBVJet7Q021244\n\tfor <source@collab.sakaiproject.org>; Mon, 31 Dec 2007 14:40:55 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBVJetrm021242\n\tfor source@collab.sakaiproject.org; Mon, 31 Dec 2007 14:40:55 -0500\nDate: Mon, 31 Dec 2007 14:40:55 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39656 - assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 31 14:42:19 2007\nX-DSPAM-Confidence: 0.9866\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39656\n\nAuthor: zqian@umich.edu\nDate: 2007-12-31 14:40:53 -0500 (Mon, 31 Dec 2007)\nNew Revision: 39656\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission_confirmation.vm\nLog:\nfix in post-2-4 for SAK-10943:Submission notification fails silently for submitting users who don't have an email address\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Mon Dec 31 10:48:44 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 31 Dec 2007 10:48:44 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 31 Dec 2007 10:48:44 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby godsend.mail.umich.edu () with ESMTP id lBVFmhaV003627;\n\tMon, 31 Dec 2007 10:48:43 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 47790F55.57694.22780 ; \n\t31 Dec 2007 10:48:40 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1F463B5D93;\n\tMon, 31 Dec 2007 15:48:40 +0000 (GMT)\nMessage-ID: <200712311547.lBVFlFfL020924@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 676\n          for <source@collab.sakaiproject.org>;\n          Mon, 31 Dec 2007 15:48:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AF18540E9A\n\tfor <source@collab.sakaiproject.org>; Mon, 31 Dec 2007 15:48:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBVFlF75020926\n\tfor <source@collab.sakaiproject.org>; Mon, 31 Dec 2007 10:47:15 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBVFlFfL020924\n\tfor source@collab.sakaiproject.org; Mon, 31 Dec 2007 10:47:15 -0500\nDate: Mon, 31 Dec 2007 10:47:15 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 31 10:48:44 2007\nX-DSPAM-Confidence: 0.8473\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39655\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-12-31 10:47:13 -0500 (Mon, 31 Dec 2007)\nNew Revision: 39655\n\nAdded:\ngradebook/trunk/helper-app/project.properties\ngradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/helper/PermissionsErrorProducer.java\ngradebook/trunk/helper-app/src/webapp/content/templates/permissions-error.html\nModified:\ngradebook/trunk/.classpath\ngradebook/trunk/helper-app/pom.xml\ngradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/entity/GradebookEntryEntityProvider.java\ngradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/helper/AddGradebookItemProducer.java\ngradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/params/AddGradebookItemViewParams.java\ngradebook/trunk/helper-app/src/webapp/WEB-INF/applicationContext.xml\ngradebook/trunk/helper-app/src/webapp/WEB-INF/requestContext.xml\ngradebook/trunk/pom.xml\nLog:\nNOJIRA - Use entity broker for gradebook add/edit helper, set dependencies for GradebookService\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Mon Dec 31 09:04:07 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 31 Dec 2007 09:04:07 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 31 Dec 2007 09:04:07 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby score.mail.umich.edu () with ESMTP id lBVE46HY010097;\n\tMon, 31 Dec 2007 09:04:06 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 4778F6D0.24457.29822 ; \n\t31 Dec 2007 09:04:02 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E1019AE917;\n\tMon, 31 Dec 2007 14:03:55 +0000 (GMT)\nMessage-ID: <200712311402.lBVE2MHt020828@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1021\n          for <source@collab.sakaiproject.org>;\n          Mon, 31 Dec 2007 14:03:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D33FA3DF05\n\tfor <source@collab.sakaiproject.org>; Mon, 31 Dec 2007 14:03:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBVE2MLD020830\n\tfor <source@collab.sakaiproject.org>; Mon, 31 Dec 2007 09:02:22 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBVE2MHt020828\n\tfor source@collab.sakaiproject.org; Mon, 31 Dec 2007 09:02:22 -0500\nDate: Mon, 31 Dec 2007 09:02:22 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [sakai] svn commit: r39654 - gradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 31 09:04:07 2007\nX-DSPAM-Confidence: 0.9847\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39654\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-12-31 09:02:19 -0500 (Mon, 31 Dec 2007)\nNew Revision: 39654\n\nModified:\ngradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java\nLog:\nSAK-12175\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12175\nCreate methods required for gb integration with the Assignment2 tool\nfix new getAssignmentScore error\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom csev@umich.edu Sun Dec 30 22:44:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 30 Dec 2007 22:44:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 30 Dec 2007 22:44:30 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby brazil.mail.umich.edu () with ESMTP id lBV3iTtd002060;\n\tSun, 30 Dec 2007 22:44:29 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 47786597.E1D91.27792 ; \n\t30 Dec 2007 22:44:26 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3BAF5B36AC;\n\tMon, 31 Dec 2007 03:44:30 +0000 (GMT)\nMessage-ID: <200712310343.lBV3h9Ge019764@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 843\n          for <source@collab.sakaiproject.org>;\n          Mon, 31 Dec 2007 03:44:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 249363DFBB\n\tfor <source@collab.sakaiproject.org>; Mon, 31 Dec 2007 03:44:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBV3h9nx019766\n\tfor <source@collab.sakaiproject.org>; Sun, 30 Dec 2007 22:43:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBV3h9Ge019764\n\tfor source@collab.sakaiproject.org; Sun, 30 Dec 2007 22:43:09 -0500\nDate: Sun, 30 Dec 2007 22:43:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: csev@umich.edu\nSubject: [sakai] svn commit: r39653 - portal/branches/SAK-12402/portal-render-engine-impl/pack/src/webapp/vm/defaultskin\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Dec 30 22:44:30 2007\nX-DSPAM-Confidence: 0.8489\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39653\n\nAuthor: csev@umich.edu\nDate: 2007-12-30 22:43:07 -0500 (Sun, 30 Dec 2007)\nNew Revision: 39653\n\nModified:\nportal/branches/SAK-12402/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/site.vm\nLog:\nSAK-12402\n\nCatch the situation where there are no tabs and fix.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom csev@umich.edu Sun Dec 30 16:47:46 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 30 Dec 2007 16:47:46 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 30 Dec 2007 16:47:46 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby panther.mail.umich.edu () with ESMTP id lBULljT2001865;\n\tSun, 30 Dec 2007 16:47:45 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 477811FC.20F3E.1656 ; \n\t30 Dec 2007 16:47:42 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 32090B4D96;\n\tSun, 30 Dec 2007 21:47:44 +0000 (GMT)\nMessage-ID: <200712302146.lBULkVO0019485@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 81\n          for <source@collab.sakaiproject.org>;\n          Sun, 30 Dec 2007 21:47:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AEE793E232\n\tfor <source@collab.sakaiproject.org>; Sun, 30 Dec 2007 21:47:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBULkVx7019487\n\tfor <source@collab.sakaiproject.org>; Sun, 30 Dec 2007 16:46:31 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBULkVO0019485\n\tfor source@collab.sakaiproject.org; Sun, 30 Dec 2007 16:46:31 -0500\nDate: Sun, 30 Dec 2007 16:46:31 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: csev@umich.edu\nSubject: [sakai] svn commit: r39652 - in web/branches/SAK-12563/web-portlet/portlet/src: java/org/sakaiproject/portlets webapp/WEB-INF/sakai\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Dec 30 16:47:46 2007\nX-DSPAM-Confidence: 0.9830\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39652\n\nAuthor: csev@umich.edu\nDate: 2007-12-30 16:46:26 -0500 (Sun, 30 Dec 2007)\nNew Revision: 39652\n\nModified:\nweb/branches/SAK-12563/web-portlet/portlet/src/java/org/sakaiproject/portlets/SakaiIFrame.java\nweb/branches/SAK-12563/web-portlet/portlet/src/webapp/WEB-INF/sakai/SakaiIFrame.xml\nLog:\nSAK-12563\n\nChanges to catch up with my SAK-12402 branch.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom csev@umich.edu Sun Dec 30 16:46:59 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 30 Dec 2007 16:46:59 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 30 Dec 2007 16:46:59 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby chaos.mail.umich.edu () with ESMTP id lBULkwwV030660;\n\tSun, 30 Dec 2007 16:46:58 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 477811CC.4C15.18923 ; \n\t30 Dec 2007 16:46:54 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2DB6AB4D7A;\n\tSun, 30 Dec 2007 21:46:54 +0000 (GMT)\nMessage-ID: <200712302145.lBULjaZs019473@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 777\n          for <source@collab.sakaiproject.org>;\n          Sun, 30 Dec 2007 21:46:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9BFB03E234\n\tfor <source@collab.sakaiproject.org>; Sun, 30 Dec 2007 21:46:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBULja91019475\n\tfor <source@collab.sakaiproject.org>; Sun, 30 Dec 2007 16:45:36 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBULjaZs019473\n\tfor source@collab.sakaiproject.org; Sun, 30 Dec 2007 16:45:36 -0500\nDate: Sun, 30 Dec 2007 16:45:36 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: csev@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Dec 30 16:46:59 2007\nX-DSPAM-Confidence: 0.5435\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39651\n\nAuthor: csev@umich.edu\nDate: 2007-12-30 16:45:29 -0500 (Sun, 30 Dec 2007)\nNew Revision: 39651\n\nModified:\nportal/branches/SAK-12402/portal-api/api/src/java/org/sakaiproject/portal/api/Portal.java\nportal/branches/SAK-12402/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java\nportal/branches/SAK-12402/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/PageHandler.java\nportal/branches/SAK-12402/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java\nLog:\nSAK-12402\n\nFuther cleanup - introduce two new properties:\n\nsakai:portlet-pre-render - indicates that the portal is to pre-render portlet\ncontent before the view starts - this allows the portal to check to see if the \nportlet has requested to be switch to/from maximize mode on \nany particular request.\n\nsakai:prefer-maximize - This indicates that the tool always wants to \nbe maximized.  This makes most sense for non-JSR-168 tools that want \nto have a lot of horizontal and vertical space and want portal navigation\nto be as minimal as possible while the tool is active.\n\nThis branch is getting pretty mature now.  I need to write documentation\nabout these new features next.  I do need to do a line by line code review\nof all my changes since the start of the branch as well before I am happy.\nI also am writing a test plan for these features.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Sun Dec 30 13:33:59 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 30 Dec 2007 13:33:59 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 30 Dec 2007 13:33:59 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby score.mail.umich.edu () with ESMTP id lBUIXwFd020646;\n\tSun, 30 Dec 2007 13:33:58 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 4777E48C.8D27C.13354 ; \n\t30 Dec 2007 13:33:55 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 12B2DB4A20;\n\tSun, 30 Dec 2007 18:30:06 +0000 (GMT)\nMessage-ID: <200712301832.lBUIWam0019313@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 77\n          for <source@collab.sakaiproject.org>;\n          Sun, 30 Dec 2007 18:29:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7351723031\n\tfor <source@collab.sakaiproject.org>; Sun, 30 Dec 2007 18:33:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBUIWaEX019315\n\tfor <source@collab.sakaiproject.org>; Sun, 30 Dec 2007 13:32:36 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBUIWam0019313\n\tfor source@collab.sakaiproject.org; Sun, 30 Dec 2007 13:32:36 -0500\nDate: Sun, 30 Dec 2007 13:32:36 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r39650 - sam/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Dec 30 13:33:59 2007\nX-DSPAM-Confidence: 0.9779\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39650\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-12-30 13:32:35 -0500 (Sun, 30 Dec 2007)\nNew Revision: 39650\n\nAdded:\nsam/branches/SAK-12569/\nLog:\nSAK-12569 Branch of Samigo for Joshua Ryan\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Sun Dec 30 12:38:52 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 30 Dec 2007 12:38:52 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 30 Dec 2007 12:38:52 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby score.mail.umich.edu () with ESMTP id lBUHcp8S008941;\n\tSun, 30 Dec 2007 12:38:51 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 4777D7A5.D1D70.13288 ; \n\t30 Dec 2007 12:38:48 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6BE54B2662;\n\tSun, 30 Dec 2007 17:38:41 +0000 (GMT)\nMessage-ID: <200712301737.lBUHbRgl019208@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 65\n          for <source@collab.sakaiproject.org>;\n          Sun, 30 Dec 2007 17:38:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0714A40E93\n\tfor <source@collab.sakaiproject.org>; Sun, 30 Dec 2007 17:38:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBUHbSRW019210\n\tfor <source@collab.sakaiproject.org>; Sun, 30 Dec 2007 12:37:28 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBUHbRgl019208\n\tfor source@collab.sakaiproject.org; Sun, 30 Dec 2007 12:37:27 -0500\nDate: Sun, 30 Dec 2007 12:37:27 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Dec 30 12:38:52 2007\nX-DSPAM-Confidence: 0.8508\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39649\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-30 12:37:21 -0500 (Sun, 30 Dec 2007)\nNew Revision: 39649\n\nModified:\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\ncontent/trunk/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\nLog:\nSAK-12426\nChanged logging level to debug (instead of warn) for OverQuotaException and ServerOverloadException\nChanged logging level to debug (instead of warn) when attempting to remove a partially created resource fails (indicating no records exist for that resource-id).\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom csev@umich.edu Sun Dec 30 10:35:06 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 30 Dec 2007 10:35:06 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 30 Dec 2007 10:35:06 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby faithful.mail.umich.edu () with ESMTP id lBUFZ5lC016098;\n\tSun, 30 Dec 2007 10:35:05 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4777BAA3.9BC3D.14360 ; \n\t30 Dec 2007 10:35:02 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EFE49A7E31;\n\tSun, 30 Dec 2007 15:34:58 +0000 (GMT)\nMessage-ID: <200712301533.lBUFXiIE019044@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 931\n          for <source@collab.sakaiproject.org>;\n          Sun, 30 Dec 2007 15:34:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B99AB3DF9B\n\tfor <source@collab.sakaiproject.org>; Sun, 30 Dec 2007 15:34:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBUFXiFX019046\n\tfor <source@collab.sakaiproject.org>; Sun, 30 Dec 2007 10:33:44 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBUFXiIE019044\n\tfor source@collab.sakaiproject.org; Sun, 30 Dec 2007 10:33:44 -0500\nDate: Sun, 30 Dec 2007 10:33:44 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: csev@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Dec 30 10:35:06 2007\nX-DSPAM-Confidence: 0.5933\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39648\n\nAuthor: csev@umich.edu\nDate: 2007-12-30 10:33:39 -0500 (Sun, 30 Dec 2007)\nNew Revision: 39648\n\nModified:\nportal/branches/SAK-12402/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/PageHandler.java\nportal/branches/SAK-12402/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/site.vm\nLog:\nSAK-12402\n\nYet another step in the process where stuff is working...  Logic moved\nfrom the view file into the Java - per Ian.\n\nNext steps: Properties on tools to indicate JSR-168 preload-requested and \non a Sakai tool to request a frame view.\n\nGetting closer to the time to write some documentation.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom csev@umich.edu Sun Dec 30 10:01:32 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 30 Dec 2007 10:01:32 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 30 Dec 2007 10:01:32 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby casino.mail.umich.edu () with ESMTP id lBUF1VMY006155;\n\tSun, 30 Dec 2007 10:01:31 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4777B2C2.207F1.20881 ; \n\t30 Dec 2007 10:01:24 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1F208B3B3F;\n\tSun, 30 Dec 2007 15:01:19 +0000 (GMT)\nMessage-ID: <200712301500.lBUF0B4u019016@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 111\n          for <source@collab.sakaiproject.org>;\n          Sun, 30 Dec 2007 15:01:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6B7361D643\n\tfor <source@collab.sakaiproject.org>; Sun, 30 Dec 2007 15:01:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBUF0BGv019018\n\tfor <source@collab.sakaiproject.org>; Sun, 30 Dec 2007 10:00:11 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBUF0B4u019016\n\tfor source@collab.sakaiproject.org; Sun, 30 Dec 2007 10:00:11 -0500\nDate: Sun, 30 Dec 2007 10:00:11 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: csev@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Dec 30 10:01:32 2007\nX-DSPAM-Confidence: 0.6517\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39647\n\nAuthor: csev@umich.edu\nDate: 2007-12-30 10:00:03 -0500 (Sun, 30 Dec 2007)\nNew Revision: 39647\n\nModified:\nportal/branches/SAK-12402/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java\nportal/branches/SAK-12402/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/PageHandler.java\nportal/branches/SAK-12402/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java\nportal/branches/SAK-12402/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/WorksiteHandler.java\nportal/branches/SAK-12402/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/site-frame-top.vm\nportal/branches/SAK-12402/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/site.vm\nLog:\nSAK-12402\n\nRefactor step 1.  Checking in stuff that (once again) is working so I don't slide backwards.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gsilver@umich.edu Sat Dec 29 21:08:48 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 29 Dec 2007 21:08:48 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 29 Dec 2007 21:08:48 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby godsend.mail.umich.edu () with ESMTP id lBU28mAR005267;\n\tSat, 29 Dec 2007 21:08:48 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4776FDA8.9DAD4.5892 ; \n\t29 Dec 2007 21:08:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 349B356E8B;\n\tSun, 30 Dec 2007 02:07:26 +0000 (GMT)\nMessage-ID: <200712300207.lBU27ARw005364@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 223\n          for <source@collab.sakaiproject.org>;\n          Sun, 30 Dec 2007 02:07:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1A1AC3923E\n\tfor <source@collab.sakaiproject.org>; Sun, 30 Dec 2007 02:08:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBU27APJ005366\n\tfor <source@collab.sakaiproject.org>; Sat, 29 Dec 2007 21:07:10 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBU27ARw005364\n\tfor source@collab.sakaiproject.org; Sat, 29 Dec 2007 21:07:10 -0500\nDate: Sat, 29 Dec 2007 21:07:10 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gsilver@umich.edu\nSubject: [sakai] svn commit: r39646 - calendar/trunk/calendar-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec 29 21:08:48 2007\nX-DSPAM-Confidence: 0.8487\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39646\n\nAuthor: gsilver@umich.edu\nDate: 2007-12-29 21:07:07 -0500 (Sat, 29 Dec 2007)\nNew Revision: 39646\n\nModified:\ncalendar/trunk/calendar-tool/tool/src/bundle/calendar.properties\nLog:\nSAK-9349\nhttp://jira.sakaiproject.org/jira/browse/SAK-9349\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Sat Dec 29 14:48:54 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 29 Dec 2007 14:48:54 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 29 Dec 2007 14:48:54 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby chaos.mail.umich.edu () with ESMTP id lBTJmrTE006805;\n\tSat, 29 Dec 2007 14:48:53 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 4776A49F.728DB.31917 ; \n\t29 Dec 2007 14:48:50 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7949C5FFC1;\n\tSat, 29 Dec 2007 19:48:41 +0000 (GMT)\nMessage-ID: <200712291947.lBTJlVpc005131@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 842\n          for <source@collab.sakaiproject.org>;\n          Sat, 29 Dec 2007 19:48:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 938C03DD73\n\tfor <source@collab.sakaiproject.org>; Sat, 29 Dec 2007 19:48:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBTJlVPK005133\n\tfor <source@collab.sakaiproject.org>; Sat, 29 Dec 2007 14:47:31 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBTJlVpc005131\n\tfor source@collab.sakaiproject.org; Sat, 29 Dec 2007 14:47:31 -0500\nDate: Sat, 29 Dec 2007 14:47:31 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec 29 14:48:54 2007\nX-DSPAM-Confidence: 0.9852\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39645\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-29 14:47:11 -0500 (Sat, 29 Dec 2007)\nNew Revision: 39645\n\nAdded:\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/api/ComponentBeanFactory.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/impl/ContextLoader.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/impl/spring/\nRemoved:\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/impl/ContextLoader.java\nModified:\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/cover/ComponentManager.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/impl/SpringCompMgr.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/proxy/ComponentManagerProxy.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/ComponentMap.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/ComponentsLoader.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/NoisierDefaultListableBeanFactory.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/SpringComponentManager.java\nLog:\nSAK-12134\n\nHierachical SPring now working, removed all common refences to Spring in the components space.\n\nThe BeanFactory registeres exported beans based on usage and maintains a dependency graph\nNo proxies are required to make this work,\n\nnext step to move spring out of shared.\n\n\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom csev@umich.edu Sat Dec 29 10:29:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 29 Dec 2007 10:29:43 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 29 Dec 2007 10:29:43 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby fan.mail.umich.edu () with ESMTP id lBTFThod022121;\n\tSat, 29 Dec 2007 10:29:43 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 477667DD.8FF63.32182 ; \n\t29 Dec 2007 10:29:38 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5E489B269D;\n\tSat, 29 Dec 2007 15:29:29 +0000 (GMT)\nMessage-ID: <200712291528.lBTFSPXk004909@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 56\n          for <source@collab.sakaiproject.org>;\n          Sat, 29 Dec 2007 15:29:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 77CBA332C0\n\tfor <source@collab.sakaiproject.org>; Sat, 29 Dec 2007 15:29:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBTFSPKQ004911\n\tfor <source@collab.sakaiproject.org>; Sat, 29 Dec 2007 10:28:25 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBTFSPXk004909\n\tfor source@collab.sakaiproject.org; Sat, 29 Dec 2007 10:28:25 -0500\nDate: Sat, 29 Dec 2007 10:28:25 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: csev@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec 29 10:29:43 2007\nX-DSPAM-Confidence: 0.6186\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39644\n\nAuthor: csev@umich.edu\nDate: 2007-12-29 10:28:19 -0500 (Sat, 29 Dec 2007)\nNew Revision: 39644\n\nAdded:\nportal/branches/SAK-12402/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/site-frame-top.vm\nRemoved:\nportal/branches/SAK-12402/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/ftop.vm\nModified:\nportal/branches/SAK-12402/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java\nLog:\nFix last second typo and rename view file to make more sense.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom csev@umich.edu Sat Dec 29 10:11:22 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 29 Dec 2007 10:11:22 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 29 Dec 2007 10:11:22 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby awakenings.mail.umich.edu () with ESMTP id lBTFBLVd014628;\n\tSat, 29 Dec 2007 10:11:21 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 47766394.28724.19396 ; \n\t29 Dec 2007 10:11:19 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id F1E55B0FE6;\n\tSat, 29 Dec 2007 15:11:07 +0000 (GMT)\nMessage-ID: <200712291509.lBTF9u3h004880@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 929\n          for <source@collab.sakaiproject.org>;\n          Sat, 29 Dec 2007 15:10:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 999A023736\n\tfor <source@collab.sakaiproject.org>; Sat, 29 Dec 2007 15:10:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBTF9uRw004882\n\tfor <source@collab.sakaiproject.org>; Sat, 29 Dec 2007 10:09:56 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBTF9u3h004880\n\tfor source@collab.sakaiproject.org; Sat, 29 Dec 2007 10:09:56 -0500\nDate: Sat, 29 Dec 2007 10:09:56 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: csev@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec 29 10:11:22 2007\nX-DSPAM-Confidence: 0.6567\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39643\n\nAuthor: csev@umich.edu\nDate: 2007-12-29 10:09:51 -0500 (Sat, 29 Dec 2007)\nNew Revision: 39643\n\nModified:\nportal/branches/SAK-12402/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java\nportal/branches/SAK-12402/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/ftop.vm\nportal/branches/SAK-12402/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/site.vm\nLog:\nBasic Navigation worked out.\n\nIf you navigate to the site from another site and the first tool requests maximize \nyou see maximize.\n\nIf there is only one tool on a site and it requests maximize, it always gets it.  In this\ncase the tool name is not even shown in the frame view - the site link becomes the \"reset\"\nfor the tool.\n\nIf in Maximize mode, you click on the site or my workspace - maximize mode is suppressed\nfor the next display - unless there is only one tool - you always see the tool list.  When\nyou then click on a tool - if it wants maximize it gets it.  This way even when all tools\nwant maximize, you can move between tools by clicking on the site link in maximize view.\n\nThe best usability will likely be if the first tool in the site (like the Home tool) does \nnot request Maximize.  However - if this is the case, here is the sequence.  (1) Navigate \nto the site for the first time - first tool will be selected and shown maximally. (2) \nClick the Site tab - tools will be shown - the first tool will be selected and shown \nin non-maximized mode.  (3) Since you cannot click on a selected tool - you must click\non another tool and then click on the first tool to re-maximize the first tool, (4) \nif you click on a tool which also requests maximize, you must then click the site in\nMaximize view and then click on the first tool.  The simple rule is that when you \nare in Maximized view and click on a site - you will see the tools unless there is only\none tool available.\n\nAgain - the best usability will happen if you build sites such that the first tool doest\nnot request Maximize unless there is only one tool on the site.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom csev@umich.edu Fri Dec 28 23:00:54 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 28 Dec 2007 23:00:54 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 28 Dec 2007 23:00:54 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby godsend.mail.umich.edu () with ESMTP id lBT40rea015606;\n\tFri, 28 Dec 2007 23:00:53 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 4775C66F.9840A.28296 ; \n\t28 Dec 2007 23:00:50 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0648A7DEB7;\n\tSat, 29 Dec 2007 04:00:45 +0000 (GMT)\nMessage-ID: <200712290359.lBT3xa6q003568@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 243\n          for <source@collab.sakaiproject.org>;\n          Sat, 29 Dec 2007 04:00:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BA3CD406EB\n\tfor <source@collab.sakaiproject.org>; Sat, 29 Dec 2007 04:00:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBT3xaSn003570\n\tfor <source@collab.sakaiproject.org>; Fri, 28 Dec 2007 22:59:36 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBT3xa6q003568\n\tfor source@collab.sakaiproject.org; Fri, 28 Dec 2007 22:59:36 -0500\nDate: Fri, 28 Dec 2007 22:59:36 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: csev@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 28 23:00:54 2007\nX-DSPAM-Confidence: 0.5304\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39642\n\nAuthor: csev@umich.edu\nDate: 2007-12-28 22:59:30 -0500 (Fri, 28 Dec 2007)\nNew Revision: 39642\n\nModified:\nportal/branches/SAK-12402/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java\nportal/branches/SAK-12402/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java\nportal/branches/SAK-12402/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/ftop.vm\nportal/branches/SAK-12402/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/site.vm\nLog:\nSAK-12402\n\nIntermediate state - now all tools - JSR-168 and non-JSR-168 appear \nin the frameset.  Using this mode to think through navigation between\ntools when in framesets.\n\nProbably time to start migrating the trigger code from site.vm back into \nSkinnablePortal.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom josrodri@iupui.edu Fri Dec 28 16:45:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 28 Dec 2007 16:45:42 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 28 Dec 2007 16:45:42 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby faithful.mail.umich.edu () with ESMTP id lBSLjfep029293;\n\tFri, 28 Dec 2007 16:45:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 47756E7B.9324.11613 ; \n\t28 Dec 2007 16:45:33 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0C6BFB1BBA;\n\tFri, 28 Dec 2007 21:45:30 +0000 (GMT)\nMessage-ID: <200712282144.lBSLiPoi003290@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 485\n          for <source@collab.sakaiproject.org>;\n          Fri, 28 Dec 2007 21:45:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7ED463C227\n\tfor <source@collab.sakaiproject.org>; Fri, 28 Dec 2007 21:45:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBSLiP8c003292\n\tfor <source@collab.sakaiproject.org>; Fri, 28 Dec 2007 16:44:25 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBSLiPoi003290\n\tfor source@collab.sakaiproject.org; Fri, 28 Dec 2007 16:44:25 -0500\nDate: Fri, 28 Dec 2007 16:44:25 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: josrodri@iupui.edu\nSubject: [sakai] svn commit: r39641 - in podcasts/trunk/podcasts-app/src/webapp: css podcasts\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 28 16:45:42 2007\nX-DSPAM-Confidence: 0.8479\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39641\n\nAuthor: josrodri@iupui.edu\nDate: 2007-12-28 16:44:24 -0500 (Fri, 28 Dec 2007)\nNew Revision: 39641\n\nModified:\npodcasts/trunk/podcasts-app/src/webapp/css/podcaster.css\npodcasts/trunk/podcasts-app/src/webapp/podcasts/podMain.jsp\nLog:\nSAK-9882: refactored podMain.jsp the right way (at least much closer to)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom josrodri@iupui.edu Fri Dec 28 14:16:46 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 28 Dec 2007 14:16:46 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 28 Dec 2007 14:16:46 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby sleepers.mail.umich.edu () with ESMTP id lBSJGjJs009847;\n\tFri, 28 Dec 2007 14:16:45 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 47754B97.6E649.3129 ; \n\t28 Dec 2007 14:16:42 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3492D56925;\n\tFri, 28 Dec 2007 19:16:39 +0000 (GMT)\nMessage-ID: <200712281915.lBSJFYkN003095@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 914\n          for <source@collab.sakaiproject.org>;\n          Fri, 28 Dec 2007 19:16:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id ACCBA42967\n\tfor <source@collab.sakaiproject.org>; Fri, 28 Dec 2007 19:16:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBSJFY7Z003097\n\tfor <source@collab.sakaiproject.org>; Fri, 28 Dec 2007 14:15:34 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBSJFYkN003095\n\tfor source@collab.sakaiproject.org; Fri, 28 Dec 2007 14:15:34 -0500\nDate: Fri, 28 Dec 2007 14:15:34 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: josrodri@iupui.edu\nSubject: [sakai] svn commit: r39640 - gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 28 14:16:46 2007\nX-DSPAM-Confidence: 0.7608\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39640\n\nAuthor: josrodri@iupui.edu\nDate: 2007-12-28 14:15:33 -0500 (Fri, 28 Dec 2007)\nNew Revision: 39640\n\nModified:\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/SpreadsheetUploadBean.java\nLog:\nSAK-12549: Did not deal properly with a valid assignment but no grades recorded\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom csev@umich.edu Fri Dec 28 12:15:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 28 Dec 2007 12:15:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 28 Dec 2007 12:15:25 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby score.mail.umich.edu () with ESMTP id lBSHFO3b022691;\n\tFri, 28 Dec 2007 12:15:24 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 47752F26.3037E.17702 ; \n\t28 Dec 2007 12:15:20 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id F3808B184B;\n\tFri, 28 Dec 2007 17:13:42 +0000 (GMT)\nMessage-ID: <200712281713.lBSHDjDK002939@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 760\n          for <source@collab.sakaiproject.org>;\n          Fri, 28 Dec 2007 17:13:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A9E523BE01\n\tfor <source@collab.sakaiproject.org>; Fri, 28 Dec 2007 17:14:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBSHDjUF002941\n\tfor <source@collab.sakaiproject.org>; Fri, 28 Dec 2007 12:13:45 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBSHDjDK002939\n\tfor source@collab.sakaiproject.org; Fri, 28 Dec 2007 12:13:45 -0500\nDate: Fri, 28 Dec 2007 12:13:45 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: csev@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 28 12:15:25 2007\nX-DSPAM-Confidence: 0.5717\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39639\n\nAuthor: csev@umich.edu\nDate: 2007-12-28 12:11:44 -0500 (Fri, 28 Dec 2007)\nNew Revision: 39639\n\nModified:\nportal/branches/SAK-12402/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java\nportal/branches/SAK-12402/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java\nportal/branches/SAK-12402/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/ftop.vm\nportal/branches/SAK-12402/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/site.vm\nLog:\nAdded reset capability, added a third tab for the Tool Title which both \nappears to be selected and is the reset URL.  Experimented with trying \nto move the Edit icon around - failed - will leave that to the pros :)\n\nNeed to add a popup confirming desire to reset.\n\nNext steps - make it so any tool can use this feature - not just \nJSR-168 tools.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Fri Dec 28 12:08:11 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 28 Dec 2007 12:08:11 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 28 Dec 2007 12:08:11 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby sleepers.mail.umich.edu () with ESMTP id lBSH8A4b032583;\n\tFri, 28 Dec 2007 12:08:10 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 47752D74.B62D5.31391 ; \n\t28 Dec 2007 12:08:07 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3AF6963913;\n\tFri, 28 Dec 2007 17:08:04 +0000 (GMT)\nMessage-ID: <200712281706.lBSH6tVw002921@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 76\n          for <source@collab.sakaiproject.org>;\n          Fri, 28 Dec 2007 17:07:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3B07B3BE06\n\tfor <source@collab.sakaiproject.org>; Fri, 28 Dec 2007 17:07:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBSH6u7B002923\n\tfor <source@collab.sakaiproject.org>; Fri, 28 Dec 2007 12:06:56 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBSH6tVw002921\n\tfor source@collab.sakaiproject.org; Fri, 28 Dec 2007 12:06:55 -0500\nDate: Fri, 28 Dec 2007 12:06:55 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 28 12:08:11 2007\nX-DSPAM-Confidence: 0.8464\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39638\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-28 12:06:41 -0500 (Fri, 28 Dec 2007)\nNew Revision: 39638\n\nModified:\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/impl/ContextLoader.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/impl/SpringCompMgr.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/ComponentsLoader.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/NoisierDefaultListableBeanFactory.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/SpringComponentManager.java\ncomponent/branches/SAK-12134/component-shared-deploy/pom.xml\nLog:\nSAK-12134\nHierachical Spring Contexts.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom csev@umich.edu Fri Dec 28 11:56:40 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 28 Dec 2007 11:56:40 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 28 Dec 2007 11:56:39 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby sleepers.mail.umich.edu () with ESMTP id lBSGucsU028549;\n\tFri, 28 Dec 2007 11:56:38 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 47752AC0.F0495.18136 ; \n\t28 Dec 2007 11:56:35 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EE1D06E108;\n\tFri, 28 Dec 2007 16:56:31 +0000 (GMT)\nMessage-ID: <200712281655.lBSGtLvP002893@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 501\n          for <source@collab.sakaiproject.org>;\n          Fri, 28 Dec 2007 16:56:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 683AA3BE06\n\tfor <source@collab.sakaiproject.org>; Fri, 28 Dec 2007 16:56:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBSGtLO0002895\n\tfor <source@collab.sakaiproject.org>; Fri, 28 Dec 2007 11:55:21 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBSGtLvP002893\n\tfor source@collab.sakaiproject.org; Fri, 28 Dec 2007 11:55:21 -0500\nDate: Fri, 28 Dec 2007 11:55:21 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: csev@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 28 11:56:39 2007\nX-DSPAM-Confidence: 0.7599\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39637\n\nAuthor: csev@umich.edu\nDate: 2007-12-28 11:55:15 -0500 (Fri, 28 Dec 2007)\nNew Revision: 39637\n\nRemoved:\nweb/branches/SAK-12563/web-portlet/portlet/src/java/org/sakaiproject/portlet/util/JSPHelper.java\nModified:\nweb/branches/SAK-12563/web-portlet/portlet/src/bundle/vm/edit.vm\nweb/branches/SAK-12563/web-portlet/portlet/src/java/org/sakaiproject/portlets/SakaiIFrame.java\nweb/branches/SAK-12563/web-portlet/portlet/src/webapp/WEB-INF/portlet.xml\nLog:\nbeginning code merge from Web Content Tool\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Dec 27 21:41:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 27 Dec 2007 21:41:53 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 27 Dec 2007 21:41:53 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby fan.mail.umich.edu () with ESMTP id lBS2fqSw002835;\n\tThu, 27 Dec 2007 21:41:52 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 4774626A.49356.31043 ; \n\t27 Dec 2007 21:41:49 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 42281814D1;\n\tFri, 28 Dec 2007 02:41:41 +0000 (GMT)\nMessage-ID: <200712280240.lBS2eTSo032192@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 19\n          for <source@collab.sakaiproject.org>;\n          Fri, 28 Dec 2007 02:41:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9DFA03F5F7\n\tfor <source@collab.sakaiproject.org>; Fri, 28 Dec 2007 02:41:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBS2eT7j032194\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 21:40:29 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBS2eTSo032192\n\tfor source@collab.sakaiproject.org; Thu, 27 Dec 2007 21:40:29 -0500\nDate: Thu, 27 Dec 2007 21:40:29 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 27 21:41:53 2007\nX-DSPAM-Confidence: 0.7610\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39636\n\nAuthor: zqian@umich.edu\nDate: 2007-12-27 21:40:21 -0500 (Thu, 27 Dec 2007)\nNew Revision: 39636\n\nModified:\nassignment/branches/post-2-4/assignment-impl/impl/project.xml\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/SchemaConversionHandler.java\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/SerializableSubmissionAccess.java\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/AssignmentSubmissionAccess.java\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/CombineDuplicateSubmissionsConversionHandler.java\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/RemoveDuplicateSubmissionsConversionHandler.java\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionController.java\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SubmitterIdAssignmentsConversionHandler.java\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/UpgradeSchema.java\nassignment/branches/post-2-4/assignment-impl/pack/project.xml\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm\nassignment/branches/post-2-4/runconversion.sh\nassignment/branches/post-2-4/upgradeschema_mysql.config\nassignment/branches/post-2-4/upgradeschema_oracle.config\nLog:\nrelated to SAK-11821.\n\nMerge the branch post-2-4-umich back into post-2-4 branch for further conversion script fixes.\n\nsvn merge -r 39156:HEAD https://source.sakaiproject.org/svn//assignment/branches/post-2-4-umich/\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Dec 27 21:23:45 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 27 Dec 2007 21:23:45 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 27 Dec 2007 21:23:45 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby brazil.mail.umich.edu () with ESMTP id lBS2NibU021360;\n\tThu, 27 Dec 2007 21:23:44 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 47745E2B.E0F5C.25739 ; \n\t27 Dec 2007 21:23:42 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D1D9458377;\n\tFri, 28 Dec 2007 02:23:38 +0000 (GMT)\nMessage-ID: <200712280222.lBS2MXro032178@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 511\n          for <source@collab.sakaiproject.org>;\n          Fri, 28 Dec 2007 02:23:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A65F62319C\n\tfor <source@collab.sakaiproject.org>; Fri, 28 Dec 2007 02:23:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBS2MX6N032180\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 21:22:33 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBS2MXro032178\n\tfor source@collab.sakaiproject.org; Thu, 27 Dec 2007 21:22:33 -0500\nDate: Thu, 27 Dec 2007 21:22:33 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39635 - assignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 27 21:23:45 2007\nX-DSPAM-Confidence: 0.9865\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39635\n\nAuthor: zqian@umich.edu\nDate: 2007-12-27 21:22:31 -0500 (Thu, 27 Dec 2007)\nNew Revision: 39635\n\nModified:\nassignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/CombineDuplicateSubmissionsConversionHandler.java\nLog:\nfixed the problem of leaving Base64 encoded String inside the various previous grade information\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom knoop@umich.edu Thu Dec 27 17:54:58 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 27 Dec 2007 17:54:58 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 27 Dec 2007 17:54:58 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby casino.mail.umich.edu () with ESMTP id lBRMsvgC018508;\n\tThu, 27 Dec 2007 17:54:57 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 47742D3C.50CA8.17416 ; \n\t27 Dec 2007 17:54:55 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4A9A2B09DD;\n\tThu, 27 Dec 2007 22:53:08 +0000 (GMT)\nMessage-ID: <200712272253.lBRMrsju032005@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 131\n          for <source@collab.sakaiproject.org>;\n          Thu, 27 Dec 2007 22:52:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6D54431F57\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 22:54:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBRMrsFX032007\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 17:53:54 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBRMrsju032005\n\tfor source@collab.sakaiproject.org; Thu, 27 Dec 2007 17:53:54 -0500\nDate: Thu, 27 Dec 2007 17:53:54 -0500\nTo: source@collab.sakaiproject.org\nFrom: knoop@umich.edu\nSubject: [svn] revprop propchange - r38445 svn:log\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 27 17:54:58 2007\nX-DSPAM-Confidence: 0.9776\nX-DSPAM-Probability: 0.0000\n\nAuthor: knoop@umich.edu\nRevision: 38445\nProperty Name: svn:log\n\nNew Property Value:\nSAK-12239\nCreating branch in util for work on porting content performance improvements from 2.5.x to 2.4.x\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom knoop@umich.edu Thu Dec 27 17:54:31 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 27 Dec 2007 17:54:31 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 27 Dec 2007 17:54:31 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby fan.mail.umich.edu () with ESMTP id lBRMsVLV017439;\n\tThu, 27 Dec 2007 17:54:31 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 47742D1D.C6E77.29734 ; \n\t27 Dec 2007 17:54:29 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 52B38B09CE;\n\tThu, 27 Dec 2007 22:52:38 +0000 (GMT)\nMessage-ID: <200712272253.lBRMrOa3031989@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 692\n          for <source@collab.sakaiproject.org>;\n          Thu, 27 Dec 2007 22:52:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E87B231F57\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 22:54:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBRMrOE9031991\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 17:53:24 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBRMrOa3031989\n\tfor source@collab.sakaiproject.org; Thu, 27 Dec 2007 17:53:24 -0500\nDate: Thu, 27 Dec 2007 17:53:24 -0500\nTo: source@collab.sakaiproject.org\nFrom: knoop@umich.edu\nSubject: [svn] revprop propchange - r38444 svn:log\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 27 17:54:31 2007\nX-DSPAM-Confidence: 0.9776\nX-DSPAM-Probability: 0.0000\n\nAuthor: knoop@umich.edu\nRevision: 38444\nProperty Name: svn:log\n\nNew Property Value:\nSAK-12239\nCreating branch in entity for work on porting content performance improvements from 2.5.x to 2.4.x\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom knoop@umich.edu Thu Dec 27 17:53:56 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 27 Dec 2007 17:53:56 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 27 Dec 2007 17:53:56 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby flawless.mail.umich.edu () with ESMTP id lBRMrtgL023425;\n\tThu, 27 Dec 2007 17:53:55 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 47742CFD.79F5C.32351 ; \n\t27 Dec 2007 17:53:52 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D3905B09D4;\n\tThu, 27 Dec 2007 22:52:04 +0000 (GMT)\nMessage-ID: <200712272252.lBRMqjXC031973@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 143\n          for <source@collab.sakaiproject.org>;\n          Thu, 27 Dec 2007 22:51:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 03F8B31F57\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 22:53:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBRMqjUK031975\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 17:52:45 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBRMqjXC031973\n\tfor source@collab.sakaiproject.org; Thu, 27 Dec 2007 17:52:45 -0500\nDate: Thu, 27 Dec 2007 17:52:45 -0500\nTo: source@collab.sakaiproject.org\nFrom: knoop@umich.edu\nSubject: [svn] revprop propchange - r38443 svn:log\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 27 17:53:56 2007\nX-DSPAM-Confidence: 0.9797\nX-DSPAM-Probability: 0.0000\n\nAuthor: knoop@umich.edu\nRevision: 38443\nProperty Name: svn:log\n\nNew Property Value:\nSAK-12239\nCreating branch in db for work on porting content performance improvements from 2.5.x to 2.4.x\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom knoop@umich.edu Thu Dec 27 17:52:45 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 27 Dec 2007 17:52:45 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 27 Dec 2007 17:52:45 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby mission.mail.umich.edu () with ESMTP id lBRMqiis029928;\n\tThu, 27 Dec 2007 17:52:44 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 47742CB6.1B00B.27549 ; \n\t27 Dec 2007 17:52:40 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BFB7BB09CE;\n\tThu, 27 Dec 2007 22:50:52 +0000 (GMT)\nMessage-ID: <200712272251.lBRMpcwg031956@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 871\n          for <source@collab.sakaiproject.org>;\n          Thu, 27 Dec 2007 22:50:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 671A742905\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 22:52:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBRMpcMX031958\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 17:51:38 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBRMpcwg031956\n\tfor source@collab.sakaiproject.org; Thu, 27 Dec 2007 17:51:38 -0500\nDate: Thu, 27 Dec 2007 17:51:38 -0500\nTo: source@collab.sakaiproject.org\nFrom: knoop@umich.edu\nSubject: [svn] revprop propchange - r38438 svn:log\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 27 17:52:45 2007\nX-DSPAM-Confidence: 0.9776\nX-DSPAM-Probability: 0.0000\n\nAuthor: knoop@umich.edu\nRevision: 38438\nProperty Name: svn:log\n\nNew Property Value:\nSAK-12239\nCreating branch in entity for work on porting content performance improvements from 2.5.x to 2.4.x\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom knoop@umich.edu Thu Dec 27 17:52:14 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 27 Dec 2007 17:52:14 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 27 Dec 2007 17:52:14 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby godsend.mail.umich.edu () with ESMTP id lBRMqDgW022521;\n\tThu, 27 Dec 2007 17:52:13 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 47742C97.11665.23903 ; \n\t27 Dec 2007 17:52:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EE25FB08E9;\n\tThu, 27 Dec 2007 22:50:20 +0000 (GMT)\nMessage-ID: <200712272250.lBRMovO5031940@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 163\n          for <source@collab.sakaiproject.org>;\n          Thu, 27 Dec 2007 22:50:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AE38E3E4C7\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 22:51:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBRMowKC031942\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 17:50:58 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBRMovO5031940\n\tfor source@collab.sakaiproject.org; Thu, 27 Dec 2007 17:50:57 -0500\nDate: Thu, 27 Dec 2007 17:50:57 -0500\nTo: source@collab.sakaiproject.org\nFrom: knoop@umich.edu\nSubject: [svn] revprop propchange - r38442 svn:log\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 27 17:52:14 2007\nX-DSPAM-Confidence: 0.9793\nX-DSPAM-Probability: 0.0000\n\nAuthor: knoop@umich.edu\nRevision: 38442\nProperty Name: svn:log\n\nNew Property Value:\nSAK-12239\nCreating branch in content for work on porting content performance improvements from 2.5.x to 2.4.x\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Thu Dec 27 13:47:44 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 27 Dec 2007 13:47:44 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 27 Dec 2007 13:47:44 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby mission.mail.umich.edu () with ESMTP id lBRIlh5T022091;\n\tThu, 27 Dec 2007 13:47:43 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 4773F344.1D75.1160 ; \n\t27 Dec 2007 13:47:34 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BA61C4FE86;\n\tThu, 27 Dec 2007 18:45:38 +0000 (GMT)\nMessage-ID: <200712271846.lBRIkLDG031709@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 88\n          for <source@collab.sakaiproject.org>;\n          Thu, 27 Dec 2007 18:45:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 88BD44294A\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 18:47:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBRIkLkU031711\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 13:46:21 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBRIkLDG031709\n\tfor source@collab.sakaiproject.org; Thu, 27 Dec 2007 13:46:21 -0500\nDate: Thu, 27 Dec 2007 13:46:21 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39634 - in msgcntr/trunk/messageforums-hbm/src: java/org/sakaiproject/component/app/messageforums/dao/hibernate sql/mysql sql/oracle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 27 13:47:44 2007\nX-DSPAM-Confidence: 0.9857\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39634\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-27 13:46:19 -0500 (Thu, 27 Dec 2007)\nNew Revision: 39634\n\nAdded:\nmsgcntr/trunk/messageforums-hbm/src/sql/mysql/SAK-8421.sql\nmsgcntr/trunk/messageforums-hbm/src/sql/oracle/SAK-8421.sql\nModified:\nmsgcntr/trunk/messageforums-hbm/src/java/org/sakaiproject/component/app/messageforums/dao/hibernate/UnreadStatus.hbm.xml\nLog:\nhttp://bugs.sakaiproject.org/jira/browse/SAK-8421\n=>\nadd indexes.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Thu Dec 27 12:11:07 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 27 Dec 2007 12:11:07 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 27 Dec 2007 12:11:07 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby casino.mail.umich.edu () with ESMTP id lBRHB6HN006786;\n\tThu, 27 Dec 2007 12:11:06 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 4773DCA4.4DCF7.676 ; \n\t27 Dec 2007 12:11:03 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A812CA1E55;\n\tThu, 27 Dec 2007 17:10:56 +0000 (GMT)\nMessage-ID: <200712271709.lBRH9tAQ031599@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 356\n          for <source@collab.sakaiproject.org>;\n          Thu, 27 Dec 2007 17:10:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4C5E12398B\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 17:10:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBRH9tF6031601\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 12:09:55 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBRH9tAQ031599\n\tfor source@collab.sakaiproject.org; Thu, 27 Dec 2007 12:09:55 -0500\nDate: Thu, 27 Dec 2007 12:09:55 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r39633 - content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 27 12:11:07 2007\nX-DSPAM-Confidence: 0.8480\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39633\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-27 12:09:51 -0500 (Thu, 27 Dec 2007)\nNew Revision: 39633\n\nModified:\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlOracle.java\nLog:\nSAK-12501\nInclude column-specs in new oracle statement\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Thu Dec 27 10:24:11 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 27 Dec 2007 10:24:11 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 27 Dec 2007 10:24:11 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby flawless.mail.umich.edu () with ESMTP id lBRFOBaX013956;\n\tThu, 27 Dec 2007 10:24:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 4773C395.7007A.5519 ; \n\t27 Dec 2007 10:24:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BA04551D31;\n\tThu, 27 Dec 2007 15:19:58 +0000 (GMT)\nMessage-ID: <200712271522.lBRFM0nt031538@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 904\n          for <source@collab.sakaiproject.org>;\n          Thu, 27 Dec 2007 15:19:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8B28242903\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 15:22:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBRFM1tS031540\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 10:22:01 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBRFM0nt031538\n\tfor source@collab.sakaiproject.org; Thu, 27 Dec 2007 10:22:01 -0500\nDate: Thu, 27 Dec 2007 10:22:01 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r39632 - content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 27 10:24:11 2007\nX-DSPAM-Confidence: 0.9857\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39632\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-27 10:21:57 -0500 (Thu, 27 Dec 2007)\nNew Revision: 39632\n\nModified:\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlOracle.java\nLog:\nSAK-12501\nRevised oracle sql syntax.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom csev@umich.edu Thu Dec 27 10:20:38 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 27 Dec 2007 10:20:38 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 27 Dec 2007 10:20:38 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby brazil.mail.umich.edu () with ESMTP id lBRFKbD8031431;\n\tThu, 27 Dec 2007 10:20:37 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 4773C2BA.F0190.31439 ; \n\t27 Dec 2007 10:20:29 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E250F52EC1;\n\tThu, 27 Dec 2007 15:17:22 +0000 (GMT)\nMessage-ID: <200712271519.lBRFJPw8031526@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 22\n          for <source@collab.sakaiproject.org>;\n          Thu, 27 Dec 2007 15:17:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E0702428F6\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 15:20:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBRFJPK9031528\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 10:19:25 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBRFJPw8031526\n\tfor source@collab.sakaiproject.org; Thu, 27 Dec 2007 10:19:25 -0500\nDate: Thu, 27 Dec 2007 10:19:25 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: csev@umich.edu\nSubject: [sakai] svn commit: r39631 - mailarchive/branches/SAK-11544/mailarchive-tool/tool/src/java/org/sakaiproject/mailarchive/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 27 10:20:38 2007\nX-DSPAM-Confidence: 0.8504\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39631\n\nAuthor: csev@umich.edu\nDate: 2007-12-27 10:19:23 -0500 (Thu, 27 Dec 2007)\nNew Revision: 39631\n\nModified:\nmailarchive/branches/SAK-11544/mailarchive-tool/tool/src/java/org/sakaiproject/mailarchive/tool/MailboxAction.java\nLog:\nSAK-11544\n\nCommit of some test code - please don't look at this - it is a bit of refactor in Mail Action\nand a bad hack to fill up a mail archive by pressing the options button.  I just wanted to put\nthis in my happy little branch so I did not have to keep carrying this code around manually.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom csev@umich.edu Thu Dec 27 10:11:09 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 27 Dec 2007 10:11:09 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 27 Dec 2007 10:11:09 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby mission.mail.umich.edu () with ESMTP id lBRFB81A016942;\n\tThu, 27 Dec 2007 10:11:08 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 4773C082.2F7FE.5749 ; \n\t27 Dec 2007 10:11:05 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9A3886DFFF;\n\tThu, 27 Dec 2007 15:07:53 +0000 (GMT)\nMessage-ID: <200712271509.lBRF9ufX031513@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 985\n          for <source@collab.sakaiproject.org>;\n          Thu, 27 Dec 2007 15:07:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 041A3428DF\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 15:10:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBRF9u05031515\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 10:09:56 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBRF9ufX031513\n\tfor source@collab.sakaiproject.org; Thu, 27 Dec 2007 10:09:56 -0500\nDate: Thu, 27 Dec 2007 10:09:56 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: csev@umich.edu\nSubject: [sakai] svn commit: r39630 - mailarchive/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 27 10:11:09 2007\nX-DSPAM-Confidence: 0.9863\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39630\n\nAuthor: csev@umich.edu\nDate: 2007-12-27 10:09:53 -0500 (Thu, 27 Dec 2007)\nNew Revision: 39630\n\nAdded:\nmailarchive/branches/SAK-11544/\nLog:\nBranch for Mail Archive Performance Improvement\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom csev@umich.edu Thu Dec 27 09:57:10 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 27 Dec 2007 09:57:10 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 27 Dec 2007 09:57:10 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby fan.mail.umich.edu () with ESMTP id lBREv9OK003195;\n\tThu, 27 Dec 2007 09:57:09 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 4773BD32.3B457.4283 ; \n\t27 Dec 2007 09:56:52 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A84B374A69;\n\tThu, 27 Dec 2007 14:56:46 +0000 (GMT)\nMessage-ID: <200712271455.lBREtn2N031488@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 710\n          for <source@collab.sakaiproject.org>;\n          Thu, 27 Dec 2007 14:56:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6929F428B5\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 14:56:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBREtnXU031490\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 09:55:49 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBREtn2N031488\n\tfor source@collab.sakaiproject.org; Thu, 27 Dec 2007 09:55:49 -0500\nDate: Thu, 27 Dec 2007 09:55:49 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: csev@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 27 09:57:10 2007\nX-DSPAM-Confidence: 0.6198\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39629\n\nAuthor: csev@umich.edu\nDate: 2007-12-27 09:55:36 -0500 (Thu, 27 Dec 2007)\nNew Revision: 39629\n\nAdded:\nweb/branches/SAK-12563/web-portlet/\nweb/branches/SAK-12563/web-portlet/portlet/\nweb/branches/SAK-12563/web-portlet/portlet/pom.xml\nweb/branches/SAK-12563/web-portlet/portlet/src/\nweb/branches/SAK-12563/web-portlet/portlet/src/bundle/\nweb/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe.metaprops\nweb/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe.properties\nweb/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_ar.properties\nweb/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_ca.metaprops\nweb/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_ca.properties\nweb/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_en_GB.properties\nweb/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_es.metaprops\nweb/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_es.properties\nweb/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_fr_CA.metaprops\nweb/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_fr_CA.properties\nweb/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_ja.metaprops\nweb/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_ja.properties\nweb/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_ko.metaprops\nweb/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_ko.properties\nweb/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_nl.metaprops\nweb/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_nl.properties\nweb/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_sv.properties\nweb/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_zh_CN.metaprops\nweb/branches/SAK-12563/web-portlet/portlet/src/bundle/iframe_zh_CN.properties\nweb/branches/SAK-12563/web-portlet/portlet/src/bundle/vm/\nweb/branches/SAK-12563/web-portlet/portlet/src/bundle/vm/edit.vm\nweb/branches/SAK-12563/web-portlet/portlet/src/bundle/vm/macros.vm\nweb/branches/SAK-12563/web-portlet/portlet/src/bundle/vm/main.vm\nweb/branches/SAK-12563/web-portlet/portlet/src/java/\nweb/branches/SAK-12563/web-portlet/portlet/src/java/org/\nweb/branches/SAK-12563/web-portlet/portlet/src/java/org/sakaiproject/\nweb/branches/SAK-12563/web-portlet/portlet/src/java/org/sakaiproject/portlet/\nweb/branches/SAK-12563/web-portlet/portlet/src/java/org/sakaiproject/portlet/util/\nweb/branches/SAK-12563/web-portlet/portlet/src/java/org/sakaiproject/portlet/util/JSPHelper.java\nweb/branches/SAK-12563/web-portlet/portlet/src/java/org/sakaiproject/portlet/util/VelocityHelper.java\nweb/branches/SAK-12563/web-portlet/portlet/src/java/org/sakaiproject/portlets/\nweb/branches/SAK-12563/web-portlet/portlet/src/java/org/sakaiproject/portlets/SakaiIFrame.java\nweb/branches/SAK-12563/web-portlet/portlet/src/webapp/\nweb/branches/SAK-12563/web-portlet/portlet/src/webapp/WEB-INF/\nweb/branches/SAK-12563/web-portlet/portlet/src/webapp/WEB-INF/portlet.xml\nweb/branches/SAK-12563/web-portlet/portlet/src/webapp/WEB-INF/sakai/\nweb/branches/SAK-12563/web-portlet/portlet/src/webapp/WEB-INF/sakai/SakaiIFrame.xml\nweb/branches/SAK-12563/web-portlet/portlet/src/webapp/WEB-INF/velocity.config\nweb/branches/SAK-12563/web-portlet/portlet/src/webapp/WEB-INF/web.xml\nweb/branches/SAK-12563/web-portlet/portlet/src/webapp/help.jsp\nLog:\nSAK-12563\n\nInitial commit of the JSR-168 based iframe portlet.   This version\ndoes not yet take over the sakai.iframe tool id - for now it just works \nunder its own id for testing and development purposes.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom csev@umich.edu Thu Dec 27 09:47:52 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 27 Dec 2007 09:47:52 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 27 Dec 2007 09:47:52 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby awakenings.mail.umich.edu () with ESMTP id lBRElqUd023443;\n\tThu, 27 Dec 2007 09:47:52 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 4773BB11.6C6D5.23262 ; \n\t27 Dec 2007 09:47:48 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E85314F4CB;\n\tThu, 27 Dec 2007 14:47:37 +0000 (GMT)\nMessage-ID: <200712271446.lBREkWvx031476@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 249\n          for <source@collab.sakaiproject.org>;\n          Thu, 27 Dec 2007 14:47:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1254B42896\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 14:47:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBREkWeK031478\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 09:46:32 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBREkWvx031476\n\tfor source@collab.sakaiproject.org; Thu, 27 Dec 2007 09:46:32 -0500\nDate: Thu, 27 Dec 2007 09:46:32 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: csev@umich.edu\nSubject: [sakai] svn commit: r39628 - web/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 27 09:47:52 2007\nX-DSPAM-Confidence: 0.7604\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39628\n\nAuthor: csev@umich.edu\nDate: 2007-12-27 09:46:29 -0500 (Thu, 27 Dec 2007)\nNew Revision: 39628\n\nAdded:\nweb/branches/SAK-12563/\nLog:\nCreate branch for iframe portlet\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom csev@umich.edu Thu Dec 27 09:24:59 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 27 Dec 2007 09:24:59 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 27 Dec 2007 09:24:59 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby faithful.mail.umich.edu () with ESMTP id lBREOwGF010592;\n\tThu, 27 Dec 2007 09:24:58 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 4773B5A9.81AF4.23436 ; \n\t27 Dec 2007 09:24:55 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A940D9553F;\n\tThu, 27 Dec 2007 14:24:39 +0000 (GMT)\nMessage-ID: <200712271423.lBRENg6s031462@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 552\n          for <source@collab.sakaiproject.org>;\n          Thu, 27 Dec 2007 14:24:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B244442894\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 14:24:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBRENg0N031464\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 09:23:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBRENg6s031462\n\tfor source@collab.sakaiproject.org; Thu, 27 Dec 2007 09:23:42 -0500\nDate: Thu, 27 Dec 2007 09:23:42 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: csev@umich.edu\nSubject: [sakai] svn commit: r39627 - portal/branches/SAK-12402/portal-render-engine-impl/pack/src/webapp/vm/defaultskin\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 27 09:24:59 2007\nX-DSPAM-Confidence: 0.7613\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39627\n\nAuthor: csev@umich.edu\nDate: 2007-12-27 09:23:39 -0500 (Thu, 27 Dec 2007)\nNew Revision: 39627\n\nAdded:\nportal/branches/SAK-12402/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/ftop.vm\nLog:\nInitial commit of the frame top code\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom csev@umich.edu Thu Dec 27 09:12:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 27 Dec 2007 09:12:43 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 27 Dec 2007 09:12:43 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby panther.mail.umich.edu () with ESMTP id lBRECgV8026819;\n\tThu, 27 Dec 2007 09:12:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 4773B2D4.8584.3355 ; \n\t27 Dec 2007 09:12:38 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 90299ABFFE;\n\tThu, 27 Dec 2007 14:12:22 +0000 (GMT)\nMessage-ID: <200712271411.lBREBORc031450@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 482\n          for <source@collab.sakaiproject.org>;\n          Thu, 27 Dec 2007 14:11:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id F33713A7E7\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 14:12:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBREBOFb031452\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 09:11:24 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBREBORc031450\n\tfor source@collab.sakaiproject.org; Thu, 27 Dec 2007 09:11:24 -0500\nDate: Thu, 27 Dec 2007 09:11:24 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: csev@umich.edu\nSubject: [sakai] svn commit: r39626 - portal/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 27 09:12:43 2007\nX-DSPAM-Confidence: 0.7568\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39626\n\nAuthor: csev@umich.edu\nDate: 2007-12-27 09:11:22 -0500 (Thu, 27 Dec 2007)\nNew Revision: 39626\n\nAdded:\nportal/branches/SAK-12402/\nLog:\nCreate branch for frameset portal\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Thu Dec 27 08:02:21 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 27 Dec 2007 08:02:21 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 27 Dec 2007 08:02:21 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby chaos.mail.umich.edu () with ESMTP id lBRD2KZV005804;\n\tThu, 27 Dec 2007 08:02:20 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4773A257.1B8C8.7610 ; \n\t27 Dec 2007 08:02:17 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B5C5752A48;\n\tThu, 27 Dec 2007 13:02:16 +0000 (GMT)\nMessage-ID: <200712271301.lBRD1CaS031385@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1013\n          for <source@collab.sakaiproject.org>;\n          Thu, 27 Dec 2007 13:01:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BDE4D3A7DE\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 13:01:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBRD1C2P031387\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 08:01:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBRD1CaS031385\n\tfor source@collab.sakaiproject.org; Thu, 27 Dec 2007 08:01:12 -0500\nDate: Thu, 27 Dec 2007 08:01:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r39625 - content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 27 08:02:21 2007\nX-DSPAM-Confidence: 0.8494\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39625\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-27 08:01:07 -0500 (Thu, 27 Dec 2007)\nNew Revision: 39625\n\nModified:\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlOracle.java\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java\nLog:\nSAK-12501\nAdded log message for sqlexception.\nRevised syntax fo oracle sql\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Wed Dec 26 21:09:48 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 26 Dec 2007 21:09:48 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 26 Dec 2007 21:09:48 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby godsend.mail.umich.edu () with ESMTP id lBR29lvZ023526;\n\tWed, 26 Dec 2007 21:09:47 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 47730966.CEA7.10985 ; \n\t26 Dec 2007 21:09:44 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 31C9C5E89F;\n\tThu, 27 Dec 2007 02:09:39 +0000 (GMT)\nMessage-ID: <200712270208.lBR28TEZ030470@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 726\n          for <source@collab.sakaiproject.org>;\n          Thu, 27 Dec 2007 02:09:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 97FB03E841\n\tfor <source@collab.sakaiproject.org>; Thu, 27 Dec 2007 02:09:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBR28TCx030472\n\tfor <source@collab.sakaiproject.org>; Wed, 26 Dec 2007 21:08:29 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBR28TEZ030470\n\tfor source@collab.sakaiproject.org; Wed, 26 Dec 2007 21:08:29 -0500\nDate: Wed, 26 Dec 2007 21:08:29 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r39624 - content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 26 21:09:48 2007\nX-DSPAM-Confidence: 0.8494\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39624\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-26 21:08:23 -0500 (Wed, 26 Dec 2007)\nNew Revision: 39624\n\nModified:\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlOracle.java\nLog:\nSAK-12501\nRevised syntax of oracle query to insert/update dropbox timestamp\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom bkirschn@umich.edu Wed Dec 26 16:33:12 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 26 Dec 2007 16:33:12 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 26 Dec 2007 16:33:12 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby panther.mail.umich.edu () with ESMTP id lBQLXCMX021432;\n\tWed, 26 Dec 2007 16:33:12 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 4772C884.5E4FE.3213 ; \n\t26 Dec 2007 16:32:55 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5EADB51117;\n\tWed, 26 Dec 2007 21:33:00 +0000 (GMT)\nMessage-ID: <200712262131.lBQLVr3Y030312@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 822\n          for <source@collab.sakaiproject.org>;\n          Wed, 26 Dec 2007 21:32:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3956E3E840\n\tfor <source@collab.sakaiproject.org>; Wed, 26 Dec 2007 21:32:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBQLVrqg030314\n\tfor <source@collab.sakaiproject.org>; Wed, 26 Dec 2007 16:31:53 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBQLVr3Y030312\n\tfor source@collab.sakaiproject.org; Wed, 26 Dec 2007 16:31:53 -0500\nDate: Wed, 26 Dec 2007 16:31:53 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: bkirschn@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 26 16:33:12 2007\nX-DSPAM-Confidence: 0.8483\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39623\n\nAuthor: bkirschn@umich.edu\nDate: 2007-12-26 16:31:50 -0500 (Wed, 26 Dec 2007)\nNew Revision: 39623\n\nModified:\nannouncement/trunk/announcement-api/api/src/java/org/sakaiproject/announcement/api/AnnouncementService.java\nannouncement/trunk/announcement-api/api/src/java/org/sakaiproject/announcement/cover/AnnouncementService.java\nannouncement/trunk/announcement-impl/impl/pom.xml\nannouncement/trunk/announcement-impl/impl/src/java/org/sakaiproject/announcement/impl/BaseAnnouncementService.java\nannouncement/trunk/announcement-impl/pack/pom.xml\nLog:\nSAK-11372 api/impl support for rss\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Wed Dec 26 11:40:00 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 26 Dec 2007 11:40:00 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 26 Dec 2007 11:40:00 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby chaos.mail.umich.edu () with ESMTP id lBQGe0nJ011900;\n\tWed, 26 Dec 2007 11:40:00 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 477283D8.A05CA.6589 ; \n\t26 Dec 2007 11:39:55 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id AC927AED13;\n\tWed, 26 Dec 2007 16:39:53 +0000 (GMT)\nMessage-ID: <200712261638.lBQGcuFh030006@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 401\n          for <source@collab.sakaiproject.org>;\n          Wed, 26 Dec 2007 16:39:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CA5BB3E811\n\tfor <source@collab.sakaiproject.org>; Wed, 26 Dec 2007 16:39:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBQGcuvk030008\n\tfor <source@collab.sakaiproject.org>; Wed, 26 Dec 2007 11:38:56 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBQGcuFh030006\n\tfor source@collab.sakaiproject.org; Wed, 26 Dec 2007 11:38:56 -0500\nDate: Wed, 26 Dec 2007 11:38:56 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r39622 - content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 26 11:40:00 2007\nX-DSPAM-Confidence: 0.9881\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39622\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-26 11:38:49 -0500 (Wed, 26 Dec 2007)\nNew Revision: 39622\n\nModified:\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlOracle.java\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java\nLog:\nSAK-12501\nAdded oracle syntax to update/insert record to record last update to dropbox.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Tue Dec 25 17:53:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 25 Dec 2007 17:53:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 25 Dec 2007 17:53:51 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby casino.mail.umich.edu () with ESMTP id lBPMro9p002745;\n\tTue, 25 Dec 2007 17:53:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 477189F9.45DFC.2659 ; \n\t25 Dec 2007 17:53:47 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 65989ABC97;\n\tTue, 25 Dec 2007 22:53:34 +0000 (GMT)\nMessage-ID: <200712252252.lBPMqcLe028795@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 728\n          for <source@collab.sakaiproject.org>;\n          Tue, 25 Dec 2007 22:53:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5F7EB3310D\n\tfor <source@collab.sakaiproject.org>; Tue, 25 Dec 2007 22:53:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBPMqdbn028797\n\tfor <source@collab.sakaiproject.org>; Tue, 25 Dec 2007 17:52:39 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBPMqcLe028795\n\tfor source@collab.sakaiproject.org; Tue, 25 Dec 2007 17:52:38 -0500\nDate: Tue, 25 Dec 2007 17:52:38 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 25 17:53:51 2007\nX-DSPAM-Confidence: 0.7564\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39621\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-25 17:52:09 -0500 (Tue, 25 Dec 2007)\nNew Revision: 39621\n\nAdded:\nportal/branches/SAK-12350/portal-api/api/src/java/org/sakaiproject/portal/api/SiteNeighbourhoodService.java\nportal/branches/SAK-12350/portal-service-impl/impl/src/java/org/sakaiproject/portal/service/SiteNeighbourhoodServiceImpl.java\nModified:\nportal/branches/SAK-12350/portal-api/api/src/java/org/sakaiproject/portal/api/Portal.java\nportal/branches/SAK-12350/portal-api/api/src/java/org/sakaiproject/portal/api/PortalService.java\nportal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java\nportal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/AbstractSiteViewImpl.java\nportal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/AllSitesViewImpl.java\nportal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/DefaultSiteViewImpl.java\nportal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/MoreSiteViewImpl.java\nportal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/PortalSiteHelperImpl.java\nportal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/SubSiteViewImpl.java\nportal/branches/SAK-12350/portal-service-impl/impl/src/java/org/sakaiproject/portal/service/PortalServiceImpl.java\nportal/branches/SAK-12350/portal-service-impl/pack/src/webapp/WEB-INF/components.xml\nLog:\nSAK-12350\nAbstracted 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.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stephen.marquard@uct.ac.za Mon Dec 24 03:06:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 24 Dec 2007 03:06:42 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 24 Dec 2007 03:06:42 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby faithful.mail.umich.edu () with ESMTP id lBO86e1p001567;\n\tMon, 24 Dec 2007 03:06:40 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 476F688A.A6E5D.11065 ; \n\t24 Dec 2007 03:06:37 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 58210A3AFF;\n\tMon, 24 Dec 2007 08:06:43 +0000 (GMT)\nMessage-ID: <200712240805.lBO85jQD027143@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 661\n          for <source@collab.sakaiproject.org>;\n          Mon, 24 Dec 2007 08:06:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 476B84063E\n\tfor <source@collab.sakaiproject.org>; Mon, 24 Dec 2007 08:06:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBO85jFK027145\n\tfor <source@collab.sakaiproject.org>; Mon, 24 Dec 2007 03:05:45 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBO85jQD027143\n\tfor source@collab.sakaiproject.org; Mon, 24 Dec 2007 03:05:45 -0500\nDate: Mon, 24 Dec 2007 03:05:45 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: stephen.marquard@uct.ac.za\nSubject: [sakai] svn commit: r39620 - citations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/vm/citation\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 24 03:06:42 2007\nX-DSPAM-Confidence: 0.8431\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39620\n\nAuthor: stephen.marquard@uct.ac.za\nDate: 2007-12-24 03:05:38 -0500 (Mon, 24 Dec 2007)\nNew Revision: 39620\n\nModified:\ncitations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/vm/citation/add_citations.vm\nLog:\nSAK-12534 Google Scholar popup window too narrow (merge to 2-5-x)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stephen.marquard@uct.ac.za Mon Dec 24 02:06:31 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 24 Dec 2007 02:06:31 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 24 Dec 2007 02:06:31 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby faithful.mail.umich.edu () with ESMTP id lBO76U1b024895;\n\tMon, 24 Dec 2007 02:06:30 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 476F5A6E.CE0E2.8685 ; \n\t24 Dec 2007 02:06:26 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C9764AB445;\n\tMon, 24 Dec 2007 07:06:17 +0000 (GMT)\nMessage-ID: <200712240705.lBO75Q96027085@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 21\n          for <source@collab.sakaiproject.org>;\n          Mon, 24 Dec 2007 07:05:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 66F2C40ABA\n\tfor <source@collab.sakaiproject.org>; Mon, 24 Dec 2007 07:06:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBO75RID027087\n\tfor <source@collab.sakaiproject.org>; Mon, 24 Dec 2007 02:05:27 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBO75Q96027085\n\tfor source@collab.sakaiproject.org; Mon, 24 Dec 2007 02:05:26 -0500\nDate: Mon, 24 Dec 2007 02:05:26 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: stephen.marquard@uct.ac.za\nSubject: [sakai] svn commit: r39619 - search/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/journal/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 24 02:06:31 2007\nX-DSPAM-Confidence: 0.9812\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39619\n\nAuthor: stephen.marquard@uct.ac.za\nDate: 2007-12-24 02:05:17 -0500 (Mon, 24 Dec 2007)\nNew Revision: 39619\n\nModified:\nsearch/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/IndexListenerCloser.java\nLog:\nSAK-12460 Additional logging (merge to 2-5-x)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Sun Dec 23 12:52:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 23 Dec 2007 12:52:53 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 23 Dec 2007 12:52:53 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby fan.mail.umich.edu () with ESMTP id lBNHqqHE028219;\n\tSun, 23 Dec 2007 12:52:52 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 476EA06E.534E5.5063 ; \n\t23 Dec 2007 12:52:49 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 83E23AAC29;\n\tSun, 23 Dec 2007 17:52:44 +0000 (GMT)\nMessage-ID: <200712231751.lBNHpl7l026506@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 263\n          for <source@collab.sakaiproject.org>;\n          Sun, 23 Dec 2007 17:52:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BAC7923666\n\tfor <source@collab.sakaiproject.org>; Sun, 23 Dec 2007 17:52:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBNHpmYe026508\n\tfor <source@collab.sakaiproject.org>; Sun, 23 Dec 2007 12:51:48 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBNHpl7l026506\n\tfor source@collab.sakaiproject.org; Sun, 23 Dec 2007 12:51:47 -0500\nDate: Sun, 23 Dec 2007 12:51:47 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39618 - search/trunk/search-impl/impl/src/java/org/sakaiproject/search/journal/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Dec 23 12:52:53 2007\nX-DSPAM-Confidence: 0.9832\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39618\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-23 12:51:42 -0500 (Sun, 23 Dec 2007)\nNew Revision: 39618\n\nModified:\nsearch/trunk/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/IndexListenerCloser.java\nLog:\nSAK-12460\nAdded some logging to help debugging\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Sat Dec 22 12:07:06 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 22 Dec 2007 12:07:06 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 22 Dec 2007 12:07:06 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby fan.mail.umich.edu () with ESMTP id lBMH75qG017830;\n\tSat, 22 Dec 2007 12:07:05 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 476D4433.C13A9.26986 ; \n\t22 Dec 2007 12:07:02 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id AD49FA9029;\n\tSat, 22 Dec 2007 17:06:56 +0000 (GMT)\nMessage-ID: <200712221706.lBMH6Fmj012392@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 949\n          for <source@collab.sakaiproject.org>;\n          Sat, 22 Dec 2007 17:06:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5B7C035ED9\n\tfor <source@collab.sakaiproject.org>; Sat, 22 Dec 2007 17:06:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBMH6F1w012394\n\tfor <source@collab.sakaiproject.org>; Sat, 22 Dec 2007 12:06:16 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBMH6Fmj012392\n\tfor source@collab.sakaiproject.org; Sat, 22 Dec 2007 12:06:15 -0500\nDate: Sat, 22 Dec 2007 12:06:15 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec 22 12:07:06 2007\nX-DSPAM-Confidence: 0.9885\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39617\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-22 12:06:06 -0500 (Sat, 22 Dec 2007)\nNew Revision: 39617\n\nAdded:\ncontent/branches/SAK-12239/content-conversion/\ncontent/branches/SAK-12239/content-conversion/.project\ncontent/branches/SAK-12239/content-conversion/pack/\ncontent/branches/SAK-12239/content-conversion/pack/project.xml\ncontent/branches/SAK-12239/content-conversion/pack/src/\ncontent/branches/SAK-12239/content-conversion/pack/src/config/\ncontent/branches/SAK-12239/content-conversion/pack/src/config/upgradeschema-mysql.config\ncontent/branches/SAK-12239/content-conversion/pack/src/config/upgradeschema-oracle.config\ncontent/branches/SAK-12239/content-conversion/pack/src/shell/\ncontent/branches/SAK-12239/content-conversion/pack/src/shell/runconversion.sh\nModified:\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/FileSizeResourcesConversionHandler.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/Type1BlobCollectionConversionHandler.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/Type1BlobResourcesConversionHandler.java\ncontent/branches/SAK-12239/runconversion.sh\nLog:\nSAK-12239\nPackage the conversion jars and scripts in a separate war.  Introduces dependency on oracle and mysql jdbc connectors.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Sat Dec 22 11:58:34 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 22 Dec 2007 11:58:34 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 22 Dec 2007 11:58:34 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby score.mail.umich.edu () with ESMTP id lBMGwXiX027435;\n\tSat, 22 Dec 2007 11:58:33 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 476D4233.F2C6.1221 ; \n\t22 Dec 2007 11:58:29 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3D089A97CE;\n\tSat, 22 Dec 2007 16:58:23 +0000 (GMT)\nMessage-ID: <200712221657.lBMGveHv012367@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 675\n          for <source@collab.sakaiproject.org>;\n          Sat, 22 Dec 2007 16:58:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2572EB115\n\tfor <source@collab.sakaiproject.org>; Sat, 22 Dec 2007 16:58:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBMGveRO012369\n\tfor <source@collab.sakaiproject.org>; Sat, 22 Dec 2007 11:57:41 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBMGveHv012367\n\tfor source@collab.sakaiproject.org; Sat, 22 Dec 2007 11:57:40 -0500\nDate: Sat, 22 Dec 2007 11:57:40 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r39616 - db/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/util/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec 22 11:58:34 2007\nX-DSPAM-Confidence: 0.9854\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39616\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-22 11:57:38 -0500 (Sat, 22 Dec 2007)\nNew Revision: 39616\n\nModified:\ndb/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionController.java\nLog:\nSAK-12239\nAdded logging for empty result sets and null objects\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Fri Dec 21 18:33:07 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 18:33:07 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 18:33:07 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby jacknife.mail.umich.edu () with ESMTP id lBLNX5sC032268;\n\tFri, 21 Dec 2007 18:33:05 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 476C4D15.BFFDF.8924 ; \n\t21 Dec 2007 18:32:40 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E0238A8672;\n\tFri, 21 Dec 2007 23:32:34 +0000 (GMT)\nMessage-ID: <200712212331.lBLNVpHU010835@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 241\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 23:32:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6AEB53EA7D\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 23:32:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLNVq1n010837\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 18:31:52 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLNVpHU010835\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 18:31:51 -0500\nDate: Fri, 21 Dec 2007 18:31:51 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [sakai] svn commit: r39615 - in jsf/trunk/widgets: . src/java/org/sakaiproject/jsf/renderer\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 18:33:07 2007\nX-DSPAM-Confidence: 0.7597\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39615\n\nAuthor: ray@media.berkeley.edu\nDate: 2007-12-21 18:31:46 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39615\n\nModified:\njsf/trunk/widgets/pom.xml\njsf/trunk/widgets/src/java/org/sakaiproject/jsf/renderer/InputRichTextRenderer.java\njsf/trunk/widgets/src/java/org/sakaiproject/jsf/renderer/RichTextAreaRenderer.java\nLog:\nSAK-12381 Replace service covers with singletons\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Fri Dec 21 17:22:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 17:22:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 17:22:02 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby sleepers.mail.umich.edu () with ESMTP id lBLMM2bq009375;\n\tFri, 21 Dec 2007 17:22:02 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 476C3C83.4CF94.30804 ; \n\t21 Dec 2007 17:21:58 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 36BEA9ED16;\n\tFri, 21 Dec 2007 22:21:54 +0000 (GMT)\nMessage-ID: <200712212221.lBLMLCal010699@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 12\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 22:21:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AAE933EA7D\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 22:21:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLMLDhE010701\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 17:21:13 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLMLCal010699\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 17:21:12 -0500\nDate: Fri, 21 Dec 2007 17:21:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 17:22:02 2007\nX-DSPAM-Confidence: 0.6948\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39614\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-21 17:20:54 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39614\n\nAdded:\nportal/branches/SAK-12350/portal-impl/impl/src/bundle/sitenav_pt_PT.properties\nportal/branches/SAK-12350/portal-util/util/src/bundle/portal-util_pt_PT.properties\nModified:\nportal/branches/SAK-12350/portal-charon/charon/src/webapp/scripts/portalscripts.js\nportal/branches/SAK-12350/portal-impl/impl/src/bundle/sitenav.properties\nportal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java\nLog:\nMerged Changes from trunk into this branch\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Fri Dec 21 17:17:52 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 17:17:52 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 17:17:52 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby flawless.mail.umich.edu () with ESMTP id lBLMHp2H019345;\n\tFri, 21 Dec 2007 17:17:51 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 476C3B89.27CBF.26108 ; \n\t21 Dec 2007 17:17:47 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2157AA4E67;\n\tFri, 21 Dec 2007 22:17:43 +0000 (GMT)\nMessage-ID: <200712212216.lBLMGsFb010686@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1022\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 22:17:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 147AF3EA7D\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 22:17:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLMGsTD010688\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 17:16:54 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLMGsFb010686\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 17:16:54 -0500\nDate: Fri, 21 Dec 2007 17:16:54 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 17:17:52 2007\nX-DSPAM-Confidence: 0.5715\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39613\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-21 17:16:23 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39613\n\nAdded:\nportal/branches/SAK-12350/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm\nRemoved:\nportal/branches/SAK-12350/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/end_response.vm\nportal/branches/SAK-12350/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm\nModified:\nportal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/CurrentSiteVIewImpl.java\nportal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/SubSiteViewImpl.java\nportal/branches/SAK-12350/portal-render-engine-impl/\nportal/branches/SAK-12350/portal-render-engine-impl/impl/src/test/org/sakaiproject/portal/charon/test/PortalRenderTest.java\nportal/branches/SAK-12350/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/error.vm\nportal/branches/SAK-12350/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/gallery-login.vm\nportal/branches/SAK-12350/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/gallery.vm\nportal/branches/SAK-12350/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/login.vm\nportal/branches/SAK-12350/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/page.vm\nportal/branches/SAK-12350/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/pda.vm\nportal/branches/SAK-12350/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/site.vm\nportal/branches/SAK-12350/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/worksite.vm\nLog:\nSAK-12350\nFixed the subsite generation issues\nMoved all the templates into files and retired the macro definitions.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stuart.freeman@et.gatech.edu Fri Dec 21 15:49:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 15:49:43 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 15:49:44 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby faithful.mail.umich.edu () with ESMTP id lBLKnhQ4028380;\n\tFri, 21 Dec 2007 15:49:43 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 476C26E1.D1631.8164 ; \n\t21 Dec 2007 15:49:40 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 50F7CA64F8;\n\tFri, 21 Dec 2007 20:49:36 +0000 (GMT)\nMessage-ID: <200712212048.lBLKmu2L010557@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 212\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 20:49:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 958C93D46C\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 20:49:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLKmuuP010559\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 15:48:56 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLKmu2L010557\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 15:48:56 -0500\nDate: Fri, 21 Dec 2007 15:48:56 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: stuart.freeman@et.gatech.edu\nSubject: [sakai] svn commit: r39611 - util/branches/sakai_2-4-x/util-util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 15:49:44 2007\nX-DSPAM-Confidence: 0.9869\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39611\n\nAuthor: stuart.freeman@et.gatech.edu\nDate: 2007-12-21 15:48:54 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39611\n\nModified:\nutil/branches/sakai_2-4-x/util-util/.classpath\nLog:\nSAK-10852 add javamail to classpath\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom bkirschn@umich.edu Fri Dec 21 14:42:47 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 14:42:47 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 14:42:47 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby mission.mail.umich.edu () with ESMTP id lBLJgkDP012021;\n\tFri, 21 Dec 2007 14:42:46 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 476C1730.C1440.16777 ; \n\t21 Dec 2007 14:42:43 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DB7C5A83C4;\n\tFri, 21 Dec 2007 19:42:40 +0000 (GMT)\nMessage-ID: <200712211941.lBLJftbm010511@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 543\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 19:42:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E234F3E898\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 19:42:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLJftiv010513\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 14:41:55 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLJftbm010511\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 14:41:55 -0500\nDate: Fri, 21 Dec 2007 14:41:55 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: bkirschn@umich.edu\nSubject: [sakai] svn commit: r39610 - in announcement/trunk/announcement-tool/tool: . src/bundle src/java/org/sakaiproject/announcement/tool src/webapp/vm/announcement\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 14:42:47 2007\nX-DSPAM-Confidence: 0.8494\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39610\n\nAuthor: bkirschn@umich.edu\nDate: 2007-12-21 14:41:51 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39610\n\nModified:\nannouncement/trunk/announcement-tool/tool/pom.xml\nannouncement/trunk/announcement-tool/tool/src/bundle/announcement.properties\nannouncement/trunk/announcement-tool/tool/src/bundle/announcement_ar.properties\nannouncement/trunk/announcement-tool/tool/src/bundle/announcement_ca.properties\nannouncement/trunk/announcement-tool/tool/src/bundle/announcement_en_GB.properties\nannouncement/trunk/announcement-tool/tool/src/bundle/announcement_es.properties\nannouncement/trunk/announcement-tool/tool/src/bundle/announcement_fr_CA.properties\nannouncement/trunk/announcement-tool/tool/src/bundle/announcement_ja.properties\nannouncement/trunk/announcement-tool/tool/src/bundle/announcement_nl.properties\nannouncement/trunk/announcement-tool/tool/src/bundle/announcement_ru.properties\nannouncement/trunk/announcement-tool/tool/src/bundle/announcement_sv.properties\nannouncement/trunk/announcement-tool/tool/src/bundle/announcement_zh_CN.properties\nannouncement/trunk/announcement-tool/tool/src/java/org/sakaiproject/announcement/tool/AnnouncementAction.java\nannouncement/trunk/announcement-tool/tool/src/java/org/sakaiproject/announcement/tool/AnnouncementActionState.java\nannouncement/trunk/announcement-tool/tool/src/webapp/vm/announcement/chef_announcements-customize.vm\nLog:\nSAK-11372 first pass - add support for rss option\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec 21 14:38:07 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 14:38:07 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 14:38:07 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby faithful.mail.umich.edu () with ESMTP id lBLJc68K028547;\n\tFri, 21 Dec 2007 14:38:06 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 476C1617.DA2ED.30657 ; \n\t21 Dec 2007 14:38:02 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 87C10A83A9;\n\tFri, 21 Dec 2007 19:37:57 +0000 (GMT)\nMessage-ID: <200712211937.lBLJbFdW010496@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 650\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 19:37:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 793293A596\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 19:37:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLJbFxT010498\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 14:37:15 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLJbFdW010496\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 14:37:15 -0500\nDate: Fri, 21 Dec 2007 14:37:15 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 14:38:07 2007\nX-DSPAM-Confidence: 0.9866\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39609\n\nAuthor: zqian@umich.edu\nDate: 2007-12-21 14:37:11 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39609\n\nModified:\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nassignment/trunk/assignment-impl/impl/src/test/org/sakaiproject/assignment/impl/AssignmentServiceTest.java\nassignment/trunk/assignment-impl/pack/src/webapp/WEB-INF/components.xml\nassignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nfix to SAK-12364:Eliminate references to ContentHostingService cover in assignments module\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom louis@media.berkeley.edu Fri Dec 21 14:13:31 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 14:13:31 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 14:13:32 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby fan.mail.umich.edu () with ESMTP id lBLJDVIl029172;\n\tFri, 21 Dec 2007 14:13:31 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 476C1053.4F4A7.4285 ; \n\t21 Dec 2007 14:13:26 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A0BFE9FA50;\n\tFri, 21 Dec 2007 19:13:19 +0000 (GMT)\nMessage-ID: <200712211912.lBLJCeTi010389@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 132\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 19:13:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C1AC93E8EE\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 19:13:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLJCe12010391\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 14:12:40 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLJCeTi010389\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 14:12:40 -0500\nDate: Fri, 21 Dec 2007 14:12:40 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: louis@media.berkeley.edu\nSubject: [sakai] svn commit: r39608 - gradebook/branches/sakai_2-4-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 14:13:32 2007\nX-DSPAM-Confidence: 0.6948\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39608\n\nAuthor: louis@media.berkeley.edu\nDate: 2007-12-21 14:12:34 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39608\n\nModified:\ngradebook/branches/sakai_2-4-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AddAssignmentBean.java\ngradebook/branches/sakai_2-4-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentDetailsBean.java\ngradebook/branches/sakai_2-4-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/CourseGradeDetailsBean.java\ngradebook/branches/sakai_2-4-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RemoveAssignmentBean.java\ngradebook/branches/sakai_2-4-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java\ngradebook/branches/sakai_2-4-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/SpreadsheetUploadBean.java\nLog:\nSAK-10802 Logged events don't include context (siteId)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Fri Dec 21 13:56:39 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 13:56:39 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 13:56:39 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby jacknife.mail.umich.edu () with ESMTP id lBLIudFr009321;\n\tFri, 21 Dec 2007 13:56:39 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 476C0C60.EF089.14617 ; \n\t21 Dec 2007 13:56:35 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 54614A8325;\n\tFri, 21 Dec 2007 18:38:23 +0000 (GMT)\nMessage-ID: <200712211855.lBLItOjY010357@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 325\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 18:37:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0E36334B65\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 18:55:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLItOYO010359\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 13:55:24 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLItOjY010357\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 13:55:24 -0500\nDate: Fri, 21 Dec 2007 13:55:24 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r39607 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 13:56:39 2007\nX-DSPAM-Confidence: 0.6957\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39607\n\nAuthor: dlhaines@umich.edu\nDate: 2007-12-21 13:55:23 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39607\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/defaultbuild.properties\nLog:\nCTools: move PASN version to be the Q version.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom bkirschn@umich.edu Fri Dec 21 13:55:04 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 13:55:04 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 13:55:04 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby casino.mail.umich.edu () with ESMTP id lBLIt3PH011071;\n\tFri, 21 Dec 2007 13:55:03 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 476C0C01.E8CA6.20323 ; \n\t21 Dec 2007 13:55:00 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 97885A60A3;\n\tFri, 21 Dec 2007 18:36:44 +0000 (GMT)\nMessage-ID: <200712211854.lBLIsB6l010345@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 416\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 18:36:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C268F34B65\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 18:54:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLIsB4v010347\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 13:54:11 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLIsB6l010345\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 13:54:11 -0500\nDate: Fri, 21 Dec 2007 13:54:11 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: bkirschn@umich.edu\nSubject: [sakai] svn commit: r39606 - calendar/trunk/calendar-tool/tool/src/java/org/sakaiproject/calendar/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 13:55:04 2007\nX-DSPAM-Confidence: 0.8482\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39606\n\nAuthor: bkirschn@umich.edu\nDate: 2007-12-21 13:54:10 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39606\n\nModified:\ncalendar/trunk/calendar-tool/tool/src/java/org/sakaiproject/calendar/tool/CalendarAction.java\nLog:\nSAK-12551 remove unused ical alias\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Fri Dec 21 13:51:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 13:51:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 13:51:17 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby fan.mail.umich.edu () with ESMTP id lBLIpHh3015496;\n\tFri, 21 Dec 2007 13:51:17 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 476C0B1F.858C4.558 ; \n\t21 Dec 2007 13:51:14 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id F15A2A5A2E;\n\tFri, 21 Dec 2007 18:33:10 +0000 (GMT)\nMessage-ID: <200712211850.lBLIoVI9010330@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 884\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 18:32:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BFDC334B65\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 18:50:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLIoVVc010332\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 13:50:31 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLIoVI9010330\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 13:50:31 -0500\nDate: Fri, 21 Dec 2007 13:50:31 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r39605 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 13:51:17 2007\nX-DSPAM-Confidence: 0.7602\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39605\n\nAuthor: dlhaines@umich.edu\nDate: 2007-12-21 13:50:29 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39605\n\nAdded:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties\nRemoved:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASN.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASN.properties\nLog:\nCTools: move PASN (assignments conversion build) to be the Q build.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Fri Dec 21 13:49:59 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 13:49:59 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 13:49:59 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby godsend.mail.umich.edu () with ESMTP id lBLInxXx018748;\n\tFri, 21 Dec 2007 13:49:59 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 476C0ACE.45A57.20452 ; \n\t21 Dec 2007 13:49:54 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BA529A7074;\n\tFri, 21 Dec 2007 18:31:48 +0000 (GMT)\nMessage-ID: <200712211849.lBLIn9nr010318@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 567\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 18:31:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BC09434B65\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 18:49:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLIn9ht010320\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 13:49:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLIn9nr010318\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 13:49:09 -0500\nDate: Fri, 21 Dec 2007 13:49:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r39604 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 13:49:59 2007\nX-DSPAM-Confidence: 0.7605\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39604\n\nAuthor: dlhaines@umich.edu\nDate: 2007-12-21 13:49:07 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39604\n\nAdded:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xR.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xR.properties\nRemoved:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties\nLog:\nCTools: move Q release with content conversion to be the R release.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec 21 12:20:35 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 12:20:35 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 12:20:35 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby brazil.mail.umich.edu () with ESMTP id lBLHKYww023931;\n\tFri, 21 Dec 2007 12:20:34 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 476BF5DB.3CD6A.11194 ; \n\t21 Dec 2007 12:20:30 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BE29AA7EF1;\n\tFri, 21 Dec 2007 17:20:25 +0000 (GMT)\nMessage-ID: <200712211719.lBLHJekC010174@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 462\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 17:20:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1F35A3E81B\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 17:20:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLHJfRs010176\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 12:19:41 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLHJekC010174\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 12:19:40 -0500\nDate: Fri, 21 Dec 2007 12:19:40 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39603 - in site-manage/trunk/site-manage-tool/tool/src: java/org/sakaiproject/site/tool webapp/vm/sitesetup\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 12:20:35 2007\nX-DSPAM-Confidence: 0.9877\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39603\n\nAuthor: zqian@umich.edu\nDate: 2007-12-21 12:19:37 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39603\n\nModified:\nsite-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addParticipant.vm\nLog:\nFix to SAK-12547:\"Students registered for course\" shown for non-course sites\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom bkirschn@umich.edu Fri Dec 21 11:50:06 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 11:50:06 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 11:50:06 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby fan.mail.umich.edu () with ESMTP id lBLGo5Am019665;\n\tFri, 21 Dec 2007 11:50:05 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 476BEEB7.A358F.2755 ; \n\t21 Dec 2007 11:50:02 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 80962A8011;\n\tFri, 21 Dec 2007 16:49:58 +0000 (GMT)\nMessage-ID: <200712211649.lBLGnKUm010109@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 589\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 16:49:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 298023E84C\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 16:49:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLGnKn7010111\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 11:49:20 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLGnKUm010109\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 11:49:20 -0500\nDate: Fri, 21 Dec 2007 11:49:20 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: bkirschn@umich.edu\nSubject: [sakai] svn commit: r39602 - reference/trunk/docs\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 11:50:06 2007\nX-DSPAM-Confidence: 0.9872\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39602\n\nAuthor: bkirschn@umich.edu\nDate: 2007-12-21 11:49:19 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39602\n\nModified:\nreference/trunk/docs/readme_i18n.txt\nLog:\nupdated translation status\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 21 10:04:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 10:04:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 10:04:51 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby fan.mail.umich.edu () with ESMTP id lBLF4o8U031951;\n\tFri, 21 Dec 2007 10:04:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 476BD609.A179C.17208 ; \n\t21 Dec 2007 10:04:44 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6B9EEA7DF1;\n\tFri, 21 Dec 2007 15:04:43 +0000 (GMT)\nMessage-ID: <200712211504.lBLF452a010003@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 161\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 15:04:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 10F5D3E82B\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 15:04:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLF459x010005\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 10:04:05 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLF452a010003\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 10:04:05 -0500\nDate: Fri, 21 Dec 2007 10:04:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39601 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 10:04:51 2007\nX-DSPAM-Confidence: 0.9834\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39601\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-21 10:04:04 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39601\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdate externals for GB.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 21 10:03:36 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 10:03:36 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 10:03:36 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby mission.mail.umich.edu () with ESMTP id lBLF3ZME028296;\n\tFri, 21 Dec 2007 10:03:35 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 476BD5BB.AA0E9.18333 ; \n\t21 Dec 2007 10:03:26 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D5C71A3C2E;\n\tFri, 21 Dec 2007 15:03:23 +0000 (GMT)\nMessage-ID: <200712211502.lBLF2QxN009990@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 789\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 15:02:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 078E53E819\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 15:02:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLF2QcV009992\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 10:02:27 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLF2QxN009990\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 10:02:26 -0500\nDate: Fri, 21 Dec 2007 10:02:26 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39600 - gradebook/branches/oncourse_2-4-2/app/ui/src/webapp/js\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 10:03:36 2007\nX-DSPAM-Confidence: 0.9856\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39600\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-21 10:02:25 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39600\n\nModified:\ngradebook/branches/oncourse_2-4-2/app/ui/src/webapp/js/multiItemAdd.js\nLog:\nroll back r39586 => svn merge -r39586:39585 https://source.sakaiproject.org/viewsvn/gradebook/branches/oncourse_2-4-2.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom bkirschn@umich.edu Fri Dec 21 09:55:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 09:55:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 09:55:25 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby casino.mail.umich.edu () with ESMTP id lBLEtM8H018445;\n\tFri, 21 Dec 2007 09:55:22 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 476BD3D4.B9E89.29228 ; \n\t21 Dec 2007 09:55:19 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id ACDB9A7DD9;\n\tFri, 21 Dec 2007 14:51:51 +0000 (GMT)\nMessage-ID: <200712211454.lBLEsHY5009956@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 394\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 14:51:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 149DA3E805\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 14:54:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLEsIcC009958\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 09:54:18 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLEsHY5009956\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 09:54:18 -0500\nDate: Fri, 21 Dec 2007 09:54:18 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: bkirschn@umich.edu\nSubject: [sakai] svn commit: r39599 - component/trunk/component-api/component/src/config/org/sakaiproject/config\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 09:55:25 2007\nX-DSPAM-Confidence: 0.9859\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39599\n\nAuthor: bkirschn@umich.edu\nDate: 2007-12-21 09:54:16 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39599\n\nModified:\ncomponent/trunk/component-api/component/src/config/org/sakaiproject/config/sakai.properties\nLog:\nSAK-12044 add portuguese as supported languaage\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom bkirschn@umich.edu Fri Dec 21 09:55:06 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 09:55:06 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 09:55:06 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby panther.mail.umich.edu () with ESMTP id lBLEt6x8006098;\n\tFri, 21 Dec 2007 09:55:06 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 476BD3C4.BFDC1.28307 ; \n\t21 Dec 2007 09:55:03 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A4CC6A7DD7;\n\tFri, 21 Dec 2007 14:51:39 +0000 (GMT)\nMessage-ID: <200712211454.lBLEs7d9009944@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 475\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 14:51:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E009F3E805\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 14:54:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLEs7f7009946\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 09:54:07 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLEs7d9009944\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 09:54:07 -0500\nDate: Fri, 21 Dec 2007 09:54:07 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: bkirschn@umich.edu\nSubject: [sakai] svn commit: r39598 - reference/trunk/docs\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 09:55:06 2007\nX-DSPAM-Confidence: 0.9870\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39598\n\nAuthor: bkirschn@umich.edu\nDate: 2007-12-21 09:54:06 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39598\n\nModified:\nreference/trunk/docs/sakai.properties\nLog:\nSAK-12044 add portuguese as supported languaage\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Fri Dec 21 09:54:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 09:54:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 09:54:17 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby faithful.mail.umich.edu () with ESMTP id lBLEsGGo023830;\n\tFri, 21 Dec 2007 09:54:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 476BD390.B83A1.26861 ; \n\t21 Dec 2007 09:54:11 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 336A5A7DD2;\n\tFri, 21 Dec 2007 14:50:45 +0000 (GMT)\nMessage-ID: <200712211453.lBLErI1D009932@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 76\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 14:50:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id F1F323E805\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 14:53:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLErIWp009934\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 09:53:19 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLErI1D009932\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 09:53:18 -0500\nDate: Fri, 21 Dec 2007 09:53:18 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r39597 - reset-pass/trunk/reset-pass/src/java/org/sakaiproject/tool/resetpass\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 09:54:17 2007\nX-DSPAM-Confidence: 0.9848\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39597\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-12-21 09:53:01 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39597\n\nModified:\nreset-pass/trunk/reset-pass/src/java/org/sakaiproject/tool/resetpass/FormHandler.java\nLog:\nSAK-12546 imporved email message -remove redundant code\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Fri Dec 21 09:50:38 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 09:50:38 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 09:50:39 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby chaos.mail.umich.edu () with ESMTP id lBLEobX0018740;\n\tFri, 21 Dec 2007 09:50:37 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 476BD2B8.11B8B.4249 ; \n\t21 Dec 2007 09:50:34 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D87F6A7C57;\n\tFri, 21 Dec 2007 14:47:05 +0000 (GMT)\nMessage-ID: <200712211449.lBLEniVf009920@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 340\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 14:46:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id ABD282BEE3\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 14:50:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLEniss009922\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 09:49:44 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLEniVf009920\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 09:49:44 -0500\nDate: Fri, 21 Dec 2007 09:49:44 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r39596 - in reset-pass/trunk/reset-pass/src: bundle/org/sakaiproject/tool/resetpass/bundle java/org/sakaiproject/tool/resetpass\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 09:50:39 2007\nX-DSPAM-Confidence: 0.9836\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39596\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-12-21 09:48:58 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39596\n\nModified:\nreset-pass/trunk/reset-pass/src/bundle/org/sakaiproject/tool/resetpass/bundle/Messages.properties\nreset-pass/trunk/reset-pass/src/java/org/sakaiproject/tool/resetpass/FormHandler.java\nLog:\nSAK-12546 imporved email message\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Fri Dec 21 09:44:11 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 09:44:11 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 09:44:12 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby score.mail.umich.edu () with ESMTP id lBLEiBBq011440;\n\tFri, 21 Dec 2007 09:44:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 476BD132.B8801.4857 ; \n\t21 Dec 2007 09:44:05 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D01F0A5EB1;\n\tFri, 21 Dec 2007 14:40:41 +0000 (GMT)\nMessage-ID: <200712211443.lBLEhLXp009897@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 445\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 14:40:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EFB522BEE3\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 14:43:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLEhLjt009899\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 09:43:21 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLEhLXp009897\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 09:43:21 -0500\nDate: Fri, 21 Dec 2007 09:43:21 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r39595 - reference/branches/sakai_2-5-x/docs/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 09:44:12 2007\nX-DSPAM-Confidence: 0.9892\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39595\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-12-21 09:43:10 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39595\n\nModified:\nreference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql\nreference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\nLog:\nsvn merge -c 39593  https://source.sakaiproject.org/svn/reference/trunk/ reference/\nU    reference/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql\nU    reference/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\n\nsvn log -r 39593  https://source.sakaiproject.org/svn/reference/trunk/\n------------------------------------------------------------------------\nr39593 | david.horwitz@uct.ac.za | 2007-12-21 16:08:28 +0200 (Fri, 21 Dec 2007) | 3 lines\n\nSAK-12521 Missing column definitions for polls\n\n\n----------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Fri Dec 21 09:33:55 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 09:33:55 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 09:33:55 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby casino.mail.umich.edu () with ESMTP id lBLEXsb4008784;\n\tFri, 21 Dec 2007 09:33:54 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 476BCECC.EFEC2.12812 ; \n\t21 Dec 2007 09:33:51 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 584CDA7D9A;\n\tFri, 21 Dec 2007 14:30:27 +0000 (GMT)\nMessage-ID: <200712211433.lBLEX8tH009885@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 971\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 14:30:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8EC8F39CBA\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 14:33:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLEX86K009887\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 09:33:08 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLEX8tH009885\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 09:33:08 -0500\nDate: Fri, 21 Dec 2007 09:33:08 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r39594 - reference/branches/sakai_2-5-x/docs/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 09:33:55 2007\nX-DSPAM-Confidence: 0.9894\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39594\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-12-21 09:32:57 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39594\n\nModified:\nreference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql\nreference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\nLog:\nsvn merge -c 39421  https://source.sakaiproject.org/svn/reference/trunk/ reference/\nU    reference/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql\nU    reference/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\n\nsvn log -r 39421  https://source.sakaiproject.org/svn/reference/trunk/\n------------------------------------------------------------------------\nr39421 | chmaurer@iupui.edu | 2007-12-18 15:41:00 +0200 (Tue, 18 Dec 2007) | 2 lines\n\nSAK-10215\nAdding some conversion to fix chat tool titles.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Fri Dec 21 09:09:23 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 09:09:23 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 09:09:23 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby awakenings.mail.umich.edu () with ESMTP id lBLE9Mko016074;\n\tFri, 21 Dec 2007 09:09:22 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 476BC90D.1EB7B.32711 ; \n\t21 Dec 2007 09:09:19 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EEC79A5EB2;\n\tFri, 21 Dec 2007 14:08:00 +0000 (GMT)\nMessage-ID: <200712211408.lBLE8eQg009817@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 533\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 14:07:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 20CF439CAC\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 14:09:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLE8eZV009819\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 09:08:40 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLE8eQg009817\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 09:08:40 -0500\nDate: Fri, 21 Dec 2007 09:08:40 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r39593 - reference/trunk/docs/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 09:09:23 2007\nX-DSPAM-Confidence: 0.9816\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39593\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-12-21 09:08:28 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39593\n\nModified:\nreference/trunk/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql\nreference/trunk/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\nLog:\nSAK-12521 Missing column definitions for polls\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stephen.marquard@uct.ac.za Fri Dec 21 09:08:22 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 09:08:22 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 09:08:22 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby flawless.mail.umich.edu () with ESMTP id lBLE8Lc7013044;\n\tFri, 21 Dec 2007 09:08:21 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 476BC8CF.840C4.3553 ; \n\t21 Dec 2007 09:08:18 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 01891A7C50;\n\tFri, 21 Dec 2007 14:06:48 +0000 (GMT)\nMessage-ID: <200712211407.lBLE7LPt009805@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 855\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 14:06:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5A05539CAC\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 14:07:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLE7LbE009807\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 09:07:21 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLE7LPt009805\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 09:07:21 -0500\nDate: Fri, 21 Dec 2007 09:07:21 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: stephen.marquard@uct.ac.za\nSubject: [sakai] svn commit: r39592 - util/branches/sakai_2-5-x/util-util/util/src/java/org/sakaiproject/util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 09:08:22 2007\nX-DSPAM-Confidence: 0.9858\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39592\n\nAuthor: stephen.marquard@uct.ac.za\nDate: 2007-12-21 09:07:13 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39592\n\nModified:\nutil/branches/sakai_2-5-x/util-util/util/src/java/org/sakaiproject/util/ResourceLoader.java\nLog:\nSAK-8320 add more info to missing key error message (merge to 2-5-x)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Fri Dec 21 09:03:52 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 09:03:52 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 09:03:52 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby panther.mail.umich.edu () with ESMTP id lBLE3pnP015549;\n\tFri, 21 Dec 2007 09:03:51 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 476BC7C1.6523F.8191 ; \n\t21 Dec 2007 09:03:48 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 55B14A7CBF;\n\tFri, 21 Dec 2007 14:02:43 +0000 (GMT)\nMessage-ID: <200712211401.lBLE1iQ9009777@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 714\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 14:02:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 26A673E7EE\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 14:02:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLE1i0Y009779\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 09:01:44 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLE1iQ9009777\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 09:01:44 -0500\nDate: Fri, 21 Dec 2007 09:01:44 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r39591 - in polls/trunk: . docs tool/src/java/org/sakaiproject/poll/tool/params\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 09:03:52 2007\nX-DSPAM-Confidence: 0.8493\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39591\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-12-21 09:00:51 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39591\n\nAdded:\npolls/trunk/docs/\npolls/trunk/docs/SAK-8957.sql\npolls/trunk/orphankeys.txt\nModified:\npolls/trunk/tool/src/java/org/sakaiproject/poll/tool/params/PollToolBean.java\nLog:\nSAK-8959 Document Missing changes to DB\nSAK-12521 this needs to be added to conversion script\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom bkirschn@umich.edu Fri Dec 21 09:03:48 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 09:03:48 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 09:03:48 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby fan.mail.umich.edu () with ESMTP id lBLE3lSx005540;\n\tFri, 21 Dec 2007 09:03:47 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 476BC7BB.CDBFC.25132 ; \n\t21 Dec 2007 09:03:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5E95BA7CD5;\n\tFri, 21 Dec 2007 14:02:42 +0000 (GMT)\nMessage-ID: <200712211401.lBLE15tD009762@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 786\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 14:01:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2605D3E7EE\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 14:01:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLE15bP009764\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 09:01:05 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLE15tD009762\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 09:01:05 -0500\nDate: Fri, 21 Dec 2007 09:01:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: bkirschn@umich.edu\nSubject: [sakai] svn commit: r39590 - util/trunk/util-util/util/src/java/org/sakaiproject/util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 09:03:48 2007\nX-DSPAM-Confidence: 0.9879\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39590\n\nAuthor: bkirschn@umich.edu\nDate: 2007-12-21 09:01:03 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39590\n\nModified:\nutil/trunk/util-util/util/src/java/org/sakaiproject/util/ResourceLoader.java\nLog:\nSAK-8320 add more info to missing key error message\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 21 09:00:22 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 09:00:22 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 09:00:22 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby brazil.mail.umich.edu () with ESMTP id lBLE0M4J025685;\n\tFri, 21 Dec 2007 09:00:22 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 476BC6EB.B8601.3580 ; \n\t21 Dec 2007 09:00:16 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 67FA0A7C96;\n\tFri, 21 Dec 2007 13:54:41 +0000 (GMT)\nMessage-ID: <200712211354.lBLDspuh009728@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 670\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 13:54:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D7B343E7C0\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 13:55:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLDsp5d009730\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 08:54:52 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLDspuh009728\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 08:54:51 -0500\nDate: Fri, 21 Dec 2007 08:54:51 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39589 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 09:00:22 2007\nX-DSPAM-Confidence: 0.8470\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39589\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-21 08:54:50 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39589\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdate externals for portal.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 21 08:50:52 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 08:50:52 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 08:50:52 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby fan.mail.umich.edu () with ESMTP id lBLDoq1c032403;\n\tFri, 21 Dec 2007 08:50:52 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 476BC4B7.2D9A7.1365 ; \n\t21 Dec 2007 08:50:49 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 79015A7B58;\n\tFri, 21 Dec 2007 13:49:06 +0000 (GMT)\nMessage-ID: <200712211350.lBLDo5KP009692@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 467\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 13:48:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 64ECE3E7BA\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 13:50:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLDo5MQ009694\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 08:50:05 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLDo5KP009692\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 08:50:05 -0500\nDate: Fri, 21 Dec 2007 08:50:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39588 - portal/branches/oncourse_opc_122007/portal-render-engine-impl/pack/src/webapp/vm/defaultskin\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 08:50:52 2007\nX-DSPAM-Confidence: 0.8475\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39588\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-21 08:50:04 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39588\n\nModified:\nportal/branches/oncourse_opc_122007/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm\nLog:\nSAK-8152 => svn merge -r39574:39575 https://source.sakaiproject.org/svn/portal/branches/SAK-8152.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 21 08:43:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 08:43:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 08:43:25 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby casino.mail.umich.edu () with ESMTP id lBLDhOxo019119;\n\tFri, 21 Dec 2007 08:43:24 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 476BC2F6.92548.763 ; \n\t21 Dec 2007 08:43:21 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5D7CEA7C51;\n\tFri, 21 Dec 2007 13:42:17 +0000 (GMT)\nMessage-ID: <200712211342.lBLDgccG009669@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 548\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 13:42:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D09DE3E4EF\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 13:43:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLDgc8K009671\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 08:42:39 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLDgccG009669\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 08:42:38 -0500\nDate: Fri, 21 Dec 2007 08:42:38 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39587 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 08:43:25 2007\nX-DSPAM-Confidence: 0.9836\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39587\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-21 08:42:37 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39587\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdate external for GB.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 21 08:41:56 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 08:41:56 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 08:41:56 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby jacknife.mail.umich.edu () with ESMTP id lBLDft0e023114;\n\tFri, 21 Dec 2007 08:41:55 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 476BC29D.54C41.9737 ; \n\t21 Dec 2007 08:41:52 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 58BF0A7B9F;\n\tFri, 21 Dec 2007 13:40:45 +0000 (GMT)\nMessage-ID: <200712211341.lBLDf8qw009641@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 342\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 13:40:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9DA823E4EF\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 13:41:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLDf8bu009643\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 08:41:08 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLDf8qw009641\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 08:41:08 -0500\nDate: Fri, 21 Dec 2007 08:41:08 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39586 - gradebook/branches/oncourse_2-4-2/app/ui/src/webapp/js\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 08:41:56 2007\nX-DSPAM-Confidence: 0.9845\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39586\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-21 08:41:07 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39586\n\nModified:\ngradebook/branches/oncourse_2-4-2/app/ui/src/webapp/js/multiItemAdd.js\nLog:\nSAK-12540 => svn merge -r39567:39568 https://source.sakaiproject.org/svn/gradebook/trunk.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Fri Dec 21 06:30:05 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 06:30:05 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 06:30:05 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby flawless.mail.umich.edu () with ESMTP id lBLBU48n031602;\n\tFri, 21 Dec 2007 06:30:04 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 476BA3B7.2325D.10792 ; \n\t21 Dec 2007 06:30:01 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A9AE6A4BC7;\n\tFri, 21 Dec 2007 11:30:05 +0000 (GMT)\nMessage-ID: <200712211129.lBLBT704009407@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1004\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 11:29:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A2ADEBAB9\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 11:29:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLBT7O3009409\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 06:29:07 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLBT704009407\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 06:29:07 -0500\nDate: Fri, 21 Dec 2007 06:29:07 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r39585 - assignment/branches/sakai_2-5-x/assignment-bundles\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 06:30:05 2007\nX-DSPAM-Confidence: 0.9907\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39585\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-12-21 06:28:56 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39585\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-bundles/assignment_es.properties\nLog:\nsvn merge -c 39569 https://source.sakaiproject.org/svn/assignment/trunk assignment/\nU    assignment/assignment-bundles/assignment_es.properties\n\nsvn log -r 39569 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr39569 | bkirschn@umich.edu | 2007-12-21 01:36:58 +0200 (Fri, 21 Dec 2007) | 1 line\n\nSAK-12510 fix translation\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Fri Dec 21 06:17:07 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 06:17:07 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 06:17:07 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby flawless.mail.umich.edu () with ESMTP id lBLBH6rw028604;\n\tFri, 21 Dec 2007 06:17:06 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 476BA0AC.81A9A.2057 ; \n\t21 Dec 2007 06:17:03 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7C024A67FF;\n\tFri, 21 Dec 2007 11:17:08 +0000 (GMT)\nMessage-ID: <200712211116.lBLBGD0S009378@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 235\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 11:16:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9E5693D475\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 11:16:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLBGElO009380\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 06:16:14 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLBGD0S009378\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 06:16:13 -0500\nDate: Fri, 21 Dec 2007 06:16:13 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r39584 - in polls/branches/sakai_2-5-x/tool/src: bundle/org/sakaiproject/poll/bundle java/org/sakaiproject/poll/tool/producers\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 06:17:07 2007\nX-DSPAM-Confidence: 0.9883\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39584\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-12-21 06:15:47 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39584\n\nModified:\npolls/branches/sakai_2-5-x/tool/src/bundle/org/sakaiproject/poll/bundle/Messages.properties\npolls/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/poll/tool/producers/PollToolProducer.java\nLog:\nsvn merge -c 39578 https://source.sakaiproject.org/svn/polls/trunk polls\nU    polls/tool/src/java/org/sakaiproject/poll/tool/producers/PollToolProducer.java\nU    polls/tool/src/bundle/org/sakaiproject/poll/bundle/Messages.properties\n\nsvn log -r 39578 https://source.sakaiproject.org/svn/polls/trunk\n------------------------------------------------------------------------\nr39578 | david.horwitz@uct.ac.za | 2007-12-21 10:30:23 +0200 (Fri, 21 Dec 2007) | 1 line\n\nSAK-8948 Note when polls are not votable due to no options and give a message in the UI\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Fri Dec 21 06:12:21 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 06:12:21 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 06:12:21 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby mission.mail.umich.edu () with ESMTP id lBLBCJ00017102;\n\tFri, 21 Dec 2007 06:12:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 476B9F8D.8580A.3752 ; \n\t21 Dec 2007 06:12:16 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DCE6BA7957;\n\tFri, 21 Dec 2007 11:12:31 +0000 (GMT)\nMessage-ID: <200712211111.lBLBBYDK009366@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 681\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 11:12:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C1B663D581\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 11:11:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLBBZXo009368\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 06:11:35 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLBBYDK009366\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 06:11:34 -0500\nDate: Fri, 21 Dec 2007 06:11:34 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r39583 - polls/branches/sakai_2-5-x/tool/src/bundle/org/sakaiproject/poll/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 06:12:21 2007\nX-DSPAM-Confidence: 0.9874\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39583\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-12-21 06:11:25 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39583\n\nModified:\npolls/branches/sakai_2-5-x/tool/src/bundle/org/sakaiproject/poll/bundle/Messages.properties\nLog:\nsvn merge -c 39577 https://source.sakaiproject.org/svn/polls/trunk polls\nU    polls/tool/src/bundle/org/sakaiproject/poll/bundle/Messages.properties\nsvn log -r 39577 https://source.sakaiproject.org/svn/polls/trunk\n------------------------------------------------------------------------\nr39577 | david.horwitz@uct.ac.za | 2007-12-21 10:19:00 +0200 (Fri, 21 Dec 2007) | 1 line\n\nSAK-9892 change title to singular\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Fri Dec 21 06:05:26 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 06:05:26 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 06:05:26 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby brazil.mail.umich.edu () with ESMTP id lBLB5O0B009196;\n\tFri, 21 Dec 2007 06:05:24 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 476B9DEF.6D129.12397 ; \n\t21 Dec 2007 06:05:22 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E6A7FA62AA;\n\tFri, 21 Dec 2007 11:05:37 +0000 (GMT)\nMessage-ID: <200712211104.lBLB4gDg009348@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 358\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 11:05:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 666D73D4B4\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 11:05:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLB4gtM009350\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 06:04:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLB4gDg009348\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 06:04:42 -0500\nDate: Fri, 21 Dec 2007 06:04:42 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r39582 - gradebook/branches/sakai_2-5-x/app/ui/src/webapp/js\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 06:05:26 2007\nX-DSPAM-Confidence: 0.8502\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39582\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-12-21 06:04:32 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39582\n\nModified:\ngradebook/branches/sakai_2-5-x/app/ui/src/webapp/js/spreadsheetUI.js\nLog:\nsvn merge -c 39382 https://source.sakaiproject.org/svn/gradebook/trunk gradebook/\nU    gradebook/app/ui/src/webapp/js/spreadsheetUI.js\nsvn log -r 39382 https://source.sakaiproject.org/svn/gradebook/trunk\n------------------------------------------------------------------------\nr39382 | rjlowe@iupui.edu | 2007-12-17 21:11:47 +0200 (Mon, 17 Dec 2007) | 1 line\n\nSAK-12491 - gb / all grades column alignment\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Fri Dec 21 06:01:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 06:01:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 06:01:02 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby fan.mail.umich.edu () with ESMTP id lBLB10Ti018893;\n\tFri, 21 Dec 2007 06:01:00 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 476B9CE6.5109D.15125 ; \n\t21 Dec 2007 06:00:57 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 18B92A7968;\n\tFri, 21 Dec 2007 11:01:07 +0000 (GMT)\nMessage-ID: <200712211100.lBLB08vC009334@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 320\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 11:00:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 603B839CD5\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 11:00:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBLB08Of009336\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 06:00:08 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBLB08vC009334\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 06:00:08 -0500\nDate: Fri, 21 Dec 2007 06:00:08 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r39581 - gradebook/branches/sakai_2-5-x/app/ui/src/webapp/js\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 06:01:02 2007\nX-DSPAM-Confidence: 0.9843\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39581\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-12-21 05:59:57 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39581\n\nModified:\ngradebook/branches/sakai_2-5-x/app/ui/src/webapp/js/spreadsheetUI.js\nLog:\nsvn merge -c 37820 https://source.sakaiproject.org/svn/gradebook/trunk gradebook/\nU    gradebook/app/ui/src/webapp/js/spreadsheetUI.js\n\nSAK-11588 - All Grades page crashes IE when large number of students/gb items\nviewed at once\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Fri Dec 21 04:29:36 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 04:29:36 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 04:29:36 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby sleepers.mail.umich.edu () with ESMTP id lBL9TYfu014832;\n\tFri, 21 Dec 2007 04:29:34 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 476B8778.7A4F9.3395 ; \n\t21 Dec 2007 04:29:31 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7D418A789E;\n\tFri, 21 Dec 2007 09:29:35 +0000 (GMT)\nMessage-ID: <200712210928.lBL9SmRp009217@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 275\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 09:29:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7D7423E6CE\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 09:29:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBL9SmhW009219\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 04:28:48 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBL9SmRp009217\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 04:28:48 -0500\nDate: Fri, 21 Dec 2007 04:28:48 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r39580 - reset-pass/trunk/reset-pass\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 04:29:36 2007\nX-DSPAM-Confidence: 0.8469\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39580\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-12-21 04:28:29 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39580\n\nModified:\nreset-pass/trunk/reset-pass/pom.xml\nLog:\nSAK-12546 fix pom error\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Fri Dec 21 04:24:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 04:24:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 04:24:25 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby casino.mail.umich.edu () with ESMTP id lBL9ONvh016474;\n\tFri, 21 Dec 2007 04:24:23 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 476B8641.DF553.1309 ; \n\t21 Dec 2007 04:24:20 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 93162A77FE;\n\tFri, 21 Dec 2007 09:24:24 +0000 (GMT)\nMessage-ID: <200712210923.lBL9NbNV009183@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 540\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 09:24:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0F34E3DFFD\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 09:23:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBL9NboT009185\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 04:23:37 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBL9NbNV009183\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 04:23:37 -0500\nDate: Fri, 21 Dec 2007 04:23:37 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r39579 - in reset-pass/trunk/reset-pass: . src/bundle/org/sakaiproject/tool/resetpass/bundle src/java/org/sakaiproject/tool/resetpass\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 04:24:25 2007\nX-DSPAM-Confidence: 0.8470\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39579\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-12-21 04:22:43 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39579\n\nModified:\nreset-pass/trunk/reset-pass/pom.xml\nreset-pass/trunk/reset-pass/src/bundle/org/sakaiproject/tool/resetpass/bundle/Messages.properties\nreset-pass/trunk/reset-pass/src/java/org/sakaiproject/tool/resetpass/FormHandler.java\nLog:\nSAK-12546 imporved email message\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Fri Dec 21 03:31:56 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 03:31:56 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 03:31:56 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby score.mail.umich.edu () with ESMTP id lBL8VtIt009690;\n\tFri, 21 Dec 2007 03:31:55 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 476B79F5.1D387.10816 ; \n\t21 Dec 2007 03:31:51 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 682BEA744F;\n\tFri, 21 Dec 2007 08:32:03 +0000 (GMT)\nMessage-ID: <200712210831.lBL8VA2R008667@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 688\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 08:31:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BD77139AD3\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 08:31:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBL8VA8u008669\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 03:31:10 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBL8VA2R008667\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 03:31:10 -0500\nDate: Fri, 21 Dec 2007 03:31:10 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r39578 - in polls/trunk/tool/src: bundle/org/sakaiproject/poll/bundle java/org/sakaiproject/poll/tool/producers\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 03:31:56 2007\nX-DSPAM-Confidence: 0.9831\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39578\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-12-21 03:30:23 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39578\n\nModified:\npolls/trunk/tool/src/bundle/org/sakaiproject/poll/bundle/Messages.properties\npolls/trunk/tool/src/java/org/sakaiproject/poll/tool/producers/PollToolProducer.java\nLog:\nSAK-8948 Note when polls are not votable due to no options and give a message in the UI\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Fri Dec 21 03:20:08 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 21 Dec 2007 03:20:08 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 21 Dec 2007 03:20:08 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby faithful.mail.umich.edu () with ESMTP id lBL8K62Q016137;\n\tFri, 21 Dec 2007 03:20:06 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 476B7730.509AC.2871 ; \n\t21 Dec 2007 03:20:03 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0142FA6FBB;\n\tFri, 21 Dec 2007 08:20:12 +0000 (GMT)\nMessage-ID: <200712210819.lBL8JIWH008654@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 132\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 08:19:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AD3DD3DFFD\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 08:19:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBL8JJfo008656\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 03:19:19 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBL8JIWH008654\n\tfor source@collab.sakaiproject.org; Fri, 21 Dec 2007 03:19:18 -0500\nDate: Fri, 21 Dec 2007 03:19:18 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r39577 - polls/trunk/tool/src/bundle/org/sakaiproject/poll/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 21 03:20:08 2007\nX-DSPAM-Confidence: 0.9820\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39577\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-12-21 03:19:00 -0500 (Fri, 21 Dec 2007)\nNew Revision: 39577\n\nModified:\npolls/trunk/tool/src/bundle/org/sakaiproject/poll/bundle/Messages.properties\nLog:\nSAK-9892 change title to singular\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Thu Dec 20 22:38:27 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 22:38:27 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 22:38:27 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby sleepers.mail.umich.edu () with ESMTP id lBL3cRw4000975;\n\tThu, 20 Dec 2007 22:38:27 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 476B352E.14F45.12958 ; \n\t20 Dec 2007 22:38:24 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CF4EAA6C39;\n\tFri, 21 Dec 2007 03:38:45 +0000 (GMT)\nMessage-ID: <200712210337.lBL3bj2a008291@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 490\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 03:38:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DD8733E4B3\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 03:38:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBL3bjhH008293\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 22:37:45 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBL3bj2a008291\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 22:37:45 -0500\nDate: Thu, 20 Dec 2007 22:37:45 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r39576 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 22:38:27 2007\nX-DSPAM-Confidence: 0.9851\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39576\n\nAuthor: dlhaines@umich.edu\nDate: 2007-12-20 22:37:43 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39576\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASN.properties\nLog:\nCTools: update version tag\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom josrodri@iupui.edu Thu Dec 20 22:20:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 22:20:13 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 22:20:13 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby casino.mail.umich.edu () with ESMTP id lBL3KD3P000737;\n\tThu, 20 Dec 2007 22:20:13 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 476B30E6.F4141.29548 ; \n\t20 Dec 2007 22:20:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 23CEAA550B;\n\tFri, 21 Dec 2007 03:20:29 +0000 (GMT)\nMessage-ID: <200712210319.lBL3JOT9008269@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 79\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 03:20:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 52F023E4C8\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 03:19:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBL3JO9K008271\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 22:19:24 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBL3JOT9008269\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 22:19:24 -0500\nDate: Thu, 20 Dec 2007 22:19:24 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: josrodri@iupui.edu\nSubject: [sakai] svn commit: r39575 - portal/branches/SAK-8152/portal-render-engine-impl/pack/src/webapp/vm/defaultskin\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 22:20:13 2007\nX-DSPAM-Confidence: 0.8441\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39575\n\nAuthor: josrodri@iupui.edu\nDate: 2007-12-20 22:19:22 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39575\n\nModified:\nportal/branches/SAK-8152/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm\nLog:\nSAK-8152: simple text change: add space between number and 'minutes' (eg, 3minutes to 3 minutes)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Thu Dec 20 22:16:36 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 22:16:36 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 22:16:36 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby awakenings.mail.umich.edu () with ESMTP id lBL3GaTL026988;\n\tThu, 20 Dec 2007 22:16:36 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 476B300F.402E4.30482 ; \n\t20 Dec 2007 22:16:34 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id AEF61A7442;\n\tFri, 21 Dec 2007 03:16:47 +0000 (GMT)\nMessage-ID: <200712210315.lBL3FbJD008257@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 588\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 03:16:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 37F5A3E4C8\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 03:15:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBL3FbQV008259\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 22:15:37 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBL3FbJD008257\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 22:15:37 -0500\nDate: Thu, 20 Dec 2007 22:15:37 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r39574 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 22:16:36 2007\nX-DSPAM-Confidence: 0.9859\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39574\n\nAuthor: dlhaines@umich.edu\nDate: 2007-12-20 22:15:35 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39574\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASN.properties\nLog:\nCTools: update the build revision number.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Thu Dec 20 22:15:49 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 22:15:49 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 22:15:49 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby mission.mail.umich.edu () with ESMTP id lBL3FmJP012283;\n\tThu, 20 Dec 2007 22:15:48 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 476B2FDF.D5C48.12159 ; \n\t20 Dec 2007 22:15:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1C933A743E;\n\tFri, 21 Dec 2007 03:15:54 +0000 (GMT)\nMessage-ID: <200712210314.lBL3EpJo008238@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 603\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 03:15:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 19C983E4C0\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 03:15:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBL3EpXV008240\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 22:14:51 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBL3EpJo008238\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 22:14:51 -0500\nDate: Thu, 20 Dec 2007 22:14:51 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r39573 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 22:15:49 2007\nX-DSPAM-Confidence: 0.9840\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39573\n\nAuthor: dlhaines@umich.edu\nDate: 2007-12-20 22:14:48 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39573\n\nAdded:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASN.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASN.properties\nRemoved:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASS.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASS.properties\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/defaultbuild.properties\nLog:\nCTools: use better name for the assignment only conversion build.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Thu Dec 20 22:13:10 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 22:13:10 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 22:13:10 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby flawless.mail.umich.edu () with ESMTP id lBL3D9Yc024738;\n\tThu, 20 Dec 2007 22:13:09 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 476B2F41.21618.9167 ; \n\t20 Dec 2007 22:13:07 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 05B26A62AF;\n\tFri, 21 Dec 2007 03:13:22 +0000 (GMT)\nMessage-ID: <200712210312.lBL3CM3L008225@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 888\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 03:13:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 52F8D3E4B9\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 03:12:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBL3CMMm008227\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 22:12:23 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBL3CM3L008225\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 22:12:22 -0500\nDate: Thu, 20 Dec 2007 22:12:22 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r39572 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 22:13:10 2007\nX-DSPAM-Confidence: 0.9817\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39572\n\nAuthor: dlhaines@umich.edu\nDate: 2007-12-20 22:12:20 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39572\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASS.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals\nLog:\nCTools: update assignments conversion revision.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom hu2@iupui.edu Thu Dec 20 21:27:29 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 21:27:29 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 21:27:29 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby brazil.mail.umich.edu () with ESMTP id lBL2RSK9028371;\n\tThu, 20 Dec 2007 21:27:28 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 476B248B.D1E1.7534 ; \n\t20 Dec 2007 21:27:25 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2B9B7A4FCE;\n\tFri, 21 Dec 2007 02:27:54 +0000 (GMT)\nMessage-ID: <200712210226.lBL2QUCb008158@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 536\n          for <source@collab.sakaiproject.org>;\n          Fri, 21 Dec 2007 02:27:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D0422332DC\n\tfor <source@collab.sakaiproject.org>; Fri, 21 Dec 2007 02:26:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBL2QUjh008160\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 21:26:30 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBL2QUCb008158\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 21:26:30 -0500\nDate: Thu, 20 Dec 2007 21:26:30 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to hu2@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: hu2@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 21:27:29 2007\nX-DSPAM-Confidence: 0.9829\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39571\n\nAuthor: hu2@iupui.edu\nDate: 2007-12-20 21:26:28 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39571\n\nModified:\nmsgcntr/trunk/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages.properties\nmsgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java\nLog:\nSAK-12484\nreply all cc list should not include the current user name.\nhttp://jira.sakaiproject.org/jira/browse/SAK-12484\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom louis@media.berkeley.edu Thu Dec 20 18:58:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 18:58:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 18:58:30 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby brazil.mail.umich.edu () with ESMTP id lBKNwTQa014014;\n\tThu, 20 Dec 2007 18:58:29 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 476B019F.27905.21794 ; \n\t20 Dec 2007 18:58:25 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D55D9A71B6;\n\tThu, 20 Dec 2007 23:58:20 +0000 (GMT)\nMessage-ID: <200712202357.lBKNvmeV007990@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 735\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 23:58:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 178B23E468\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 23:58:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKNvmRh007992\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 18:57:49 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKNvmeV007990\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 18:57:48 -0500\nDate: Thu, 20 Dec 2007 18:57:48 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: louis@media.berkeley.edu\nSubject: [sakai] svn commit: r39570 - gradebook/branches/sakai_2-4-x/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 18:58:30 2007\nX-DSPAM-Confidence: 0.6940\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39570\n\nAuthor: louis@media.berkeley.edu\nDate: 2007-12-20 18:57:45 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39570\n\nModified:\ngradebook/branches/sakai_2-4-x/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties\nLog:\nSAK-10063 Uploading a CSV file via the gradebook gives wrong message\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom bkirschn@umich.edu Thu Dec 20 18:37:58 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 18:37:58 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 18:37:58 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby flawless.mail.umich.edu () with ESMTP id lBKNbvvJ028162;\n\tThu, 20 Dec 2007 18:37:57 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 476AFCC3.2F4C4.14296 ; \n\t20 Dec 2007 18:37:54 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4CC4FA4FC5;\n\tThu, 20 Dec 2007 23:37:35 +0000 (GMT)\nMessage-ID: <200712202336.lBKNaxH0007958@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 446\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 23:37:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CBF2C39021\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 23:37:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKNaxZV007960\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 18:36:59 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKNaxH0007958\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 18:36:59 -0500\nDate: Thu, 20 Dec 2007 18:36:59 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: bkirschn@umich.edu\nSubject: [sakai] svn commit: r39569 - assignment/trunk/assignment-bundles\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 18:37:58 2007\nX-DSPAM-Confidence: 0.9838\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39569\n\nAuthor: bkirschn@umich.edu\nDate: 2007-12-20 18:36:58 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39569\n\nModified:\nassignment/trunk/assignment-bundles/assignment_es.properties\nLog:\nSAK-12510 fix translation\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom josrodri@iupui.edu Thu Dec 20 18:14:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 18:14:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 18:14:19 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby chaos.mail.umich.edu () with ESMTP id lBKNEH0P016542;\n\tThu, 20 Dec 2007 18:14:17 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 476AF742.E79DA.25679 ; \n\t20 Dec 2007 18:14:13 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 53A5A7CDF2;\n\tThu, 20 Dec 2007 23:14:00 +0000 (GMT)\nMessage-ID: <200712202313.lBKNDJ6j007901@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 626\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 23:13:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C8F5D3871C\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 23:13:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKNDJpY007903\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 18:13:19 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKNDJ6j007901\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 18:13:19 -0500\nDate: Thu, 20 Dec 2007 18:13:19 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: josrodri@iupui.edu\nSubject: [sakai] svn commit: r39568 - gradebook/trunk/app/ui/src/webapp/js\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 18:14:19 2007\nX-DSPAM-Confidence: 0.9816\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39568\n\nAuthor: josrodri@iupui.edu\nDate: 2007-12-20 18:13:16 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39568\n\nModified:\ngradebook/trunk/app/ui/src/webapp/js/multiItemAdd.js\nLog:\nSAK-12540: forgot a case\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom louis@media.berkeley.edu Thu Dec 20 17:17:46 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 17:17:46 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 17:17:46 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby flawless.mail.umich.edu () with ESMTP id lBKMHjls028069;\n\tThu, 20 Dec 2007 17:17:45 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 476AEA03.E9BA3.14489 ; \n\t20 Dec 2007 17:17:42 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 49384A7158;\n\tThu, 20 Dec 2007 22:17:36 +0000 (GMT)\nMessage-ID: <200712202217.lBKMH0o5007865@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 430\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 22:17:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 077B139021\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 22:17:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKMH1dI007867\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 17:17:01 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKMH0o5007865\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 17:17:00 -0500\nDate: Thu, 20 Dec 2007 17:17:00 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: louis@media.berkeley.edu\nSubject: [sakai] svn commit: r39567 - sections/trunk/sections-app-util/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 17:17:46 2007\nX-DSPAM-Confidence: 0.6954\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39567\n\nAuthor: louis@media.berkeley.edu\nDate: 2007-12-20 17:16:57 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39567\n\nModified:\nsections/trunk/sections-app-util/src/bundle/sections.properties\nLog:\nSAK-9274 TA role can't assign TAs in Section Info; instructions indicate that TAs can/ fixed spelling error\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Dec 20 16:49:29 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 16:49:29 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 16:49:29 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby flawless.mail.umich.edu () with ESMTP id lBKLnSx4015117;\n\tThu, 20 Dec 2007 16:49:28 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 476AE362.CAD5D.7625 ; \n\t20 Dec 2007 16:49:25 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D7CADA6A4E;\n\tThu, 20 Dec 2007 21:45:21 +0000 (GMT)\nMessage-ID: <200712202148.lBKLmlkP007815@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 913\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 21:45:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2C11E3E420\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 21:49:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKLmlBo007817\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 16:48:47 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKLmlkP007815\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 16:48:47 -0500\nDate: Thu, 20 Dec 2007 16:48:47 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39566 - assignment/branches/post-2-4-umich/assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 16:49:29 2007\nX-DSPAM-Confidence: 0.9829\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39566\n\nAuthor: zqian@umich.edu\nDate: 2007-12-20 16:48:45 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39566\n\nModified:\nassignment/branches/post-2-4-umich/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm\nLog:\nThis is to solve a merge problem generated from merging SAK-12075 into post-2-4 in r39049 and resulting misaligned columns  \n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Thu Dec 20 16:35:08 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 16:35:08 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 16:35:08 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby chaos.mail.umich.edu () with ESMTP id lBKLZ7sS005355;\n\tThu, 20 Dec 2007 16:35:07 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 476ADFD0.26987.30080 ; \n\t20 Dec 2007 16:34:11 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B099DA6FEC;\n\tThu, 20 Dec 2007 21:29:33 +0000 (GMT)\nMessage-ID: <200712202133.lBKLXQOt007704@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 712\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 21:29:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 956902BC7C\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 21:33:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKLXQfO007706\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 16:33:26 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKLXQOt007704\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 16:33:26 -0500\nDate: Thu, 20 Dec 2007 16:33:26 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39565 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 16:35:08 2007\nX-DSPAM-Confidence: 0.9776\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39565\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-20 16:33:25 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39565\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nudpate externals for GB.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Thu Dec 20 16:33:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 16:33:42 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 16:33:42 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby godsend.mail.umich.edu () with ESMTP id lBKLXffe012036;\n\tThu, 20 Dec 2007 16:33:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 476ADF9C.CE9A.27148 ; \n\t20 Dec 2007 16:33:18 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 26513A706D;\n\tThu, 20 Dec 2007 21:28:12 +0000 (GMT)\nMessage-ID: <200712202130.lBKLU9CH007654@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 956\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 21:27:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0DBD62BC7C\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 21:30:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKLU9te007656\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 16:30:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKLU9CH007654\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 16:30:09 -0500\nDate: Thu, 20 Dec 2007 16:30:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39563 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 16:33:42 2007\nX-DSPAM-Confidence: 0.9762\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39563\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-20 16:30:08 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39563\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nudpate external for unmerge SAK-12488.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Thu Dec 20 16:33:24 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 16:33:24 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 16:33:24 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby mission.mail.umich.edu () with ESMTP id lBKLXNXs022866;\n\tThu, 20 Dec 2007 16:33:23 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 476ADF9E.A026D.29827 ; \n\t20 Dec 2007 16:33:21 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B20BAA708C;\n\tThu, 20 Dec 2007 21:28:24 +0000 (GMT)\nMessage-ID: <200712202131.lBKLVtm6007676@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 212\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 21:28:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3D5CA2BC7C\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 21:32:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKLVtru007678\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 16:31:55 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKLVtm6007676\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 16:31:55 -0500\nDate: Thu, 20 Dec 2007 16:31:55 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39564 - in gradebook/branches/oncourse_2-4-2/app/ui/src/webapp: inc js\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 16:33:24 2007\nX-DSPAM-Confidence: 0.9799\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39564\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-20 16:31:54 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39564\n\nModified:\ngradebook/branches/oncourse_2-4-2/app/ui/src/webapp/inc/bulkNewItems.jspf\ngradebook/branches/oncourse_2-4-2/app/ui/src/webapp/js/multiItemAdd.js\nLog:\nSAK-12540 => svn merge -r39560:39561 https://source.sakaiproject.org/svn/gradebook/trunk.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Thu Dec 20 16:33:20 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 16:33:20 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 16:33:20 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby fan.mail.umich.edu () with ESMTP id lBKLXKPY028545;\n\tThu, 20 Dec 2007 16:33:20 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 476ADF99.14B0A.31842 ; \n\t20 Dec 2007 16:33:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1E7F0A7062;\n\tThu, 20 Dec 2007 21:28:01 +0000 (GMT)\nMessage-ID: <200712202128.lBKLSTxn007624@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 981\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 21:27:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1CF2F3E3FC\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 21:28:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKLST0C007626\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 16:28:29 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKLSTxn007624\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 16:28:29 -0500\nDate: Thu, 20 Dec 2007 16:28:29 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39562 - in msgcntr/branches/oncourse_opc_122007/messageforums-app/src/java/org/sakaiproject/tool/messageforums: . ui\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 16:33:20 2007\nX-DSPAM-Confidence: 0.9812\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39562\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-20 16:28:28 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39562\n\nModified:\nmsgcntr/branches/oncourse_opc_122007/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java\nmsgcntr/branches/oncourse_opc_122007/messageforums-app/src/java/org/sakaiproject/tool/messageforums/ui/PrivateMessageDecoratedBean.java\nLog:\nunmerge for SAK-12488. svn merge -r39559:39558 https://source.sakaiproject.org/svn/msgcntr/branches/oncourse_opc_122007.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom josrodri@iupui.edu Thu Dec 20 16:26:10 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 16:26:10 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 16:26:10 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby score.mail.umich.edu () with ESMTP id lBKLQ9fu022909;\n\tThu, 20 Dec 2007 16:26:09 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 476ADDEB.B91D2.3133 ; \n\t20 Dec 2007 16:26:06 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 69531A6FCE;\n\tThu, 20 Dec 2007 21:25:53 +0000 (GMT)\nMessage-ID: <200712202125.lBKLPIJv007598@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 51\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 21:25:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BDA612BC7C\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 21:25:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKLPIw1007600\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 16:25:18 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKLPIJv007598\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 16:25:18 -0500\nDate: Thu, 20 Dec 2007 16:25:18 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: josrodri@iupui.edu\nSubject: [sakai] svn commit: r39561 - in gradebook/trunk/app/ui/src/webapp: inc js\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 16:26:10 2007\nX-DSPAM-Confidence: 0.9804\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39561\n\nAuthor: josrodri@iupui.edu\nDate: 2007-12-20 16:25:16 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39561\n\nModified:\ngradebook/trunk/app/ui/src/webapp/inc/bulkNewItems.jspf\ngradebook/trunk/app/ui/src/webapp/js/multiItemAdd.js\nLog:\nSAK-12540: removing as well as migrating (see comment in JIRA)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Thu Dec 20 15:33:33 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 15:33:33 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 15:33:33 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby awakenings.mail.umich.edu () with ESMTP id lBKKXXAA009258;\n\tThu, 20 Dec 2007 15:33:33 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 476AD197.B3CCC.14656 ; \n\t20 Dec 2007 15:33:30 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7FFD9A6639;\n\tThu, 20 Dec 2007 20:33:33 +0000 (GMT)\nMessage-ID: <200712202032.lBKKWnug007471@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 522\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 20:33:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8D44B3E3E3\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 20:33:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKKWoXd007473\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 15:32:50 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKKWnug007471\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 15:32:49 -0500\nDate: Thu, 20 Dec 2007 15:32:49 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39560 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 15:33:33 2007\nX-DSPAM-Confidence: 0.8425\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39560\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-20 15:32:48 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39560\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdate externals for msgcntr to 39559.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Thu Dec 20 15:31:06 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 15:31:06 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 15:31:06 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby sleepers.mail.umich.edu () with ESMTP id lBKKV55G008360;\n\tThu, 20 Dec 2007 15:31:05 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 476AD103.1D8E8.13082 ; \n\t20 Dec 2007 15:31:02 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7F689A6639;\n\tThu, 20 Dec 2007 20:31:04 +0000 (GMT)\nMessage-ID: <200712202030.lBKKUO60007456@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 33\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 20:30:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B09BA3E3E3\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 20:30:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKKUOrH007458\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 15:30:24 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKKUO60007456\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 15:30:24 -0500\nDate: Thu, 20 Dec 2007 15:30:24 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39559 - in msgcntr/branches/oncourse_opc_122007/messageforums-app/src/java/org/sakaiproject/tool/messageforums: . ui\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 15:31:06 2007\nX-DSPAM-Confidence: 0.8418\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39559\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-20 15:30:22 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39559\n\nModified:\nmsgcntr/branches/oncourse_opc_122007/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java\nmsgcntr/branches/oncourse_opc_122007/messageforums-app/src/java/org/sakaiproject/tool/messageforums/ui/PrivateMessageDecoratedBean.java\nLog:\nSAK-12488 => svn merge -r39557:39558 https://source.sakaiproject.org/svn/msgcntr/trunk.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom hu2@iupui.edu Thu Dec 20 15:26:29 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 15:26:29 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 15:26:29 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby godsend.mail.umich.edu () with ESMTP id lBKKQSL7016714;\n\tThu, 20 Dec 2007 15:26:28 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 476ACFEB.31DCE.26629 ; \n\t20 Dec 2007 15:26:26 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 74AF1A6639;\n\tThu, 20 Dec 2007 20:26:26 +0000 (GMT)\nMessage-ID: <200712202025.lBKKPeau007428@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 536\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 20:26:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 175AE3E3D2\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 20:25:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKKPeNs007430\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 15:25:40 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKKPeau007428\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 15:25:40 -0500\nDate: Thu, 20 Dec 2007 15:25:40 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to hu2@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: hu2@iupui.edu\nSubject: [sakai] svn commit: r39558 - in msgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums: . ui\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 15:26:29 2007\nX-DSPAM-Confidence: 0.8466\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39558\n\nAuthor: hu2@iupui.edu\nDate: 2007-12-20 15:25:38 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39558\n\nModified:\nmsgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java\nmsgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums/ui/PrivateMessageDecoratedBean.java\nLog:\nSAK-12488\nwhen send a message to yourself. click reply to all, cc row should be null.\nhttp://jira.sakaiproject.org/jira/browse/SAK-12488\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Thu Dec 20 14:09:09 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 14:09:09 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 14:09:09 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby jacknife.mail.umich.edu () with ESMTP id lBKJ98gY027231;\n\tThu, 20 Dec 2007 14:09:08 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 476ABDCE.8D16C.19519 ; \n\t20 Dec 2007 14:09:05 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9BD95A6EAA;\n\tThu, 20 Dec 2007 19:08:54 +0000 (GMT)\nMessage-ID: <200712201908.lBKJ8Hd4007370@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 237\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 19:08:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EEC783E3B3\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 19:08:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKJ8H0e007372\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 14:08:17 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKJ8Hd4007370\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 14:08:17 -0500\nDate: Thu, 20 Dec 2007 14:08:17 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39557 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 14:09:09 2007\nX-DSPAM-Confidence: 0.9804\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39557\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-20 14:08:16 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39557\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdate external for assignment. r39556.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom tnguyen@iupui.edu Thu Dec 20 13:38:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 13:38:53 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 13:38:53 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby panther.mail.umich.edu () with ESMTP id lBKIcp80025037;\n\tThu, 20 Dec 2007 13:38:51 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 476AB6A6.341AC.16517 ; \n\t20 Dec 2007 13:38:32 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A2AD3A4AF7;\n\tThu, 20 Dec 2007 18:36:26 +0000 (GMT)\nMessage-ID: <200712201837.lBKIboZF007320@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 767\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 18:36:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 473D830CB0\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 18:38:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKIboKj007322\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 13:37:50 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKIboZF007320\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 13:37:50 -0500\nDate: Thu, 20 Dec 2007 13:37:50 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to tnguyen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: tnguyen@iupui.edu\nSubject: [sakai] svn commit: r39556 - assignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 13:38:53 2007\nX-DSPAM-Confidence: 0.9796\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39556\n\nAuthor: tnguyen@iupui.edu\nDate: 2007-12-20 13:37:49 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39556\n\nModified:\nassignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nSAK-12433 => fixes for assignment removal authz permission problems.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Thu Dec 20 13:13:44 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 13:13:44 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 13:13:44 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby faithful.mail.umich.edu () with ESMTP id lBKIDhLS023743;\n\tThu, 20 Dec 2007 13:13:43 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 476AB0D1.DFF9.17305 ; \n\t20 Dec 2007 13:13:39 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A5E399F944;\n\tThu, 20 Dec 2007 18:12:33 +0000 (GMT)\nMessage-ID: <200712201812.lBKICxNO007306@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 996\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 18:12:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E1CC73E2BA\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 18:13:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKICxZP007308\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 13:12:59 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKICxNO007306\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 13:12:59 -0500\nDate: Thu, 20 Dec 2007 13:12:59 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 13:13:44 2007\nX-DSPAM-Confidence: 0.9780\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39555\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-12-20 13:12:54 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39555\n\nRemoved:\ngradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/inferrers/\nModified:\ngradebook/trunk/helper-app/pom.xml\ngradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/entity/GradebookEntryEntityProvider.java\ngradebook/trunk/helper-app/src/webapp/WEB-INF/applicationContext.xml\nLog:\nNOJIRA \n- Removed Inferrer, everything now conveniently fits in the EntityProvider\n- Removed 3 of the gradebook deps, changed the remaining one to scope provided.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom arwhyte@umich.edu Thu Dec 20 11:58:05 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 11:58:05 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 11:58:05 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby flawless.mail.umich.edu () with ESMTP id lBKGw4ls000984;\n\tThu, 20 Dec 2007 11:58:04 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 476A9F16.3F749.3080 ; \n\t20 Dec 2007 11:58:01 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1E621A6B34;\n\tThu, 20 Dec 2007 16:35:59 +0000 (GMT)\nMessage-ID: <200712201632.lBKGWFha007118@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 606\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 16:35:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B41C93E269\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 16:32:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKGWFT1007120\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 11:32:15 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKGWFha007118\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 11:32:15 -0500\nDate: Thu, 20 Dec 2007 11:32:15 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: arwhyte@umich.edu\nSubject: [sakai] svn commit: r39554 - in reference/trunk/docs/releaseweb: . images\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 11:58:05 2007\nX-DSPAM-Confidence: 0.9861\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39554\n\nAuthor: arwhyte@umich.edu\nDate: 2007-12-20 11:32:10 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39554\n\nRemoved:\nreference/trunk/docs/releaseweb/fixed-issues.html\nreference/trunk/docs/releaseweb/images/logoslate160x89.jpg\nreference/trunk/docs/releaseweb/images/slateripple4.jpg\nreference/trunk/docs/releaseweb/install-build.html\nreference/trunk/docs/releaseweb/install-config.html\nreference/trunk/docs/releaseweb/install-dbconfig.html\nreference/trunk/docs/releaseweb/install-env.html\nreference/trunk/docs/releaseweb/install-overview.html\nreference/trunk/docs/releaseweb/install-software.html\nreference/trunk/docs/releaseweb/install-tshoot.html\nreference/trunk/docs/releaseweb/open-issues.html\nreference/trunk/docs/releaseweb/provisional.html\nreference/trunk/docs/releaseweb/release-notes.html\nLog:\nSAK-12537 remove obsolete 2.3.1 release *.html files and archive in Confluence.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Thu Dec 20 11:21:33 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 11:21:33 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 11:21:33 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby awakenings.mail.umich.edu () with ESMTP id lBKGLWlC007916;\n\tThu, 20 Dec 2007 11:21:32 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 476A9686.E2DEB.28479 ; \n\t20 Dec 2007 11:21:29 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3523AA69C1;\n\tThu, 20 Dec 2007 16:21:24 +0000 (GMT)\nMessage-ID: <200712201620.lBKGKjPH007104@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 904\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 16:20:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0BD4C3E22A\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 16:21:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKGKjW8007106\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 11:20:45 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKGKjPH007104\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 11:20:45 -0500\nDate: Thu, 20 Dec 2007 11:20:45 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 11:21:33 2007\nX-DSPAM-Confidence: 0.9799\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39553\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-12-20 11:20:42 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39553\n\nAdded:\ngradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/inferrers/\ngradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/inferrers/GradebookEntryViewParamsInferrer.java\ngradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/params/\ngradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/params/AddGradebookItemViewParams.java\nModified:\ngradebook/trunk/helper-app/pom.xml\ngradebook/trunk/helper-app/src/webapp/WEB-INF/applicationContext.xml\nLog:\nNOJIRA - Assignments2 Gradebook Helper source parts\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Thu Dec 20 10:45:35 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 10:45:35 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 10:45:35 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby faithful.mail.umich.edu () with ESMTP id lBKFjYQa010749;\n\tThu, 20 Dec 2007 10:45:34 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 476A8E18.5C7DF.20160 ; \n\t20 Dec 2007 10:45:31 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5A542A6917;\n\tThu, 20 Dec 2007 15:45:24 +0000 (GMT)\nMessage-ID: <200712201544.lBKFinK9007062@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 346\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 15:45:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9F4E13E1DD\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 15:45:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKFinrr007064\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 10:44:49 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKFinK9007062\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 10:44:49 -0500\nDate: Thu, 20 Dec 2007 10:44:49 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39552 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 10:45:35 2007\nX-DSPAM-Confidence: 0.9812\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39552\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-20 10:44:48 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39552\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdate externals for GB.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Thu Dec 20 10:34:22 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 10:34:22 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 10:34:22 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby awakenings.mail.umich.edu () with ESMTP id lBKFYLmJ014865;\n\tThu, 20 Dec 2007 10:34:21 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 476A8B76.EA1C9.14189 ; \n\t20 Dec 2007 10:34:17 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BB7B3A685F;\n\tThu, 20 Dec 2007 15:34:15 +0000 (GMT)\nMessage-ID: <200712201533.lBKFXefa007050@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 302\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 15:34:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 677073E11C\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 15:33:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKFXe7f007052\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 10:33:40 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKFXefa007050\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 10:33:40 -0500\nDate: Thu, 20 Dec 2007 10:33:40 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39551 - in gradebook/branches/oncourse_2-4-2/app/ui/src/webapp: . js\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 10:34:22 2007\nX-DSPAM-Confidence: 0.9808\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39551\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-20 10:33:38 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39551\n\nModified:\ngradebook/branches/oncourse_2-4-2/app/ui/src/webapp/addAssignment.jsp\ngradebook/branches/oncourse_2-4-2/app/ui/src/webapp/js/multiItemAdd.js\nLog:\nSAK-12535 => svn merge -r39546:39547 https://source.sakaiproject.org/svn/gradebook/trunk.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Thu Dec 20 10:29:44 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 10:29:44 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 10:29:44 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby faithful.mail.umich.edu () with ESMTP id lBKFTh9I001639;\n\tThu, 20 Dec 2007 10:29:43 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 476A8A5E.EBB5F.5738 ; \n\t20 Dec 2007 10:29:37 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4DFF2A68C7;\n\tThu, 20 Dec 2007 15:29:35 +0000 (GMT)\nMessage-ID: <200712201528.lBKFSx6Z007025@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 970\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 15:29:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1D86B3E11C\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 15:29:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKFSxbA007027\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 10:28:59 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKFSx6Z007025\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 10:28:59 -0500\nDate: Thu, 20 Dec 2007 10:28:59 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39550 - gradebook/branches/oncourse_2-4-2/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 10:29:44 2007\nX-DSPAM-Confidence: 0.9799\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39550\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-20 10:28:58 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39550\n\nModified:\ngradebook/branches/oncourse_2-4-2/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\nLog:\nchange assign.isCounted() to assign.isNotCounted() in createAssignments.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Dec 20 10:14:41 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 10:14:41 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 10:14:41 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby score.mail.umich.edu () with ESMTP id lBKFEffg029150;\n\tThu, 20 Dec 2007 10:14:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 476A86D9.5E275.3386 ; \n\t20 Dec 2007 10:14:36 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C59DCA67FA;\n\tThu, 20 Dec 2007 15:14:26 +0000 (GMT)\nMessage-ID: <200712201513.lBKFDsNu007013@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 541\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 15:14:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C20DD3E1A8\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 15:14:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKFDs8A007015\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 10:13:54 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKFDsNu007013\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 10:13:54 -0500\nDate: Thu, 20 Dec 2007 10:13:54 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39549 - assignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 10:14:41 2007\nX-DSPAM-Confidence: 0.9832\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39549\n\nAuthor: zqian@umich.edu\nDate: 2007-12-20 10:13:53 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39549\n\nModified:\nassignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/CombineDuplicateSubmissionsConversionHandler.java\nLog:\nremove the unnecessary log line\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Thu Dec 20 10:01:26 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 10:01:26 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 10:01:26 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby faithful.mail.umich.edu () with ESMTP id lBKF1PCG019577;\n\tThu, 20 Dec 2007 10:01:25 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 476A83BF.522B2.3577 ; \n\t20 Dec 2007 10:01:22 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DD2B4A675F;\n\tThu, 20 Dec 2007 14:50:25 +0000 (GMT)\nMessage-ID: <200712201500.lBKF0if6006999@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 40\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 14:50:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 69A3A9957\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 15:01:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKF0iw5007001\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 10:00:44 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKF0if6006999\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 10:00:44 -0500\nDate: Thu, 20 Dec 2007 10:00:44 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r39548 - in polls/trunk/tool: . src/java/org/sakaiproject/poll/tool/validators\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 10:01:26 2007\nX-DSPAM-Confidence: 0.9758\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39548\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-12-20 10:00:05 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39548\n\nModified:\npolls/trunk/tool/pom.xml\npolls/trunk/tool/src/java/org/sakaiproject/poll/tool/validators/OptionValidator.java\nLog:\nSAK-11704 now check for the empty strings from fckeditor\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom josrodri@iupui.edu Thu Dec 20 09:59:36 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 09:59:36 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 09:59:36 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby flawless.mail.umich.edu () with ESMTP id lBKExZHO000880;\n\tThu, 20 Dec 2007 09:59:35 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 476A8352.A7268.32103 ; \n\t20 Dec 2007 09:59:33 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 199E7A60A3;\n\tThu, 20 Dec 2007 14:48:35 +0000 (GMT)\nMessage-ID: <200712201458.lBKEwoN3006969@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 913\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 14:48:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5ED213E194\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 14:59:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEwpfv006971\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 09:58:51 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEwoN3006969\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:58:50 -0500\nDate: Thu, 20 Dec 2007 09:58:50 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: josrodri@iupui.edu\nSubject: [sakai] svn commit: r39547 - in gradebook/trunk/app/ui/src/webapp: . inc js\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 09:59:36 2007\nX-DSPAM-Confidence: 0.9842\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39547\n\nAuthor: josrodri@iupui.edu\nDate: 2007-12-20 09:58:49 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39547\n\nModified:\ngradebook/trunk/app/ui/src/webapp/addAssignment.jsp\ngradebook/trunk/app/ui/src/webapp/inc/bulkNewItems.jspf\ngradebook/trunk/app/ui/src/webapp/js/multiItemAdd.js\nLog:\nSAK-12535: addAssignment.jsp, multiItemAdd.js\n\nbulkNewItems.jspf has roll-back of non-graded option.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Thu Dec 20 09:45:28 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 09:45:28 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 09:45:28 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby mission.mail.umich.edu () with ESMTP id lBKEjR9o007195;\n\tThu, 20 Dec 2007 09:45:27 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 476A7FFC.A7627.12066 ; \n\t20 Dec 2007 09:45:19 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CA2B4A60A3;\n\tThu, 20 Dec 2007 14:34:14 +0000 (GMT)\nMessage-ID: <200712201444.lBKEiIFZ006957@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1001\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 14:33:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 380DF3E14B\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 14:44:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEiIdA006959\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 09:44:18 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEiIFZ006957\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:44:18 -0500\nDate: Thu, 20 Dec 2007 09:44:18 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39546 - content/branches/SAK-12511\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 09:45:28 2007\nX-DSPAM-Confidence: 0.9770\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39546\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-12-20 09:44:15 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39546\n\nAdded:\ncontent/branches/SAK-12511/pom.xml\nLog:\nSAK-12511 branch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Thu Dec 20 09:44:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 09:44:42 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 09:44:42 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby casino.mail.umich.edu () with ESMTP id lBKEifAV023535;\n\tThu, 20 Dec 2007 09:44:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 476A7FD4.630D5.2066 ; \n\t20 Dec 2007 09:44:39 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 78BD3A6743;\n\tThu, 20 Dec 2007 14:33:46 +0000 (GMT)\nMessage-ID: <200712201443.lBKEhmHS006941@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 909\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 14:33:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B51E83E14B\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 14:44:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEhmdh006943\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 09:43:48 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEhmHS006941\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:43:48 -0500\nDate: Thu, 20 Dec 2007 09:43:48 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39545 - content/branches/SAK-12511\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 09:44:42 2007\nX-DSPAM-Confidence: 0.9776\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39545\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-12-20 09:43:45 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39545\n\nAdded:\ncontent/branches/SAK-12511/content-util/\nLog:\nSAK-12511 branch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Thu Dec 20 09:44:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 09:44:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 09:44:19 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby sleepers.mail.umich.edu () with ESMTP id lBKEiIB9019143;\n\tThu, 20 Dec 2007 09:44:18 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 476A7FBD.576B.1017 ; \n\t20 Dec 2007 09:44:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 04AB8A6740;\n\tThu, 20 Dec 2007 14:33:22 +0000 (GMT)\nMessage-ID: <200712201443.lBKEhQV2006927@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 422\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 14:32:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 005063E14B\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 14:43:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEhQmV006929\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 09:43:26 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEhQV2006927\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:43:26 -0500\nDate: Thu, 20 Dec 2007 09:43:26 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39544 - content/branches/SAK-12511\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 09:44:19 2007\nX-DSPAM-Confidence: 0.9794\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39544\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-12-20 09:43:23 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39544\n\nAdded:\ncontent/branches/SAK-12511/content-tool/\nLog:\nSAK-12511 branch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Thu Dec 20 09:44:01 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 09:44:01 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 09:44:01 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby mission.mail.umich.edu () with ESMTP id lBKEi07Y006394;\n\tThu, 20 Dec 2007 09:44:00 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 476A7FAA.CBF3C.11324 ; \n\t20 Dec 2007 09:43:57 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 25ACDA6722;\n\tThu, 20 Dec 2007 14:33:02 +0000 (GMT)\nMessage-ID: <200712201443.lBKEh5SK006915@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 855\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 14:32:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9B03A3E14B\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 14:43:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEh5C2006917\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 09:43:05 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEh5SK006915\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:43:05 -0500\nDate: Thu, 20 Dec 2007 09:43:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39543 - content/branches/SAK-12511\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 09:44:01 2007\nX-DSPAM-Confidence: 0.9785\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39543\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-12-20 09:43:02 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39543\n\nAdded:\ncontent/branches/SAK-12511/content-test/\nLog:\nSAK-12511 branch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Thu Dec 20 09:41:26 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 09:41:26 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 09:41:26 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby flawless.mail.umich.edu () with ESMTP id lBKEfQ93024848;\n\tThu, 20 Dec 2007 09:41:26 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 476A7F09.6AED5.6774 ; \n\t20 Dec 2007 09:41:22 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7C6B8A6663;\n\tThu, 20 Dec 2007 14:30:23 +0000 (GMT)\nMessage-ID: <200712201440.lBKEeRRK006900@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 337\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 14:29:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2FA543E142\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 14:40:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEeRW2006902\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 09:40:27 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEeRRK006900\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:40:27 -0500\nDate: Thu, 20 Dec 2007 09:40:27 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39542 - content/branches/SAK-12511\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 09:41:26 2007\nX-DSPAM-Confidence: 0.9773\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39542\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-12-20 09:40:24 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39542\n\nAdded:\ncontent/branches/SAK-12511/contentmultiplex-impl/\nLog:\nSAK-12511 branch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Thu Dec 20 09:40:57 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 09:40:56 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 09:40:56 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby brazil.mail.umich.edu () with ESMTP id lBKEeuWX031667;\n\tThu, 20 Dec 2007 09:40:56 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 476A7EF2.6D20F.2696 ; \n\t20 Dec 2007 09:40:53 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A06BEA672E;\n\tThu, 20 Dec 2007 14:29:57 +0000 (GMT)\nMessage-ID: <200712201440.lBKEe502006888@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 27\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 14:29:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 017043E12B\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 14:40:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEe5qd006890\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 09:40:05 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEe502006888\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:40:05 -0500\nDate: Thu, 20 Dec 2007 09:40:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39541 - content/branches/SAK-12511\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 09:40:56 2007\nX-DSPAM-Confidence: 0.9785\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39541\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-12-20 09:40:02 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39541\n\nAdded:\ncontent/branches/SAK-12511/content-jcr-migration-impl/\nLog:\nSAK-12511 branch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Thu Dec 20 09:40:24 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 09:40:24 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 09:40:24 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby jacknife.mail.umich.edu () with ESMTP id lBKEeNWi014339;\n\tThu, 20 Dec 2007 09:40:23 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 476A7ED1.A218C.9382 ; \n\t20 Dec 2007 09:40:20 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4E343A6727;\n\tThu, 20 Dec 2007 14:29:27 +0000 (GMT)\nMessage-ID: <200712201439.lBKEdZg7006876@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 37\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 14:29:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 81F953E12B\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 14:39:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEdZfp006878\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 09:39:35 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEdZg7006876\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:39:35 -0500\nDate: Thu, 20 Dec 2007 09:39:35 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39540 - content/branches/SAK-12511\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 09:40:24 2007\nX-DSPAM-Confidence: 0.9813\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39540\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-12-20 09:39:32 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39540\n\nAdded:\ncontent/branches/SAK-12511/content-jcr-migration-api/\nLog:\nSAK-12511 branch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Thu Dec 20 09:40:09 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 09:40:09 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 09:40:09 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby fan.mail.umich.edu () with ESMTP id lBKEe8o2006163;\n\tThu, 20 Dec 2007 09:40:08 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 476A7EC0.E2B85.21418 ; \n\t20 Dec 2007 09:40:03 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CB486A5B4A;\n\tThu, 20 Dec 2007 14:29:06 +0000 (GMT)\nMessage-ID: <200712201439.lBKEdDqd006864@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 588\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 14:28:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 46C333E12B\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 14:39:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEdE7p006866\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 09:39:14 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEdDqd006864\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:39:13 -0500\nDate: Thu, 20 Dec 2007 09:39:13 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39539 - content/branches/SAK-12511\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 09:40:09 2007\nX-DSPAM-Confidence: 0.9785\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39539\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-12-20 09:39:10 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39539\n\nAdded:\ncontent/branches/SAK-12511/content-impl-providers/\nLog:\nSAK-12511 branch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Thu Dec 20 09:39:29 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 09:39:29 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 09:39:29 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby mission.mail.umich.edu () with ESMTP id lBKEdLl3004171;\n\tThu, 20 Dec 2007 09:39:21 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 476A7E92.AA29E.32418 ; \n\t20 Dec 2007 09:39:17 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 992CFA6715;\n\tThu, 20 Dec 2007 14:28:24 +0000 (GMT)\nMessage-ID: <200712201438.lBKEcVx5006852@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 405\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 14:28:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id F0AE63E140\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 14:38:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEcVvd006854\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 09:38:31 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEcVx5006852\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:38:31 -0500\nDate: Thu, 20 Dec 2007 09:38:31 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39538 - content/branches/SAK-12511\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 09:39:29 2007\nX-DSPAM-Confidence: 0.9774\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39538\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-12-20 09:38:28 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39538\n\nAdded:\ncontent/branches/SAK-12511/content-impl-jcr/\nLog:\nSAK-12511 branch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Thu Dec 20 09:38:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 09:38:43 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 09:38:43 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby casino.mail.umich.edu () with ESMTP id lBKEcgaj020651;\n\tThu, 20 Dec 2007 09:38:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 476A7E6D.448DD.17849 ; \n\t20 Dec 2007 09:38:40 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 58939A6729;\n\tThu, 20 Dec 2007 14:27:47 +0000 (GMT)\nMessage-ID: <200712201437.lBKEbsGU006835@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 304\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 14:27:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6C30A3E12B\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 14:38:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEbs0h006837\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 09:37:54 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEbsGU006835\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:37:54 -0500\nDate: Thu, 20 Dec 2007 09:37:54 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39537 - content/branches/SAK-12511\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 09:38:43 2007\nX-DSPAM-Confidence: 0.8418\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39537\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-12-20 09:37:51 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39537\n\nAdded:\ncontent/branches/SAK-12511/content-impl/\nLog:\nSAK-12511 branch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Thu Dec 20 09:38:22 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 09:38:22 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 09:38:22 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby godsend.mail.umich.edu () with ESMTP id lBKEcMKl003187;\n\tThu, 20 Dec 2007 09:38:22 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 476A7E57.D9500.30042 ; \n\t20 Dec 2007 09:38:18 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B9DC6A6726;\n\tThu, 20 Dec 2007 14:27:25 +0000 (GMT)\nMessage-ID: <200712201437.lBKEbZNJ006823@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 958\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 14:27:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B87AB3E12B\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 14:37:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEbZ2L006825\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 09:37:35 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEbZNJ006823\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:37:35 -0500\nDate: Thu, 20 Dec 2007 09:37:35 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39536 - content/branches/SAK-12511\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 09:38:22 2007\nX-DSPAM-Confidence: 0.9779\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39536\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-12-20 09:37:32 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39536\n\nAdded:\ncontent/branches/SAK-12511/content-help/\nLog:\nSAK-12511 branch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Thu Dec 20 09:38:08 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 09:38:08 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 09:38:08 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby godsend.mail.umich.edu () with ESMTP id lBKEc7SL003083;\n\tThu, 20 Dec 2007 09:38:07 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 476A7E47.374C5.27631 ; \n\t20 Dec 2007 09:38:02 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3D6AAA6722;\n\tThu, 20 Dec 2007 14:27:05 +0000 (GMT)\nMessage-ID: <200712201437.lBKEbH8j006811@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 54\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 14:26:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 899A23E12B\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 14:37:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEbHUO006813\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 09:37:17 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEbH8j006811\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:37:17 -0500\nDate: Thu, 20 Dec 2007 09:37:17 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39535 - content/branches/SAK-12511\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 09:38:08 2007\nX-DSPAM-Confidence: 0.9789\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39535\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-12-20 09:37:14 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39535\n\nAdded:\ncontent/branches/SAK-12511/content-bundles/\nLog:\nSAK-12511 branch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Thu Dec 20 09:37:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 09:37:42 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 09:37:42 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby jacknife.mail.umich.edu () with ESMTP id lBKEbf1O013026;\n\tThu, 20 Dec 2007 09:37:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 476A7E2E.44F49.16324 ; \n\t20 Dec 2007 09:37:37 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8C61DA6715;\n\tThu, 20 Dec 2007 14:26:42 +0000 (GMT)\nMessage-ID: <200712201436.lBKEauNv006799@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 948\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 14:26:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 848813E12B\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 14:37:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEaudI006801\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 09:36:56 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEauNv006799\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:36:56 -0500\nDate: Thu, 20 Dec 2007 09:36:56 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39534 - content/branches/SAK-12511\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 09:37:42 2007\nX-DSPAM-Confidence: 0.8413\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39534\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-12-20 09:36:53 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39534\n\nAdded:\ncontent/branches/SAK-12511/content-api/\nLog:\nSAK-12511 branch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Thu Dec 20 09:23:59 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 09:23:59 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 09:23:59 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby faithful.mail.umich.edu () with ESMTP id lBKENvcW000880;\n\tThu, 20 Dec 2007 09:23:57 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 476A7AF4.6B410.28069 ; \n\t20 Dec 2007 09:23:51 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9791EA66F2;\n\tThu, 20 Dec 2007 14:12:56 +0000 (GMT)\nMessage-ID: <200712201423.lBKENAR5006760@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 524\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 14:12:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 393FA3DF73\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 14:23:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKENA4Y006762\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 09:23:11 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKENAR5006760\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:23:10 -0500\nDate: Thu, 20 Dec 2007 09:23:10 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39533 - content/branches/SAK-12511\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 09:23:59 2007\nX-DSPAM-Confidence: 0.9787\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39533\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-12-20 09:23:08 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39533\n\nRemoved:\ncontent/branches/SAK-12511/trunk/\nLog:\nSAK-12511 branch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Thu Dec 20 09:23:03 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 09:23:03 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 09:23:03 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby chaos.mail.umich.edu () with ESMTP id lBKEN2WD020219;\n\tThu, 20 Dec 2007 09:23:02 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 476A7AC1.1A5F9.19852 ; \n\t20 Dec 2007 09:22:59 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 58F33A66EE;\n\tThu, 20 Dec 2007 14:12:03 +0000 (GMT)\nMessage-ID: <200712201422.lBKEMB7w006748@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 541\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 14:11:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 439A53E11C\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 14:22:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEMCHp006750\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 09:22:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEMB7w006748\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:22:11 -0500\nDate: Thu, 20 Dec 2007 09:22:11 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39532 - content/branches/SAK-12511\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 09:23:03 2007\nX-DSPAM-Confidence: 0.9777\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39532\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-12-20 09:22:08 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39532\n\nAdded:\ncontent/branches/SAK-12511/trunk/\nLog:\nSAK-12511 branch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Thu Dec 20 09:12:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 09:12:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 09:12:51 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby faithful.mail.umich.edu () with ESMTP id lBKEConT027930;\n\tThu, 20 Dec 2007 09:12:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 476A785B.202CA.26344 ; \n\t20 Dec 2007 09:12:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DE407A66C1;\n\tThu, 20 Dec 2007 14:02:16 +0000 (GMT)\nMessage-ID: <200712201410.lBKEAVvU006730@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 157\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 14:01:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D51249F1B\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 14:10:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKEAVl7006732\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 09:10:31 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKEAVvU006730\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:10:31 -0500\nDate: Thu, 20 Dec 2007 09:10:31 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39531 - content/branches/SAK-12511\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 09:12:51 2007\nX-DSPAM-Confidence: 0.9787\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39531\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-12-20 09:10:29 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39531\n\nRemoved:\ncontent/branches/SAK-12511/trunk/\nLog:\nNOJIRA copied wrong\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Thu Dec 20 09:06:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 09:06:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 09:06:25 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby mission.mail.umich.edu () with ESMTP id lBKE6OUX020816;\n\tThu, 20 Dec 2007 09:06:24 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 476A76CA.129E0.28490 ; \n\t20 Dec 2007 09:06:07 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8372CA668C;\n\tThu, 20 Dec 2007 14:00:56 +0000 (GMT)\nMessage-ID: <200712201404.lBKE4JLD006714@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 527\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 14:00:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 31CE73DF63\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 14:04:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKE4Jke006716\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 09:04:19 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKE4JLD006714\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 09:04:19 -0500\nDate: Thu, 20 Dec 2007 09:04:19 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39530 - content/branches/SAK-12511\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 09:06:25 2007\nX-DSPAM-Confidence: 0.9851\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39530\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-12-20 09:04:16 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39530\n\nAdded:\ncontent/branches/SAK-12511/trunk/\nLog:\nSAK-12511 Branch to fix the migration sql updates\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Thu Dec 20 07:59:57 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 07:59:57 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 07:59:57 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby godsend.mail.umich.edu () with ESMTP id lBKCxu4t027985;\n\tThu, 20 Dec 2007 07:59:56 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 476A673A.794D.7143 ; \n\t20 Dec 2007 07:59:53 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 23EBF51DBB;\n\tThu, 20 Dec 2007 12:59:34 +0000 (GMT)\nMessage-ID: <200712201259.lBKCx2DB006645@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 357\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 12:59:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 648AF341D4\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 12:59:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKCx2NY006647\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 07:59:02 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKCx2DB006645\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 07:59:02 -0500\nDate: Thu, 20 Dec 2007 07:59:02 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 07:59:57 2007\nX-DSPAM-Confidence: 0.9889\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39529\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-12-20 07:58:25 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39529\n\nModified:\ngradebook/branches/sakai_2-5-x/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java\nmsgcntr/branches/sakai_2-5-x/messageforums-app/src/java/org/sakaiproject/tool/messageforums/DiscussionForumTool.java\nLog:\nSAK-10606\nreverting change\nhttp://bugs.sakaiproject.org/jira/browse/SAK-10606\nGB authorization error in logs when student accesses Forums\n\nU msgcntr/messageforums-app/src/java/org/sakaiproject/tool/messageforums/DiscussionForumTool.java\nU gradebook/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java\n\n\n------------------------------------------------------------------------\ndhorwitz@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/\ndhorwitz@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/\nU    msgcntr/messageforums-app/src/java/org/sakaiproject/tool/messageforums/DiscussionForumTool.java\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge  -r39522:39521 https://source.sakaiproject.org/svn/msgcntr/branches/sakai_2-5-x msgcntr/\nU    msgcntr/messageforums-app/src/java/org/sakaiproject/tool/messageforums/DiscussionForumTool.java\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge  -r39522:39521 https://source.sakaiproject.org/svn/gradebook/branches/sakai_2-5-x gradebook/\nU    gradebook/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Thu Dec 20 07:38:46 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 07:38:46 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 07:38:46 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby mission.mail.umich.edu () with ESMTP id lBKCcjXo021942;\n\tThu, 20 Dec 2007 07:38:45 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 476A6250.27263.8132 ; \n\t20 Dec 2007 07:38:42 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 08E08A5487;\n\tThu, 20 Dec 2007 12:35:37 +0000 (GMT)\nMessage-ID: <200712201238.lBKCc5J1006626@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 528\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 12:35:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DFA543DFAD\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 12:38:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKCc57F006628\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 07:38:05 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKCc5J1006626\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 07:38:05 -0500\nDate: Thu, 20 Dec 2007 07:38:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r39528 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 07:38:46 2007\nX-DSPAM-Confidence: 0.9839\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39528\n\nAuthor: dlhaines@umich.edu\nDate: 2007-12-20 07:38:03 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39528\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASS.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASS.properties\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/defaultbuild.properties\nLog:\nCTools: new assignments build 2.4.xPASS.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stephen.marquard@uct.ac.za Thu Dec 20 06:43:49 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 06:43:49 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 06:43:49 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby panther.mail.umich.edu () with ESMTP id lBKBhloN015829;\n\tThu, 20 Dec 2007 06:43:47 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 476A556D.97EC.25002 ; \n\t20 Dec 2007 06:43:43 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 162BA9A447;\n\tThu, 20 Dec 2007 11:43:28 +0000 (GMT)\nMessage-ID: <200712201142.lBKBgr2P006558@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 114\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 11:43:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 28A9D3DF8B\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 11:43:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKBgr6O006560\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 06:42:54 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKBgr2P006558\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 06:42:53 -0500\nDate: Thu, 20 Dec 2007 06:42:53 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: stephen.marquard@uct.ac.za\nSubject: [sakai] svn commit: r39527 - in event/trunk/event-api/api/src/java/org/sakaiproject/event: api cover\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 06:43:49 2007\nX-DSPAM-Confidence: 0.7541\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39527\n\nAuthor: stephen.marquard@uct.ac.za\nDate: 2007-12-20 06:42:41 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39527\n\nModified:\nevent/trunk/event-api/api/src/java/org/sakaiproject/event/api/UsageSessionService.java\nevent/trunk/event-api/api/src/java/org/sakaiproject/event/cover/UsageSessionService.java\nLog:\nSAK-10804 Remove obsolete / confusing reference to unused SAKAI_SESSION_COOKIE\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Thu Dec 20 05:49:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 05:49:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 05:49:17 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby flawless.mail.umich.edu () with ESMTP id lBKAnGpp015052;\n\tThu, 20 Dec 2007 05:49:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 476A489B.5AB68.28524 ; \n\t20 Dec 2007 05:49:02 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C6FD0A5CA3;\n\tThu, 20 Dec 2007 10:48:57 +0000 (GMT)\nMessage-ID: <200712201048.lBKAm7bk006486@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 642\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 10:48:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E75EA3DF4A\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 10:48:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKAm7Xj006488\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 05:48:07 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKAm7bk006486\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 05:48:07 -0500\nDate: Thu, 20 Dec 2007 05:48:07 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r39526 - reset-pass/branches/sakai_2-5-x/reset-pass-help/src/sakai_resetpass\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 05:49:17 2007\nX-DSPAM-Confidence: 0.8434\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39526\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-12-20 05:47:59 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39526\n\nModified:\nreset-pass/branches/sakai_2-5-x/reset-pass-help/src/sakai_resetpass/help.xml\nLog:\nSAK-12531 fix help doc name\n------------------------------------------------------------------------\ndhorwitz@david-horwitz-6:~/branchManagemnt/sakai_2-5-x> svn merge -r39524:39525  https://source.sakaiproject.org/svn/reset-pass/trunk reset-pass/\nU    reset-pass/reset-pass-help/src/sakai_resetpass/help.xml\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Thu Dec 20 05:39:52 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 05:39:52 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 05:39:52 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby godsend.mail.umich.edu () with ESMTP id lBKAdo2F027416;\n\tThu, 20 Dec 2007 05:39:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 476A4668.63579.1756 ; \n\t20 Dec 2007 05:39:39 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 15FD8A60BB;\n\tThu, 20 Dec 2007 10:39:32 +0000 (GMT)\nMessage-ID: <200712201038.lBKAcvpm006474@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 29\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 10:39:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8CED83DF44\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 10:39:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBKAcvZR006476\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 05:38:57 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBKAcvpm006474\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 05:38:57 -0500\nDate: Thu, 20 Dec 2007 05:38:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r39525 - reset-pass/trunk/reset-pass-help/src/sakai_resetpass\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 05:39:52 2007\nX-DSPAM-Confidence: 0.8418\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39525\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-12-20 05:38:38 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39525\n\nModified:\nreset-pass/trunk/reset-pass-help/src/sakai_resetpass/help.xml\nLog:\nSAK-12531 fix help doc name\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stephen.marquard@uct.ac.za Thu Dec 20 04:22:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 04:22:43 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 04:22:43 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby faithful.mail.umich.edu () with ESMTP id lBK9Mg05015248;\n\tThu, 20 Dec 2007 04:22:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 476A345D.2DD06.20407 ; \n\t20 Dec 2007 04:22:39 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 89413A30E2;\n\tThu, 20 Dec 2007 09:21:33 +0000 (GMT)\nMessage-ID: <200712200922.lBK9M5uO006414@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 802\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 09:21:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8E4BC3DEF6\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 09:22:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBK9M6sv006416\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 04:22:06 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBK9M5uO006414\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 04:22:05 -0500\nDate: Thu, 20 Dec 2007 04:22:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: stephen.marquard@uct.ac.za\nSubject: [sakai] svn commit: r39524 - portal/branches/sakai_2-5-x/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 04:22:43 2007\nX-DSPAM-Confidence: 0.9844\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39524\n\nAuthor: stephen.marquard@uct.ac.za\nDate: 2007-12-20 04:21:58 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39524\n\nModified:\nportal/branches/sakai_2-5-x/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java\nLog:\nSAK-12528: drop page alias not found warn to debug (2-5-x merge)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stephen.marquard@uct.ac.za Thu Dec 20 04:19:28 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 04:19:28 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 04:19:28 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby flawless.mail.umich.edu () with ESMTP id lBK9JRIU028058;\n\tThu, 20 Dec 2007 04:19:27 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 476A339A.B7A79.3764 ; \n\t20 Dec 2007 04:19:25 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A99D0A60B9;\n\tThu, 20 Dec 2007 09:18:20 +0000 (GMT)\nMessage-ID: <200712200918.lBK9IlJJ006402@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 12\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 09:18:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D75D73DF04\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 09:19:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBK9Ilxo006404\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 04:18:47 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBK9IlJJ006402\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 04:18:47 -0500\nDate: Thu, 20 Dec 2007 04:18:47 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: stephen.marquard@uct.ac.za\nSubject: [sakai] svn commit: r39523 - portal/trunk/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 04:19:28 2007\nX-DSPAM-Confidence: 0.9834\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39523\n\nAuthor: stephen.marquard@uct.ac.za\nDate: 2007-12-20 04:18:39 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39523\n\nModified:\nportal/trunk/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java\nLog:\nSAK-12528: drop page alias not found warn to debug\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Thu Dec 20 04:13:41 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 04:13:41 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 04:13:41 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby flawless.mail.umich.edu () with ESMTP id lBK9DeDp026967;\n\tThu, 20 Dec 2007 04:13:40 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 476A323F.20DA6.29865 ; \n\t20 Dec 2007 04:13:37 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 38297A60A4;\n\tThu, 20 Dec 2007 09:12:31 +0000 (GMT)\nMessage-ID: <200712200913.lBK9D1D7006390@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 130\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 09:12:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 103573DEF6\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 09:13:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBK9D1Ni006392\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 04:13:01 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBK9D1D7006390\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 04:13:01 -0500\nDate: Thu, 20 Dec 2007 04:13:01 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 04:13:41 2007\nX-DSPAM-Confidence: 0.9819\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39522\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-12-20 04:12:30 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39522\n\nModified:\ngradebook/branches/sakai_2-5-x/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java\nmsgcntr/branches/sakai_2-5-x/messageforums-app/src/java/org/sakaiproject/tool/messageforums/DiscussionForumTool.java\nLog:\nSAK-10606\nhttp://bugs.sakaiproject.org/jira/browse/SAK-10606\nGB authorization error in logs when student accesses Forums\n\nU msgcntr/messageforums-app/src/java/org/sakaiproject/tool/messageforums/DiscussionForumTool.java\nU gradebook/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Thu Dec 20 03:59:12 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 20 Dec 2007 03:59:12 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 20 Dec 2007 03:59:12 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby brazil.mail.umich.edu () with ESMTP id lBK8x8RK030919;\n\tThu, 20 Dec 2007 03:59:08 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 476A2ED7.76A43.17348 ; \n\t20 Dec 2007 03:59:06 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 676EEA606A;\n\tThu, 20 Dec 2007 08:58:57 +0000 (GMT)\nMessage-ID: <200712200858.lBK8wHWR005906@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 23\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 08:58:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EE17C3DC7D\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 08:58:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBK8wHIM005908\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 03:58:17 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBK8wHWR005906\n\tfor source@collab.sakaiproject.org; Thu, 20 Dec 2007 03:58:17 -0500\nDate: Thu, 20 Dec 2007 03:58:17 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 20 03:59:12 2007\nX-DSPAM-Confidence: 0.9843\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39521\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-12-20 03:57:52 -0500 (Thu, 20 Dec 2007)\nNew Revision: 39521\n\nModified:\ncitations/branches/sakai_2-5-x/citations-tool/tool/src/java/org/sakaiproject/citation/tool/CitationHelperAction.java\ncitations/branches/sakai_2-5-x/citations-util/util/src/bundle/citations.properties\nLog:\nSAK-12403 caught OverQuotaException in createTemporaryResource (setting an error and an errorMessage on the pipe)\n\nneeded to move call to initHelper into toolModeDispatch to make sure we can redirect the response as soon as the exception is caught\n\nadded over quota message to resource bundle following example of what happens\nwhen trying to upload a file\n\nU    citations/citations-tool/tool/src/java/org/sakaiproject/citation/tool/CitationHelperAction.java\nU    citations/citations-util/util/src/bundle/citations.properties\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Wed Dec 19 22:24:21 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 22:24:21 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 22:24:21 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby chaos.mail.umich.edu () with ESMTP id lBK3OKPJ016864;\n\tWed, 19 Dec 2007 22:24:20 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 4769E05E.9D910.12083 ; \n\t19 Dec 2007 22:24:17 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 47C9BA5C07;\n\tThu, 20 Dec 2007 03:24:17 +0000 (GMT)\nMessage-ID: <200712200323.lBK3NbbE005769@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 721\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 03:23:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BE6E1B18F\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 03:23:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBK3NcOB005771\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 22:23:38 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBK3NbbE005769\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 22:23:37 -0500\nDate: Wed, 19 Dec 2007 22:23:37 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39520 - assignment/branches/post-2-4-umich\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 22:24:21 2007\nX-DSPAM-Confidence: 0.9881\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39520\n\nAuthor: zqian@umich.edu\nDate: 2007-12-19 22:23:36 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39520\n\nModified:\nassignment/branches/post-2-4-umich/upgradeschema_oracle.config\nLog:\nback out mistakenly checked in local changes inside the config file\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Wed Dec 19 22:20:03 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 22:20:03 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 22:20:03 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby score.mail.umich.edu () with ESMTP id lBK3K2RU028954;\n\tWed, 19 Dec 2007 22:20:02 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4769DF5C.7C67D.7579 ; \n\t19 Dec 2007 22:19:59 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E99E1A5A1C;\n\tThu, 20 Dec 2007 03:19:59 +0000 (GMT)\nMessage-ID: <200712200319.lBK3JMgx005757@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 835\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 03:19:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 343373D9CF\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 03:19:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBK3JMt0005759\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 22:19:22 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBK3JMgx005757\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 22:19:22 -0500\nDate: Wed, 19 Dec 2007 22:19:22 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39519 - in assignment/branches/post-2-4-umich: . assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 22:20:03 2007\nX-DSPAM-Confidence: 0.9832\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39519\n\nAuthor: zqian@umich.edu\nDate: 2007-12-19 22:19:18 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39519\n\nModified:\nassignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/CombineDuplicateSubmissionsConversionHandler.java\nassignment/branches/post-2-4-umich/runconversion.sh\nassignment/branches/post-2-4-umich/upgradeschema_oracle.config\nLog:\nwhen setting the previous grading information, the previous property value is not Base64 encoded\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gbhatnag@umich.edu Wed Dec 19 22:10:31 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 22:10:31 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 22:10:31 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby godsend.mail.umich.edu () with ESMTP id lBK3AVoT018054;\n\tWed, 19 Dec 2007 22:10:31 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 4769DD1D.B70A7.16693 ; \n\t19 Dec 2007 22:10:24 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4A9C4A5BE7;\n\tThu, 20 Dec 2007 03:10:24 +0000 (GMT)\nMessage-ID: <200712200309.lBK39mSv005692@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 112\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 03:10:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0E30F3D9D0\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 03:10:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBK39m5U005694\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 22:09:48 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBK39mSv005692\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 22:09:48 -0500\nDate: Wed, 19 Dec 2007 22:09:48 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gbhatnag@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gbhatnag@umich.edu\nSubject: [sakai] svn commit: r39518 - in citations/trunk: citations-tool/tool/src/java/org/sakaiproject/citation/tool citations-util/util/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 22:10:31 2007\nX-DSPAM-Confidence: 0.9876\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39518\n\nAuthor: gbhatnag@umich.edu\nDate: 2007-12-19 22:09:46 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39518\n\nModified:\ncitations/trunk/citations-tool/tool/src/java/org/sakaiproject/citation/tool/CitationHelperAction.java\ncitations/trunk/citations-util/util/src/bundle/citations.properties\nLog:\nSAK-12403 caught OverQuotaException in createTemporaryResource (setting an error and an errorMessage on the pipe)\n\nneeded to move call to initHelper into toolModeDispatch to make sure we can redirect the response as soon as the exception is caught\n\nadded over quota message to resource bundle following example of what happens when trying to upload a file.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Wed Dec 19 20:06:47 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 20:06:47 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 20:06:47 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby awakenings.mail.umich.edu () with ESMTP id lBK16kxb027113;\n\tWed, 19 Dec 2007 20:06:46 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 4769C021.DCC28.13673 ; \n\t19 Dec 2007 20:06:44 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 01236A5A37;\n\tThu, 20 Dec 2007 00:47:44 +0000 (GMT)\nMessage-ID: <200712200106.lBK160mp005608@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 866\n          for <source@collab.sakaiproject.org>;\n          Thu, 20 Dec 2007 00:47:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7281B3DA00\n\tfor <source@collab.sakaiproject.org>; Thu, 20 Dec 2007 01:06:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBK161CW005610\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 20:06:01 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBK160mp005608\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 20:06:00 -0500\nDate: Wed, 19 Dec 2007 20:06:00 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r39517 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 20:06:47 2007\nX-DSPAM-Confidence: 0.9853\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39517\n\nAuthor: dlhaines@umich.edu\nDate: 2007-12-19 20:05:58 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39517\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/defaultbuild.properties\nLog:\nCTools: update for content conversion.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Wed Dec 19 18:25:16 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 18:25:16 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 18:25:16 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby chaos.mail.umich.edu () with ESMTP id lBJNPEO2011192;\n\tWed, 19 Dec 2007 18:25:14 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 4769A854.4EA23.27905 ; \n\t19 Dec 2007 18:25:11 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 44825A5960;\n\tWed, 19 Dec 2007 23:25:08 +0000 (GMT)\nMessage-ID: <200712192324.lBJNOUcI005472@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 27\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 23:24:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 345093942F\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 23:24:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJNOUm2005474\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 18:24:30 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJNOUcI005472\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 18:24:30 -0500\nDate: Wed, 19 Dec 2007 18:24:30 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r39516 - db/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/util/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 18:25:16 2007\nX-DSPAM-Confidence: 0.9845\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39516\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-19 18:24:25 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39516\n\nModified:\ndb/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionController.java\nLog:\nSAK-12239\nset auto-commit to false (just in case it's not already).\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Wed Dec 19 17:21:39 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 17:21:39 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 17:21:39 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby fan.mail.umich.edu () with ESMTP id lBJMLcZw017712;\n\tWed, 19 Dec 2007 17:21:38 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 4769996A.CC0E1.20692 ; \n\t19 Dec 2007 17:21:36 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id ADDE9A5889;\n\tWed, 19 Dec 2007 22:21:35 +0000 (GMT)\nMessage-ID: <200712192220.lBJMKnid005430@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1005\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 22:21:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0A4A53D465\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 22:21:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJMKnPp005432\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 17:20:50 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJMKnid005430\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 17:20:49 -0500\nDate: Wed, 19 Dec 2007 17:20:49 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39515 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 17:21:39 2007\nX-DSPAM-Confidence: 0.9818\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39515\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-19 17:20:49 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39515\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdate externals for GB.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Wed Dec 19 17:17:31 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 17:17:31 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 17:17:31 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby awakenings.mail.umich.edu () with ESMTP id lBJMHVSl030274;\n\tWed, 19 Dec 2007 17:17:31 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 47699874.40442.20337 ; \n\t19 Dec 2007 17:17:28 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2E9D8A1B42;\n\tWed, 19 Dec 2007 22:17:18 +0000 (GMT)\nMessage-ID: <200712192216.lBJMGgxo005417@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 767\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 22:17:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BBD1E394B3\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 22:16:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJMGgxi005419\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 17:16:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJMGgxo005417\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 17:16:42 -0500\nDate: Wed, 19 Dec 2007 17:16:42 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39514 - gradebook/branches/oncourse_2-4-2/app/ui/src/webapp/inc\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 17:17:31 2007\nX-DSPAM-Confidence: 0.9829\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39514\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-19 17:16:41 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39514\n\nModified:\ngradebook/branches/oncourse_2-4-2/app/ui/src/webapp/inc/bulkNewItems.jspf\nLog:\nfix broken GB.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Wed Dec 19 16:57:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 16:57:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 16:57:25 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby panther.mail.umich.edu () with ESMTP id lBJLvPDT019552;\n\tWed, 19 Dec 2007 16:57:25 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 476993AF.DE659.21391 ; \n\t19 Dec 2007 16:57:06 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4639AA56E3;\n\tWed, 19 Dec 2007 21:57:07 +0000 (GMT)\nMessage-ID: <200712192156.lBJLuYiD005370@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 417\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 21:56:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id ECF8B39405\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 21:56:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJLuZ5M005372\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 16:56:35 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJLuYiD005370\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 16:56:34 -0500\nDate: Wed, 19 Dec 2007 16:56:34 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39513 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 16:57:25 2007\nX-DSPAM-Confidence: 0.9825\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39513\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-19 16:56:33 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39513\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdate external for GB.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Wed Dec 19 16:55:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 16:55:50 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 16:55:50 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby godsend.mail.umich.edu () with ESMTP id lBJLtoYO008665;\n\tWed, 19 Dec 2007 16:55:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 4769934D.7F805.15336 ; \n\t19 Dec 2007 16:55:28 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 89381A5765;\n\tWed, 19 Dec 2007 21:55:29 +0000 (GMT)\nMessage-ID: <200712192154.lBJLsnkN005358@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 836\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 21:55:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 73E8639405\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 21:55:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJLsnFs005360\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 16:54:49 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJLsnkN005358\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 16:54:49 -0500\nDate: Wed, 19 Dec 2007 16:54:49 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39512 - gradebook/branches/oncourse_2-4-2/app/ui/src/webapp/inc\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 16:55:50 2007\nX-DSPAM-Confidence: 0.9824\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39512\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-19 16:54:48 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39512\n\nModified:\ngradebook/branches/oncourse_2-4-2/app/ui/src/webapp/inc/bulkNewItems.jspf\nLog:\ncommit for Joe. GB was broken.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Wed Dec 19 16:54:12 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 16:54:12 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 16:54:12 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby score.mail.umich.edu () with ESMTP id lBJLsBeS017690;\n\tWed, 19 Dec 2007 16:54:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 476992FE.63443.3581 ; \n\t19 Dec 2007 16:54:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 23D2FA5720;\n\tWed, 19 Dec 2007 21:54:09 +0000 (GMT)\nMessage-ID: <200712192153.lBJLrZ5W005346@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 303\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 21:53:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 40BF13943E\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 21:53:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJLrZG0005348\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 16:53:35 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJLrZ5W005346\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 16:53:35 -0500\nDate: Wed, 19 Dec 2007 16:53:35 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39511 - oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/js\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 16:54:12 2007\nX-DSPAM-Confidence: 0.9838\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39511\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-19 16:53:34 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39511\n\nModified:\noncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/js/headscripts.js\nLog:\nSAK-12506 => svn merge -r39508:39509 https://source.sakaiproject.org/svn/reference/branches/SAK-8152\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Wed Dec 19 16:52:58 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 16:52:58 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 16:52:58 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby flawless.mail.umich.edu () with ESMTP id lBJLqvoJ015427;\n\tWed, 19 Dec 2007 16:52:57 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 476992AD.25E7A.20438 ; \n\t19 Dec 2007 16:52:48 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D8FA5A5705;\n\tWed, 19 Dec 2007 21:52:45 +0000 (GMT)\nMessage-ID: <200712192152.lBJLqDXl005334@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 769\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 21:52:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4F6D639405\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 21:52:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJLqDAf005336\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 16:52:13 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJLqDXl005334\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 16:52:13 -0500\nDate: Wed, 19 Dec 2007 16:52:13 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 16:52:58 2007\nX-DSPAM-Confidence: 0.7604\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39510\n\nAuthor: ray@media.berkeley.edu\nDate: 2007-12-19 16:52:01 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39510\n\nModified:\ncomponent/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/component/api/ComponentManager.java\ncomponent/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/component/cover/ComponentManager.java\ncomponent/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/component/impl/SpringCompMgr.java\ncomponent/branches/SAK-8315/component-impl/integration-test/\ncomponent/branches/SAK-8315/component-impl/integration-test/src/test/java/org/sakaiproject/component/DynamicConfigurationTest.java\nLog:\nDeprecate and null out now unused method which used to have the ServerConfigurationService as a client\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Wed Dec 19 16:49:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 16:49:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 16:49:25 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby brazil.mail.umich.edu () with ESMTP id lBJLnOc9026401;\n\tWed, 19 Dec 2007 16:49:24 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 476991DE.92CF2.8822 ; \n\t19 Dec 2007 16:49:21 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id AFECCA56E1;\n\tWed, 19 Dec 2007 21:49:18 +0000 (GMT)\nMessage-ID: <200712192148.lBJLmKnH005306@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 541\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 21:48:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 36A42394D9\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 21:48:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJLmKvZ005308\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 16:48:20 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJLmKnH005306\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 16:48:20 -0500\nDate: Wed, 19 Dec 2007 16:48:20 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r39509 - reference/branches/SAK-8152/library/src/webapp/js\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 16:49:25 2007\nX-DSPAM-Confidence: 0.9825\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39509\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-12-19 16:48:19 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39509\n\nModified:\nreference/branches/SAK-8152/library/src/webapp/js/headscripts.js\nLog:\nSAK-12506 - fix error with zindexing\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Wed Dec 19 16:37:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 16:37:53 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 16:37:53 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby faithful.mail.umich.edu () with ESMTP id lBJLbqEI003123;\n\tWed, 19 Dec 2007 16:37:52 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 47698F24.8F294.23193 ; \n\t19 Dec 2007 16:37:47 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 61092A2B9A;\n\tWed, 19 Dec 2007 21:37:41 +0000 (GMT)\nMessage-ID: <200712192137.lBJLb8VF005274@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 59\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 21:37:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E4B3A3940D\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 21:37:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJLb8vc005276\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 16:37:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJLb8VF005274\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 16:37:08 -0500\nDate: Wed, 19 Dec 2007 16:37:08 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r39508 - db/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/util/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 16:37:53 2007\nX-DSPAM-Confidence: 0.8495\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39508\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-19 16:37:06 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39508\n\nModified:\ndb/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionController.java\nLog:\nSAK-12239\nAdded log messages to empty catch blocks.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Wed Dec 19 16:22:38 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 16:22:38 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 16:22:38 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby awakenings.mail.umich.edu () with ESMTP id lBJLMbTm003973;\n\tWed, 19 Dec 2007 16:22:37 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 47698B8E.B1A48.19125 ; \n\t19 Dec 2007 16:22:25 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9BB9CA554B;\n\tWed, 19 Dec 2007 21:22:21 +0000 (GMT)\nMessage-ID: <200712192121.lBJLLnS4005240@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 274\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 21:22:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 539CE3937A\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 21:22:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJLLn3B005242\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 16:21:49 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJLLnS4005240\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 16:21:49 -0500\nDate: Wed, 19 Dec 2007 16:21:49 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [sakai] svn commit: r39507 - in gradebook/trunk/service: api/src/java/org/sakaiproject/service/gradebook/shared impl/src/java/org/sakaiproject/component/gradebook\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 16:22:38 2007\nX-DSPAM-Confidence: 0.8471\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39507\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-12-19 16:21:47 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39507\n\nModified:\ngradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java\ngradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java\nLog:\nSAK-12175\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12175\nCreate methods required for gb integration with the Assignment2 tool\ngetAssignmentScore and getAssignmentScoreComment methods that take an assignment id instead of name\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Wed Dec 19 15:49:00 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 15:49:00 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 15:49:00 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby casino.mail.umich.edu () with ESMTP id lBJKmxck004047;\n\tWed, 19 Dec 2007 15:48:59 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 476983B5.2617C.9672 ; \n\t19 Dec 2007 15:48:56 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 77307A54EB;\n\tWed, 19 Dec 2007 20:48:45 +0000 (GMT)\nMessage-ID: <200712192048.lBJKmCfO005175@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 351\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 20:48:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6BEB03D473\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 20:48:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJKmC7i005177\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 15:48:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJKmCfO005175\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 15:48:12 -0500\nDate: Wed, 19 Dec 2007 15:48:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39506 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 15:49:00 2007\nX-DSPAM-Confidence: 0.9817\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39506\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-19 15:48:11 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39506\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdate externals for GB to r39505. assignment to r39504.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Wed Dec 19 15:45:35 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 15:45:35 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 15:45:35 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby score.mail.umich.edu () with ESMTP id lBJKjZlr015526;\n\tWed, 19 Dec 2007 15:45:35 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 476982E8.E95AC.20733 ; \n\t19 Dec 2007 15:45:31 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 68133A3644;\n\tWed, 19 Dec 2007 20:45:17 +0000 (GMT)\nMessage-ID: <200712192044.lBJKiibw005162@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 191\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 20:45:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 244E43D473\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 20:45:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJKiigw005164\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 15:44:44 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJKiibw005162\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 15:44:44 -0500\nDate: Wed, 19 Dec 2007 15:44:44 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39505 - in gradebook/branches/oncourse_2-4-2/app/ui/src/webapp: inc js\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 15:45:35 2007\nX-DSPAM-Confidence: 0.9805\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39505\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-19 15:44:43 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39505\n\nModified:\ngradebook/branches/oncourse_2-4-2/app/ui/src/webapp/inc/bulkNewItems.jspf\ngradebook/branches/oncourse_2-4-2/app/ui/src/webapp/js/multiItemAdd.js\nLog:\ncommit for Joes fixes for SAK-12451, SAK-12449, SAK-12466\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Wed Dec 19 15:40:31 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 15:40:31 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 15:40:31 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby panther.mail.umich.edu () with ESMTP id lBJKeVAm009756;\n\tWed, 19 Dec 2007 15:40:31 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 476981A8.BF1.22417 ; \n\t19 Dec 2007 15:40:10 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id ABB59A54E0;\n\tWed, 19 Dec 2007 20:40:00 +0000 (GMT)\nMessage-ID: <200712192039.lBJKdMnj005150@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 51\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 20:39:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D2BC13D33E\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 20:39:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJKdMvU005152\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 15:39:22 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJKdMnj005150\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 15:39:22 -0500\nDate: Wed, 19 Dec 2007 15:39:22 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [sakai] svn commit: r39504 - assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 15:40:31 2007\nX-DSPAM-Confidence: 0.9817\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39504\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-12-19 15:39:21 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39504\n\nModified:\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/bundle/assignment.properties\nLog:\nONC-270\nhttps://uisapp2.iu.edu/jira/browse/ONC-270\nText changes to minimize confusion\nCorrect typo\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Wed Dec 19 15:17:58 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 15:17:58 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 15:17:58 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby faithful.mail.umich.edu () with ESMTP id lBJKHvZb025029;\n\tWed, 19 Dec 2007 15:17:57 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 47697C6E.AF51.2259 ; \n\t19 Dec 2007 15:17:52 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 23E25A48A7;\n\tWed, 19 Dec 2007 20:17:48 +0000 (GMT)\nMessage-ID: <200712192017.lBJKHKBt005108@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 719\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 20:17:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EFA112AEB4\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 20:17:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJKHKSc005110\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 15:17:20 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJKHKBt005108\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 15:17:20 -0500\nDate: Wed, 19 Dec 2007 15:17:20 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39503 - oncourse/trunk/overlay/sakai/org.sakaiproject.citation\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 15:17:58 2007\nX-DSPAM-Confidence: 0.9848\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39503\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-19 15:17:19 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39503\n\nModified:\noncourse/trunk/overlay/sakai/org.sakaiproject.citation/IUPUI-configuration.xml\nLog:\nadd IUPUI library config file for citation.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gsilver@umich.edu Wed Dec 19 14:48:33 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 14:48:33 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 14:48:33 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby mission.mail.umich.edu () with ESMTP id lBJJmXPA017752;\n\tWed, 19 Dec 2007 14:48:33 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 4769758B.AD3EA.11638 ; \n\t19 Dec 2007 14:48:30 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7CF4FA4744;\n\tWed, 19 Dec 2007 19:48:26 +0000 (GMT)\nMessage-ID: <200712191947.lBJJllbN005040@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 746\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 19:48:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D69C63D45A\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 19:48:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJJllXC005042\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 14:47:47 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJJllbN005040\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 14:47:47 -0500\nDate: Wed, 19 Dec 2007 14:47:47 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gsilver@umich.edu\nSubject: [sakai] svn commit: r39502 - site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 14:48:33 2007\nX-DSPAM-Confidence: 0.6962\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39502\n\nAuthor: gsilver@umich.edu\nDate: 2007-12-19 14:47:45 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39502\n\nModified:\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-duplicate.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-importMtrlMaster.vm\nLog:\nSAK-12524\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12524\n- for 2.6=normalize markup, clean up language key relationships.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gsilver@umich.edu Wed Dec 19 14:48:16 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 14:48:16 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 14:48:16 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby casino.mail.umich.edu () with ESMTP id lBJJmF4M024514;\n\tWed, 19 Dec 2007 14:48:15 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 47697569.E2D68.32479 ; \n\t19 Dec 2007 14:47:56 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3137CA4686;\n\tWed, 19 Dec 2007 19:47:53 +0000 (GMT)\nMessage-ID: <200712191947.lBJJlLbV005028@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 263\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 19:47:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 93B9E3D45A\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 19:47:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJJlLK3005030\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 14:47:22 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJJlLbV005028\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 14:47:21 -0500\nDate: Wed, 19 Dec 2007 14:47:21 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gsilver@umich.edu\nSubject: [sakai] svn commit: r39501 - site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 14:48:16 2007\nX-DSPAM-Confidence: 0.6510\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39501\n\nAuthor: gsilver@umich.edu\nDate: 2007-12-19 14:47:16 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39501\n\nModified:\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addParticipant-confirm.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addParticipant-differentRole.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addParticipant-notification.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addParticipant-sameRole.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addParticipant.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addRemoveFeature.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addRemoveFeatureConfirm.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-findCourse.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-importSites.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-modifyENW.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteConfirm.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteCourse.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteCourseManual.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteFeatures.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteInformation.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteDeleteConfirm.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-addCourseConfirm.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-editAccess.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-editClass.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-editInfo.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-editInfoConfirm.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-group.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-groupDeleteConfirm.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-groupedit.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-list.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-type.vm\nLog:\nSAK-12524\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12524\n- for 2.6=normalize markup, clean up language key relationships. \n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gsilver@umich.edu Wed Dec 19 14:35:41 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 14:35:41 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 14:35:41 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby jacknife.mail.umich.edu () with ESMTP id lBJJZfP7009260;\n\tWed, 19 Dec 2007 14:35:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 47697287.B3E3E.15690 ; \n\t19 Dec 2007 14:35:38 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B3D009E6C9;\n\tWed, 19 Dec 2007 19:35:33 +0000 (GMT)\nMessage-ID: <200712191935.lBJJZ4VK004956@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 229\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 19:35:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1CA43393A2\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 19:35:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJJZ4dN004958\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 14:35:04 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJJZ4VK004956\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 14:35:04 -0500\nDate: Wed, 19 Dec 2007 14:35:04 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gsilver@umich.edu\nSubject: [sakai] svn commit: r39500 - site-manage/trunk/site-manage-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 14:35:41 2007\nX-DSPAM-Confidence: 0.7602\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39500\n\nAuthor: gsilver@umich.edu\nDate: 2007-12-19 14:35:02 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39500\n\nModified:\nsite-manage/trunk/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties\nLog:\nSAK-12523\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12523\n- remove unused strings from bundles in site-manage\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Wed Dec 19 14:25:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 14:25:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 14:25:19 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby godsend.mail.umich.edu () with ESMTP id lBJJPI1U025463;\n\tWed, 19 Dec 2007 14:25:18 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 47697014.7A059.31240 ; \n\t19 Dec 2007 14:25:11 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 31140A5411;\n\tWed, 19 Dec 2007 18:50:04 +0000 (GMT)\nMessage-ID: <200712191924.lBJJOXiR004942@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 994\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 18:49:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1F2033D3F4\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 19:24:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJJOXsT004944\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 14:24:33 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJJOXiR004942\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 14:24:33 -0500\nDate: Wed, 19 Dec 2007 14:24:33 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39499 - in oncourse/trunk/src/site-manage/site-manage-tool/tool/src: bundle java/org/sakaiproject/site/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 14:25:19 2007\nX-DSPAM-Confidence: 0.8469\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39499\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-19 14:24:32 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39499\n\nModified:\noncourse/trunk/src/site-manage/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties\noncourse/trunk/src/site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nLog:\nupdate site-manage overlay for migrate release from practice to stg.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Wed Dec 19 14:17:59 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 14:17:59 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 14:17:59 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby chaos.mail.umich.edu () with ESMTP id lBJJHwhU019946;\n\tWed, 19 Dec 2007 14:17:58 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 47696E5F.CE32B.17238 ; \n\t19 Dec 2007 14:17:54 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D63DCA53E2;\n\tWed, 19 Dec 2007 18:42:44 +0000 (GMT)\nMessage-ID: <200712191850.lBJIoQjl004892@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 666\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 18:42:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5D2DC3D868\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 18:50:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJIoQJD004894\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 13:50:26 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJIoQjl004892\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 13:50:26 -0500\nDate: Wed, 19 Dec 2007 13:50:26 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39497 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 14:17:59 2007\nX-DSPAM-Confidence: 0.9830\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39497\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-19 13:50:25 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39497\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdate external for Gregs sql updates of rolling back student view. only effective for autoddl is true.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Wed Dec 19 14:12:22 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 14:12:22 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 14:12:22 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby mission.mail.umich.edu () with ESMTP id lBJJCL35027517;\n\tWed, 19 Dec 2007 14:12:21 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 47696D0A.BEEAE.16580 ; \n\t19 Dec 2007 14:12:14 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 74A1EA52D7;\n\tWed, 19 Dec 2007 18:37:04 +0000 (GMT)\nMessage-ID: <200712191911.lBJJBYa1004930@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 985\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 18:36:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E871F39351\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 19:11:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJJBYxZ004932\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 14:11:34 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJJBYa1004930\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 14:11:34 -0500\nDate: Wed, 19 Dec 2007 14:11:34 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39498 - oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/java/org/sakaiproject/site/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 14:12:22 2007\nX-DSPAM-Confidence: 0.8477\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39498\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-19 14:11:33 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39498\n\nModified:\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nLog:\nmerge 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.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stephen.marquard@uct.ac.za Wed Dec 19 13:31:20 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 13:31:20 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 13:31:20 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby flawless.mail.umich.edu () with ESMTP id lBJIVJuj001014;\n\tWed, 19 Dec 2007 13:31:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 4769636C.1EEF3.5570 ; \n\t19 Dec 2007 13:31:12 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4F3EFA5334;\n\tWed, 19 Dec 2007 18:16:13 +0000 (GMT)\nMessage-ID: <200712191816.lBJIGRwJ004772@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 761\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 18:08:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C6C4C3D3F4\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 18:16:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJIGRcV004774\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 13:16:27 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJIGRwJ004772\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 13:16:27 -0500\nDate: Wed, 19 Dec 2007 13:16:27 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: stephen.marquard@uct.ac.za\nSubject: [sakai] svn commit: r39496 - user/branches/sakai_2-5-x/user-tool-prefs/tool/src/java/org/sakaiproject/user/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 13:31:20 2007\nX-DSPAM-Confidence: 0.8472\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39496\n\nAuthor: stephen.marquard@uct.ac.za\nDate: 2007-12-19 13:16:18 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39496\n\nModified:\nuser/branches/sakai_2-5-x/user-tool-prefs/tool/src/java/org/sakaiproject/user/tool/UserPrefsTool.java\nLog:\nSAK-11460 Apply patch for 2-5-x from Anastasia Cheetham\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Wed Dec 19 13:30:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 13:30:53 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 13:30:53 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby awakenings.mail.umich.edu () with ESMTP id lBJIUqAu002796;\n\tWed, 19 Dec 2007 13:30:52 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 47696352.E35E5.31492 ; \n\t19 Dec 2007 13:30:48 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 55CE5A50CB;\n\tWed, 19 Dec 2007 18:16:09 +0000 (GMT)\nMessage-ID: <200712191810.lBJIAL9j004760@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1002\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 18:05:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C43DE3D3C4\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 18:10:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJIALVK004762\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 13:10:21 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJIAL9j004760\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 13:10:21 -0500\nDate: Wed, 19 Dec 2007 13:10:21 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r39495 - in authz/branches/oncourse_opc_122007/authz-impl/impl/src/sql: hsqldb mysql oracle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 13:30:53 2007\nX-DSPAM-Confidence: 0.9824\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39495\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-19 13:10:18 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39495\n\nModified:\nauthz/branches/oncourse_opc_122007/authz-impl/impl/src/sql/hsqldb/sakai_realm.sql\nauthz/branches/oncourse_opc_122007/authz-impl/impl/src/sql/mysql/sakai_realm.sql\nauthz/branches/oncourse_opc_122007/authz-impl/impl/src/sql/oracle/sakai_realm.sql\nLog:\nOncourse - Removed roleswap permission from sql scripts\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Wed Dec 19 12:36:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 12:36:42 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 12:36:42 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby panther.mail.umich.edu () with ESMTP id lBJHafiT022907;\n\tWed, 19 Dec 2007 12:36:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 476956A3.B1147.20242 ; \n\t19 Dec 2007 12:36:38 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D4947A4AF3;\n\tWed, 19 Dec 2007 17:36:32 +0000 (GMT)\nMessage-ID: <200712191736.lBJHa4sJ004662@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 888\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 17:36:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7817C39195\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 17:36:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJHa4sf004664\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 12:36:04 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJHa4sJ004662\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 12:36:04 -0500\nDate: Wed, 19 Dec 2007 12:36:04 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r39494 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 12:36:42 2007\nX-DSPAM-Confidence: 0.9858\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39494\n\nAuthor: dlhaines@umich.edu\nDate: 2007-12-19 12:36:02 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39494\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASS.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASS.properties\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/defaultbuild.properties\nLog:\nCTools: update the for assignments conversion fix.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Wed Dec 19 12:27:48 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 12:27:48 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 12:27:48 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby flawless.mail.umich.edu () with ESMTP id lBJHRlD6028762;\n\tWed, 19 Dec 2007 12:27:47 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 4769548D.299F6.12478 ; \n\t19 Dec 2007 12:27:43 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 41277A4AAE;\n\tWed, 19 Dec 2007 17:27:37 +0000 (GMT)\nMessage-ID: <200712191727.lBJHR7Ql004635@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 650\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 17:27:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C405239195\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 17:27:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJHR7WR004637\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 12:27:07 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJHR7Ql004635\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 12:27:07 -0500\nDate: Wed, 19 Dec 2007 12:27:07 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39493 - in assignment/branches/post-2-4-umich/assignment-impl: impl impl/src/java/org/sakaiproject/assignment/impl/conversion/impl pack\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 12:27:48 2007\nX-DSPAM-Confidence: 0.8480\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39493\n\nAuthor: zqian@umich.edu\nDate: 2007-12-19 12:27:03 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39493\n\nModified:\nassignment/branches/post-2-4-umich/assignment-impl/impl/project.xml\nassignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/AssignmentSubmissionAccess.java\nassignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/CombineDuplicateSubmissionsConversionHandler.java\nassignment/branches/post-2-4-umich/assignment-impl/pack/project.xml\nLog:\nrelated SAK-11821: various fixes in the combine duplicates routine.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Wed Dec 19 11:24:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 11:24:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 11:24:30 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby faithful.mail.umich.edu () with ESMTP id lBJGOTmN015019;\n\tWed, 19 Dec 2007 11:24:29 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 476945B6.61584.12508 ; \n\t19 Dec 2007 11:24:25 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A7BD4A4F40;\n\tWed, 19 Dec 2007 16:24:19 +0000 (GMT)\nMessage-ID: <200712191623.lBJGNpmZ004593@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 650\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 16:24:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 36AE43D6CE\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 16:24:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJGNpD3004595\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 11:23:51 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJGNpmZ004593\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 11:23:51 -0500\nDate: Wed, 19 Dec 2007 11:23:51 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39492 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 11:24:30 2007\nX-DSPAM-Confidence: 0.8467\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39492\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-19 11:23:50 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39492\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdate calendar revision for Gregs student view roll back.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Wed Dec 19 11:00:10 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 11:00:10 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 11:00:10 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby brazil.mail.umich.edu () with ESMTP id lBJG09O8014413;\n\tWed, 19 Dec 2007 11:00:09 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 47694000.8BCAE.16696 ; \n\t19 Dec 2007 11:00:03 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 93AACA4E3A;\n\tWed, 19 Dec 2007 15:50:57 +0000 (GMT)\nMessage-ID: <200712191559.lBJFxPD8004539@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 74\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 15:50:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 71C6423713\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 15:59:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJFxPui004541\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 10:59:25 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJFxPD8004539\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 10:59:25 -0500\nDate: Wed, 19 Dec 2007 10:59:25 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r39491 - content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 11:00:10 2007\nX-DSPAM-Confidence: 0.9837\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39491\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-19 10:59:22 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39491\n\nModified:\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/SAXSerializableResourceAccess.java\nLog:\nSAK-12239\nIgnore \"members\" and \"member\" elements in XML field in CONTENT_COLLECTION table (i.e. no need to log them)\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom a.fish@lancaster.ac.uk Wed Dec 19 10:34:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 10:34:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 10:34:30 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby jacknife.mail.umich.edu () with ESMTP id lBJFYSH7029397;\n\tWed, 19 Dec 2007 10:34:28 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 476939FD.84328.30788 ; \n\t19 Dec 2007 10:34:25 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 907CEA4E5E;\n\tWed, 19 Dec 2007 15:30:53 +0000 (GMT)\nMessage-ID: <200712191532.lBJFWtJg004498@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 926\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 15:30:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B92943D3B3\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 15:33:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJFWt7r004500\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 10:32:55 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJFWtJg004498\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 10:32:55 -0500\nDate: Wed, 19 Dec 2007 10:32:55 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to a.fish@lancaster.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: a.fish@lancaster.ac.uk\nSubject: [sakai] svn commit: r39490 - blog/branches/sakai_2-4-x/jsfComponent/src/java/uk/ac/lancs/e_science/jsf/components/blogger\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 10:34:30 2007\nX-DSPAM-Confidence: 0.9808\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39490\n\nAuthor: a.fish@lancaster.ac.uk\nDate: 2007-12-19 10:32:48 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39490\n\nModified:\nblog/branches/sakai_2-4-x/jsfComponent/src/java/uk/ac/lancs/e_science/jsf/components/blogger/UIOutputPost.java\nLog:\nSAK-11556 Applied date format changes to comments also.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom a.fish@lancaster.ac.uk Wed Dec 19 10:28:08 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 10:28:08 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 10:28:08 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby godsend.mail.umich.edu () with ESMTP id lBJFS8JC011778;\n\tWed, 19 Dec 2007 10:28:08 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 4769386B.1C07B.32240 ; \n\t19 Dec 2007 10:27:42 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 74BA3A4E4F;\n\tWed, 19 Dec 2007 15:27:19 +0000 (GMT)\nMessage-ID: <200712191526.lBJFQY3M004473@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 219\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 15:26:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5EE7D3D3A2\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 15:26:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJFQZcv004475\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 10:26:35 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJFQY3M004473\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 10:26:34 -0500\nDate: Wed, 19 Dec 2007 10:26:34 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to a.fish@lancaster.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: a.fish@lancaster.ac.uk\nSubject: [sakai] svn commit: r39489 - blog/trunk/jsfComponent/src/java/uk/ac/lancs/e_science/jsf/components/blogger\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 10:28:08 2007\nX-DSPAM-Confidence: 0.9787\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39489\n\nAuthor: a.fish@lancaster.ac.uk\nDate: 2007-12-19 10:26:27 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39489\n\nModified:\nblog/trunk/jsfComponent/src/java/uk/ac/lancs/e_science/jsf/components/blogger/PostWriter.java\nLog:\nSAK-11556 Fixed the date format in the comments also.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Wed Dec 19 09:45:21 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 09:45:21 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 09:45:21 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby godsend.mail.umich.edu () with ESMTP id lBJEjLhJ021750;\n\tWed, 19 Dec 2007 09:45:21 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 47692E79.C98A9.5105 ; \n\t19 Dec 2007 09:45:16 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C0165A4DCE;\n\tWed, 19 Dec 2007 14:45:11 +0000 (GMT)\nMessage-ID: <200712191444.lBJEiclh004385@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 804\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 14:44:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4CA6A3D34D\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 14:44:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJEiclD004387\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 09:44:38 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJEiclh004385\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 09:44:38 -0500\nDate: Wed, 19 Dec 2007 09:44:38 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39488 - oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/js\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 09:45:21 2007\nX-DSPAM-Confidence: 0.9813\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39488\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-19 09:44:37 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39488\n\nModified:\noncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/js/headscripts.js\nLog:\nSAK-8624 => svn merge -r22556:22557 https://source.sakaiproject.org/svn/reference/trunk.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gsilver@umich.edu Wed Dec 19 09:35:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 09:35:37 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 09:35:37 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby casino.mail.umich.edu () with ESMTP id lBJEZbiK023683;\n\tWed, 19 Dec 2007 09:35:37 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 47692C2A.67698.1102 ; \n\t19 Dec 2007 09:35:27 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6B9969BC7D;\n\tWed, 19 Dec 2007 14:35:17 +0000 (GMT)\nMessage-ID: <200712191434.lBJEYnqE004362@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 236\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 14:34:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6824E37205\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 14:35:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJEYnvb004364\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 09:34:49 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJEYnqE004362\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 09:34:49 -0500\nDate: Wed, 19 Dec 2007 09:34:49 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gsilver@umich.edu\nSubject: [sakai] svn commit: r39487 - calendar/trunk/calendar-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 09:35:37 2007\nX-DSPAM-Confidence: 0.9840\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39487\n\nAuthor: gsilver@umich.edu\nDate: 2007-12-19 09:34:47 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39487\n\nModified:\ncalendar/trunk/calendar-tool/tool/src/bundle/calendar.properties\nLog:\nSAK-12409\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Wed Dec 19 08:47:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 08:47:43 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 08:47:43 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby score.mail.umich.edu () with ESMTP id lBJDlh9u002880;\n\tWed, 19 Dec 2007 08:47:43 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 476920F4.D52E5.13494 ; \n\t19 Dec 2007 08:47:35 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8D64DA4C80;\n\tWed, 19 Dec 2007 13:47:26 +0000 (GMT)\nMessage-ID: <200712191346.lBJDklkl004248@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 223\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 13:47:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6C8AE3CE6B\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 13:47:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJDklP4004250\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 08:46:47 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJDklkl004248\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 08:46:47 -0500\nDate: Wed, 19 Dec 2007 08:46:47 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39486 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 08:47:43 2007\nX-DSPAM-Confidence: 0.9842\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39486\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-19 08:46:46 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39486\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdate external for ONC-270 => assignment r39484.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stuart.freeman@et.gatech.edu Wed Dec 19 08:41:55 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 08:41:55 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 08:41:55 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby mission.mail.umich.edu () with ESMTP id lBJDftVi031762;\n\tWed, 19 Dec 2007 08:41:55 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 47691F9C.CA84D.18827 ; \n\t19 Dec 2007 08:41:52 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 85A51A4B83;\n\tWed, 19 Dec 2007 13:41:44 +0000 (GMT)\nMessage-ID: <200712191341.lBJDfGpk004210@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 534\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 13:41:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E760924EC6\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 13:41:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJDfGwt004212\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 08:41:16 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJDfGpk004210\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 08:41:16 -0500\nDate: Wed, 19 Dec 2007 08:41:16 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: stuart.freeman@et.gatech.edu\nSubject: [sakai] svn commit: r39485 - linktool/branches/sakai_2-4-x webservices/branches/sakai_2-4-x/axis/src/webapp\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 08:41:55 2007\nX-DSPAM-Confidence: 0.9821\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39485\n\nAuthor: stuart.freeman@et.gatech.edu\nDate: 2007-12-19 08:41:13 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39485\n\nAdded:\nwebservices/branches/sakai_2-4-x/axis/src/webapp/SakaiSigning.jws\nRemoved:\nlinktool/branches/sakai_2-4-x/SakaiSigning.jws\nLog:\nSAK-7720 moved SakaiSigning.jws\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Wed Dec 19 08:39:56 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 08:39:56 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 08:39:56 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby sleepers.mail.umich.edu () with ESMTP id lBJDdufM008018;\n\tWed, 19 Dec 2007 08:39:56 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 47691F27.ABF9.30104 ; \n\t19 Dec 2007 08:39:53 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5D644A4B83;\n\tWed, 19 Dec 2007 13:39:23 +0000 (GMT)\nMessage-ID: <200712191338.lBJDctBc004195@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 433\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 13:39:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0D35E24EC6\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 13:39:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJDctMC004197\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 08:38:55 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJDctBc004195\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 08:38:55 -0500\nDate: Wed, 19 Dec 2007 08:38:55 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [sakai] svn commit: r39484 - in assignment/branches/oncourse_2-4-x/assignment-tool/tool/src: bundle java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 08:39:56 2007\nX-DSPAM-Confidence: 0.9823\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39484\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-12-19 08:38:53 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39484\n\nModified:\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/bundle/assignment.properties\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nONC-270\nhttps://uisapp2.iu.edu/jira/browse/ONC-270\nText changes to minimize confusion\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stuart.freeman@et.gatech.edu Wed Dec 19 08:35:04 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 08:35:04 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 08:35:04 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby brazil.mail.umich.edu () with ESMTP id lBJDZ3Pb002903;\n\tWed, 19 Dec 2007 08:35:03 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 47691E00.86E82.17126 ; \n\t19 Dec 2007 08:34:59 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E87B6A4C62;\n\tWed, 19 Dec 2007 13:34:38 +0000 (GMT)\nMessage-ID: <200712191334.lBJDYBvh004174@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 459\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 13:34:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 20B1C24EC6\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 13:34:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJDYBg0004176\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 08:34:11 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJDYBvh004174\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 08:34:11 -0500\nDate: Wed, 19 Dec 2007 08:34:11 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: stuart.freeman@et.gatech.edu\nSubject: [sakai] svn commit: r39483 - linktool/branches/sakai_2-4-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 08:35:04 2007\nX-DSPAM-Confidence: 0.9903\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39483\n\nAuthor: stuart.freeman@et.gatech.edu\nDate: 2007-12-19 08:34:09 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39483\n\nModified:\nlinktool/branches/sakai_2-4-x/SakaiSigning.jws\nlinktool/branches/sakai_2-4-x/linktool.txt\nLog:\nSAK-7720\n\n--(stuart@mothra:pts/2)-------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/linktool)--\n--(0831:Wed,19 Dec 07:$)-- svn merge -r35678:35679 https://source.sakaiproject.org/svn/linktool/trunk/ .\nC    SakaiSigning.jws\n--(stuart@mothra:pts/2)-------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/linktool)--\n--(0831:Wed,19 Dec 07:$)-- vi SakaiSigning.jws\n--(stuart@mothra:pts/2)-------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/linktool)--\n--(0832:Wed,19 Dec 07:$)-- svn resolved !$\nsvn resolved SakaiSigning.jws\nResolved conflicted state of 'SakaiSigning.jws'\n--(stuart@mothra:pts/2)-------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/linktool)--\n--(0833:Wed,19 Dec 07:$)-- svn merge -r35984:35985 https://source.sakaiproject.org/svn/linktool/trunk/ .\nC    linktool.txt\n--(stuart@mothra:pts/2)-------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/linktool)--\n--(0833:Wed,19 Dec 07:$)-- vi linktool.txt\n--(stuart@mothra:pts/2)-------------------------------------------------------------------(/home/stuart/src/sakai_2-4-x/linktool)--\n--(0833:Wed,19 Dec 07:$)-- svn resolved !$\nsvn resolved linktool.txt\nResolved conflicted state of 'linktool.txt'\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stephen.marquard@uct.ac.za Wed Dec 19 03:40:33 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 03:40:33 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 03:40:33 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby faithful.mail.umich.edu () with ESMTP id lBJ8eUeb012669;\n\tWed, 19 Dec 2007 03:40:30 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4768D8F9.46560.28112 ; \n\t19 Dec 2007 03:40:27 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2E90BA3F5A;\n\tWed, 19 Dec 2007 08:40:22 +0000 (GMT)\nMessage-ID: <200712190839.lBJ8dpwK003423@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 18\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 08:39:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 72E7D38532\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 08:40:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJ8dpqM003425\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 03:39:51 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJ8dpwK003423\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 03:39:51 -0500\nDate: Wed, 19 Dec 2007 03:39:51 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: stephen.marquard@uct.ac.za\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 03:40:33 2007\nX-DSPAM-Confidence: 0.9876\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39482\n\nAuthor: stephen.marquard@uct.ac.za\nDate: 2007-12-19 03:39:33 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39482\n\nModified:\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/buttonEnabled.png\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/sakadojo.css\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/vm/content/sakai_resources_list.vm\nLog:\nSAK-12442: Add/Action buttons too large: merge to 2-5-x\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stephen.marquard@uct.ac.za Wed Dec 19 03:20:57 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 03:20:57 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 03:20:57 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby brazil.mail.umich.edu () with ESMTP id lBJ8KsMi016734;\n\tWed, 19 Dec 2007 03:20:54 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 4768D456.AB600.9760 ; \n\t19 Dec 2007 03:20:41 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1DA539D492;\n\tWed, 19 Dec 2007 08:20:25 +0000 (GMT)\nMessage-ID: <200712190819.lBJ8JufT003389@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 191\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 08:20:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D003038526\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 08:20:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJ8JuWY003391\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 03:19:56 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJ8JufT003389\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 03:19:56 -0500\nDate: Wed, 19 Dec 2007 03:19:56 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: stephen.marquard@uct.ac.za\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 03:20:57 2007\nX-DSPAM-Confidence: 0.9862\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39481\n\nAuthor: stephen.marquard@uct.ac.za\nDate: 2007-12-19 03:18:29 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39481\n\nAdded:\nsearch/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/journal/api/IndexCloser.java\nsearch/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/journal/api/ThreadBinder.java\nsearch/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/IndexListenerCloser.java\nsearch/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/RefCountIndexSearcher.java\nsearch/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/RefCountMultiReader.java\nsearch/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/index/soaktest/OpenFilesTest.java\nsearch/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/mock/MockSecurityService.java\nRemoved:\nsearch/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/DelayedClose.java\nsearch/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/DelayedIndexReaderClose.java\nsearch/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/DelayedIndexSearcherClose.java\nModified:\nsearch/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/indexer/impl/ConcurrentSearchIndexBuilderWorkerImpl.java\nsearch/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/indexer/impl/TransactionalIndexWorker.java\nsearch/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/journal/api/IndexListener.java\nsearch/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/ConcurrentIndexManager.java\nsearch/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/JournaledFSIndexStorage.java\nsearch/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/index/soaktest/SearchIndexerNode.java\nsearch/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/JournalOptimzationOperationTest.java\nsearch/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/LoadSaveSegmentListTest.java\nsearch/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/MergeUpdateOperationTest.java\nsearch/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/OptimizeOperationTest.java\nsearch/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/mock/MockThreadLocalManager.java\nsearch/branches/sakai_2-5-x/search-impl/pack/src/webapp/WEB-INF/parallelIndexComponents.xml\nLog:\nSAK-12460 search opens too many files: merge r39439 to 2-5-x\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stephen.marquard@uct.ac.za Wed Dec 19 03:08:44 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 03:08:44 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 03:08:44 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby mission.mail.umich.edu () with ESMTP id lBJ88hWw009586;\n\tWed, 19 Dec 2007 03:08:43 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 4768D185.A8BF9.2116 ; \n\t19 Dec 2007 03:08:40 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DB43E9D492;\n\tWed, 19 Dec 2007 08:08:30 +0000 (GMT)\nMessage-ID: <200712190807.lBJ87uFQ003337@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 146\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 08:08:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8727D3851C\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 08:08:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJ87ude003339\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 03:07:56 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJ87uFQ003337\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 03:07:56 -0500\nDate: Wed, 19 Dec 2007 03:07:56 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: stephen.marquard@uct.ac.za\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 03:08:44 2007\nX-DSPAM-Confidence: 0.9838\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39480\n\nAuthor: stephen.marquard@uct.ac.za\nDate: 2007-12-19 03:07:14 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39480\n\nAdded:\nsearch/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/mock/MockThreadLocalManager.java\nModified:\nsearch/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/indexer/impl/TransactionalIndexWorker.java\nsearch/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/index/soaktest/SearchIndexerNode.java\nsearch/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/JournalOptimzationOperationTest.java\nsearch/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/MergeUpdateOperationTest.java\nsearch/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/OptimizeOperationTest.java\nsearch/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/TransactionalIndexWorkerTest.java\nsearch/branches/sakai_2-5-x/search-impl/pack/src/webapp/WEB-INF/parallelIndexComponents.xml\nLog:\nSAK-12459 ClassCastException indexing announcement: merge 39306, 39307, 39353, 39356 to 2-5-x\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stephen.marquard@uct.ac.za Wed Dec 19 02:55:09 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 02:55:09 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 02:55:09 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby sleepers.mail.umich.edu () with ESMTP id lBJ7t8rP008836;\n\tWed, 19 Dec 2007 02:55:08 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 4768CE55.902BB.17198 ; \n\t19 Dec 2007 02:55:05 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B62A8A4020;\n\tWed, 19 Dec 2007 07:54:05 +0000 (GMT)\nMessage-ID: <200712190753.lBJ7rMdH003296@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 414\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 07:53:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 115073850A\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 07:53:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJ7rMqp003298\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 02:53:22 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJ7rMdH003296\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 02:53:22 -0500\nDate: Wed, 19 Dec 2007 02:53:22 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: stephen.marquard@uct.ac.za\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 02:55:09 2007\nX-DSPAM-Confidence: 0.9829\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39479\n\nAuthor: stephen.marquard@uct.ac.za\nDate: 2007-12-19 02:52:57 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39479\n\nModified:\nutil/branches/sakai_2-5-x/util-impl/impl/src/java/org/sakaiproject/thread_local/impl/ThreadLocalComponent.java\nutil/branches/sakai_2-5-x/util-util/util/src/java/org/sakaiproject/util/PathHashUtil.java\nLog:\nSAK-12512 THreadLocalManager is not re-entrant on clean or unbind: merge r39432 to 2-5-x\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stephen.marquard@uct.ac.za Wed Dec 19 02:40:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 19 Dec 2007 02:40:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 19 Dec 2007 02:40:51 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby panther.mail.umich.edu () with ESMTP id lBJ7enK5008329;\n\tWed, 19 Dec 2007 02:40:49 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 4768CAF4.1BA4D.23900 ; \n\t19 Dec 2007 02:40:38 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6A512A442C;\n\tWed, 19 Dec 2007 07:40:25 +0000 (GMT)\nMessage-ID: <200712190740.lBJ7e2sK003275@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 366\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 07:40:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 63AF93850A\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 07:40:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJ7e3YZ003277\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 02:40:03 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJ7e2sK003275\n\tfor source@collab.sakaiproject.org; Wed, 19 Dec 2007 02:40:03 -0500\nDate: Wed, 19 Dec 2007 02:40:03 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: stephen.marquard@uct.ac.za\nSubject: [sakai] svn commit: r39478 - chat/branches/sakai_2-5-x/chat-api/api/src/java/org/sakaiproject/chat2/model\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 19 02:40:51 2007\nX-DSPAM-Confidence: 0.9842\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39478\n\nAuthor: stephen.marquard@uct.ac.za\nDate: 2007-12-19 02:39:54 -0500 (Wed, 19 Dec 2007)\nNew Revision: 39478\n\nModified:\nchat/branches/sakai_2-5-x/chat-api/api/src/java/org/sakaiproject/chat2/model/ChatMessage.java\nLog:\nSAK-12448 PatternSyntaxException in chat strings: merge r39469 to 2-5-x\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom louis@media.berkeley.edu Tue Dec 18 20:32:23 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 20:32:23 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 20:32:23 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby flawless.mail.umich.edu () with ESMTP id lBJ1WMdG017037;\n\tTue, 18 Dec 2007 20:32:22 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 476874A1.EAADA.25458 ; \n\t18 Dec 2007 20:32:20 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DFF3DA3E8F;\n\tWed, 19 Dec 2007 00:22:10 +0000 (GMT)\nMessage-ID: <200712190033.lBJ0Xdt5003060@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 503\n          for <source@collab.sakaiproject.org>;\n          Wed, 19 Dec 2007 00:20:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0C5413C283\n\tfor <source@collab.sakaiproject.org>; Wed, 19 Dec 2007 00:33:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBJ0Xdsf003062\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 19:33:39 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBJ0Xdt5003060\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 19:33:39 -0500\nDate: Tue, 18 Dec 2007 19:33:39 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: louis@media.berkeley.edu\nSubject: [sakai] svn commit: r39476 - in bspace/assignment/post-2-4: assignment-bundles assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 20:32:23 2007\nX-DSPAM-Confidence: 0.6503\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39476\n\nAuthor: louis@media.berkeley.edu\nDate: 2007-12-18 19:33:33 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39476\n\nModified:\nbspace/assignment/post-2-4/assignment-bundles/assignment.properties\nbspace/assignment/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_new_edit_assignment.vm\nLog:\nBSP-1375 Send to gradebook button unchecked in Assignment edit mode\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gsilver@umich.edu Tue Dec 18 17:42:09 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 17:42:09 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 17:42:09 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby godsend.mail.umich.edu () with ESMTP id lBIMg864026883;\n\tTue, 18 Dec 2007 17:42:08 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 47684CB7.1854A.22852 ; \n\t18 Dec 2007 17:42:05 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EAE6BA3D7E;\n\tTue, 18 Dec 2007 22:41:58 +0000 (GMT)\nMessage-ID: <200712182241.lBIMfEaN002950@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 789\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 22:41:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5DC303C1EE\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 22:41:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIMfEtk002952\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 17:41:14 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIMfEaN002950\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 17:41:14 -0500\nDate: Tue, 18 Dec 2007 17:41:14 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gsilver@umich.edu\nSubject: [sakai] svn commit: r39474 - reference/trunk/library/src/webapp/skin/default\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 17:42:09 2007\nX-DSPAM-Confidence: 0.9837\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39474\n\nAuthor: gsilver@umich.edu\nDate: 2007-12-18 17:41:13 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39474\n\nModified:\nreference/trunk/library/src/webapp/skin/default/portal.css\nLog:\nSAK-12242\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Tue Dec 18 17:06:49 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 17:06:49 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 17:06:49 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby awakenings.mail.umich.edu () with ESMTP id lBIM6nKV021868;\n\tTue, 18 Dec 2007 17:06:49 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 47684473.79901.20396 ; \n\t18 Dec 2007 17:06:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D1B4EA404D;\n\tTue, 18 Dec 2007 22:06:42 +0000 (GMT)\nMessage-ID: <200712182206.lBIM6E9U002909@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 803\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 22:06:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E70623BE4F\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 22:06:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIM6EZh002911\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 17:06:14 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIM6E9U002909\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 17:06:14 -0500\nDate: Tue, 18 Dec 2007 17:06:14 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39473 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 17:06:49 2007\nX-DSPAM-Confidence: 0.9824\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39473\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-18 17:06:13 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39473\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdate externals for sak-12492.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Tue Dec 18 17:05:09 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 17:05:09 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 17:05:09 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby jacknife.mail.umich.edu () with ESMTP id lBIM57PE025839;\n\tTue, 18 Dec 2007 17:05:07 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4768440D.845F6.9831 ; \n\t18 Dec 2007 17:05:04 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 24440A404D;\n\tTue, 18 Dec 2007 22:04:59 +0000 (GMT)\nMessage-ID: <200712182204.lBIM4W6D002891@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 500\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 22:04:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6EC4E3BE4F\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 22:04:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIM4WPI002893\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 17:04:32 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIM4W6D002891\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 17:04:32 -0500\nDate: Tue, 18 Dec 2007 17:04:32 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39472 - oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 17:05:09 2007\nX-DSPAM-Confidence: 0.9827\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39472\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-18 17:04:31 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39472\n\nModified:\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties\nLog:\nSAK-12492 => svn merge -r39470:39471 https://source.sakaiproject.org/svn/site-manage/branches/SAK-12433\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom tnguyen@iupui.edu Tue Dec 18 17:00:38 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 17:00:38 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 17:00:38 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby awakenings.mail.umich.edu () with ESMTP id lBIM0bb8019066;\n\tTue, 18 Dec 2007 17:00:37 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 47684300.B27C1.5185 ; \n\t18 Dec 2007 17:00:35 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C902C9C14C;\n\tTue, 18 Dec 2007 22:00:30 +0000 (GMT)\nMessage-ID: <200712182200.lBIM01mO002877@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 484\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 22:00:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 70F033BE4F\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 22:00:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIM01mD002879\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 17:00:01 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIM01mO002877\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 17:00:01 -0500\nDate: Tue, 18 Dec 2007 17:00:01 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to tnguyen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: tnguyen@iupui.edu\nSubject: [sakai] svn commit: r39471 - site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 17:00:38 2007\nX-DSPAM-Confidence: 0.9811\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39471\n\nAuthor: tnguyen@iupui.edu\nDate: 2007-12-18 17:00:00 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39471\n\nModified:\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties\nLog:\nSAK-12492\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Tue Dec 18 16:50:28 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 16:50:28 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 16:50:28 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby awakenings.mail.umich.edu () with ESMTP id lBILoRvE014500;\n\tTue, 18 Dec 2007 16:50:27 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4768409A.DC382.11733 ; \n\t18 Dec 2007 16:50:21 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7AD13A20AF;\n\tTue, 18 Dec 2007 21:50:19 +0000 (GMT)\nMessage-ID: <200712182149.lBILnoGo002833@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 820\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 21:50:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C91BD3C25D\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 21:50:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBILno9U002835\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 16:49:50 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBILnoGo002833\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 16:49:50 -0500\nDate: Tue, 18 Dec 2007 16:49:50 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39470 - site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 16:50:28 2007\nX-DSPAM-Confidence: 0.9816\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39470\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-18 16:49:48 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39470\n\nModified:\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties\nLog:\nrevert back for r39464 => svn merge -r39464:39463 https://source.sakaiproject.org/svn/site-manage/branches/SAK-12433.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom bkirschn@umich.edu Tue Dec 18 16:44:12 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 16:44:12 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 16:44:12 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby sleepers.mail.umich.edu () with ESMTP id lBILiBFg024764;\n\tTue, 18 Dec 2007 16:44:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 47683F22.BD38A.18779 ; \n\t18 Dec 2007 16:44:07 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 76B049D867;\n\tTue, 18 Dec 2007 21:44:03 +0000 (GMT)\nMessage-ID: <200712182143.lBILhWfL002809@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 42\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 21:43:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4E5AE3C25D\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 21:43:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBILhWS1002811\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 16:43:32 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBILhWfL002809\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 16:43:32 -0500\nDate: Tue, 18 Dec 2007 16:43:32 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: bkirschn@umich.edu\nSubject: [sakai] svn commit: r39469 - chat/trunk/chat-api/api/src/java/org/sakaiproject/chat2/model\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 16:44:12 2007\nX-DSPAM-Confidence: 0.9824\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39469\n\nAuthor: bkirschn@umich.edu\nDate: 2007-12-18 16:43:30 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39469\n\nModified:\nchat/trunk/chat-api/api/src/java/org/sakaiproject/chat2/model/ChatMessage.java\nLog:\nSAK-12448 - fix regular expression handling for parenthesis\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Tue Dec 18 16:37:57 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 16:37:57 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 16:37:57 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby awakenings.mail.umich.edu () with ESMTP id lBILbv8s008919;\n\tTue, 18 Dec 2007 16:37:57 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 47683DAC.4EC96.20247 ; \n\t18 Dec 2007 16:37:51 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B3BC8A370E;\n\tTue, 18 Dec 2007 21:37:50 +0000 (GMT)\nMessage-ID: <200712182137.lBILbFjE002765@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 973\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 21:37:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0BE0B3C25D\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 21:37:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBILbF2Q002767\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 16:37:15 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBILbFjE002765\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 16:37:15 -0500\nDate: Tue, 18 Dec 2007 16:37:15 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39468 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 16:37:57 2007\nX-DSPAM-Confidence: 0.8425\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39468\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-18 16:37:14 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39468\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdate external for SAK-12480.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Tue Dec 18 16:30:58 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 16:30:58 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 16:30:58 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby brazil.mail.umich.edu () with ESMTP id lBILUvXh022882;\n\tTue, 18 Dec 2007 16:30:57 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 47683C09.86F1E.3356 ; \n\t18 Dec 2007 16:30:55 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 15A7EA4067;\n\tTue, 18 Dec 2007 21:30:52 +0000 (GMT)\nMessage-ID: <200712182130.lBILUPDr002728@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 345\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 21:30:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 029363C23D\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 21:30:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBILUPnW002730\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 16:30:25 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBILUPDr002728\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 16:30:25 -0500\nDate: Tue, 18 Dec 2007 16:30:25 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39467 - oncourse/trunk/src/site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 16:30:58 2007\nX-DSPAM-Confidence: 0.9811\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39467\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-18 16:30:23 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39467\n\nModified:\noncourse/trunk/src/site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nLog:\nONC-136 fixing syntax error\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom tnguyen@iupui.edu Tue Dec 18 16:27:26 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 16:27:26 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 16:27:26 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby sleepers.mail.umich.edu () with ESMTP id lBILRPMY016653;\n\tTue, 18 Dec 2007 16:27:25 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 47683B31.DF37C.10234 ; \n\t18 Dec 2007 16:27:21 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6BAACA4028;\n\tTue, 18 Dec 2007 21:27:16 +0000 (GMT)\nMessage-ID: <200712182126.lBILQlkr002711@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 590\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 21:27:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CC84B3C239\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 21:26:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBILQlh4002713\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 16:26:47 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBILQlkr002711\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 16:26:47 -0500\nDate: Tue, 18 Dec 2007 16:26:47 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to tnguyen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: tnguyen@iupui.edu\nSubject: [sakai] svn commit: r39466 - site-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 16:27:26 2007\nX-DSPAM-Confidence: 0.8464\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39466\n\nAuthor: tnguyen@iupui.edu\nDate: 2007-12-18 16:26:46 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39466\n\nModified:\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-importSitesMigrate.vm\nLog:\nSAK-12480 - Fixed clicking 'back' button in replace will take user back to replace wizard.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Tue Dec 18 16:19:47 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 16:19:47 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 16:19:47 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby godsend.mail.umich.edu () with ESMTP id lBILJkHM021354;\n\tTue, 18 Dec 2007 16:19:46 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 4768396C.4F07B.24859 ; \n\t18 Dec 2007 16:19:43 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C4B70A4062;\n\tTue, 18 Dec 2007 21:19:42 +0000 (GMT)\nMessage-ID: <200712182119.lBILJD8t002683@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 964\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 21:19:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2F5B83C26D\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 21:19:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBILJDrK002685\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 16:19:13 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBILJD8t002683\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 16:19:13 -0500\nDate: Tue, 18 Dec 2007 16:19:13 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39465 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 16:19:47 2007\nX-DSPAM-Confidence: 0.9797\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39465\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-18 16:19:10 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39465\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdate external for gradebook.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom tnguyen@iupui.edu Tue Dec 18 16:16:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 16:16:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 16:16:17 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby mission.mail.umich.edu () with ESMTP id lBILGGab016817;\n\tTue, 18 Dec 2007 16:16:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 47683899.DD202.30854 ; \n\t18 Dec 2007 16:16:12 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 58369A3FF5;\n\tTue, 18 Dec 2007 21:16:12 +0000 (GMT)\nMessage-ID: <200712182115.lBILFX1c002658@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 350\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 21:15:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A244D3C24B\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 21:15:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBILFXrI002660\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 16:15:33 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBILFX1c002658\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 16:15:33 -0500\nDate: Tue, 18 Dec 2007 16:15:33 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to tnguyen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: tnguyen@iupui.edu\nSubject: [sakai] svn commit: r39464 - site-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 16:16:17 2007\nX-DSPAM-Confidence: 0.9807\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39464\n\nAuthor: tnguyen@iupui.edu\nDate: 2007-12-18 16:15:31 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39464\n\nModified:\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties\nLog:\nSAK-12492 - Updated text for the Import From Site Page title.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Tue Dec 18 16:14:03 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 16:14:03 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 16:14:03 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby mission.mail.umich.edu () with ESMTP id lBILE2LS015771;\n\tTue, 18 Dec 2007 16:14:02 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 47683815.C52E7.13183 ; \n\t18 Dec 2007 16:14:00 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5F882A402D;\n\tTue, 18 Dec 2007 21:14:00 +0000 (GMT)\nMessage-ID: <200712182113.lBILDW9D002646@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 263\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 21:13:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 44A163C25D\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 21:13:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBILDWlY002648\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 16:13:32 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBILDW9D002646\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 16:13:32 -0500\nDate: Tue, 18 Dec 2007 16:13:32 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39463 - gradebook/branches/oncourse_2-4-2/app/ui/src/webapp\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 16:14:03 2007\nX-DSPAM-Confidence: 0.9829\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39463\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-18 16:13:31 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39463\n\nModified:\ngradebook/branches/oncourse_2-4-2/app/ui/src/webapp/addAssignment.jsp\nLog:\nSAK-12495 Joes fix for this one.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Tue Dec 18 16:12:29 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 16:12:29 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 16:12:29 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby jacknife.mail.umich.edu () with ESMTP id lBILCSLx001616;\n\tTue, 18 Dec 2007 16:12:28 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 476837B7.527AB.14961 ; \n\t18 Dec 2007 16:12:26 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 403BEA3F8A;\n\tTue, 18 Dec 2007 21:12:24 +0000 (GMT)\nMessage-ID: <200712182111.lBILBtvw002634@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 302\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 21:12:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D07C03C24B\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 21:12:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBILBtEe002636\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 16:11:55 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBILBtvw002634\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 16:11:55 -0500\nDate: Tue, 18 Dec 2007 16:11:55 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r39462 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 16:12:29 2007\nX-DSPAM-Confidence: 0.9836\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39462\n\nAuthor: dlhaines@umich.edu\nDate: 2007-12-18 16:11:54 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39462\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/defaultbuild.properties\nLog:\nCTools: update content conversion.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Tue Dec 18 16:09:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 16:09:13 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 16:09:13 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby fan.mail.umich.edu () with ESMTP id lBIL9D2o029644;\n\tTue, 18 Dec 2007 16:09:13 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 476836F3.C9058.5160 ; \n\t18 Dec 2007 16:09:10 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8CC18A3F9F;\n\tTue, 18 Dec 2007 21:09:01 +0000 (GMT)\nMessage-ID: <200712182108.lBIL8NgF002610@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 807\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 21:08:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E795A3C25B\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 21:08:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIL8NGh002612\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 16:08:23 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIL8NgF002610\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 16:08:23 -0500\nDate: Tue, 18 Dec 2007 16:08:23 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39461 - gradebook/branches/oncourse_2-4-2/app/ui/src/webapp/js\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 16:09:13 2007\nX-DSPAM-Confidence: 0.9802\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39461\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-18 16:08:22 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39461\n\nModified:\ngradebook/branches/oncourse_2-4-2/app/ui/src/webapp/js/spreadsheetUI.js\nLog:\nSAK-12491 => svn merge -r39381:39382 https://source.sakaiproject.org/svn/gradebook/trunk\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Tue Dec 18 16:03:46 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 16:03:46 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 16:03:46 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby jacknife.mail.umich.edu () with ESMTP id lBIL3kFg029634;\n\tTue, 18 Dec 2007 16:03:46 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 476835A8.70BD.11819 ; \n\t18 Dec 2007 16:03:38 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 50EAEA3FFB;\n\tTue, 18 Dec 2007 21:03:37 +0000 (GMT)\nMessage-ID: <200712182103.lBIL35ac002544@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 923\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 21:03:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 138563C13A\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 21:03:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIL35JU002546\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 16:03:06 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIL35ac002544\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 16:03:05 -0500\nDate: Tue, 18 Dec 2007 16:03:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r39460 - content/branches/SAK-12239/content-impl/pack\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 16:03:46 2007\nX-DSPAM-Confidence: 0.9867\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39460\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-18 16:03:03 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39460\n\nModified:\ncontent/branches/SAK-12239/content-impl/pack/project.xml\nLog:\nSAK-12239\nAdded db-storage and db-conversion jars to content-pack war so they will be available for conversion\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Tue Dec 18 16:02:31 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 16:02:31 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 16:02:31 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby flawless.mail.umich.edu () with ESMTP id lBIL2UQq002290;\n\tTue, 18 Dec 2007 16:02:30 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 47683555.33FB7.16132 ; \n\t18 Dec 2007 16:02:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3C4D9A4000;\n\tTue, 18 Dec 2007 21:02:15 +0000 (GMT)\nMessage-ID: <200712182101.lBIL1hCh002532@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 587\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 21:02:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 16A5F3C13A\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 21:01:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIL1iar002534\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 16:01:44 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIL1hCh002532\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 16:01:43 -0500\nDate: Tue, 18 Dec 2007 16:01:43 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r39459 - in db/branches/SAK-12239: db-impl/pack db-util db-util/conversion/src/java/org/sakaiproject/util/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 16:02:31 2007\nX-DSPAM-Confidence: 0.9867\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39459\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-18 16:01:37 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39459\n\nModified:\ndb/branches/SAK-12239/db-impl/pack/project.xml\ndb/branches/SAK-12239/db-util/.classpath\ndb/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionController.java\nLog:\nSAK-12239\nAdded commit to controller init method to deal with transaction.\ndeploying storage and conversion jars with pack\nfixed classpath for eclipse\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Tue Dec 18 15:59:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 15:59:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 15:59:19 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby flawless.mail.umich.edu () with ESMTP id lBIKxIKL000447;\n\tTue, 18 Dec 2007 15:59:18 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 4768349F.CED61.546 ; \n\t18 Dec 2007 15:59:14 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id F172BA3CB6;\n\tTue, 18 Dec 2007 20:59:11 +0000 (GMT)\nMessage-ID: <200712182058.lBIKwg9c002515@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 749\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 20:58:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C1B9F3C13A\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 20:58:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIKwgKS002517\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 15:58:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIKwg9c002515\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 15:58:42 -0500\nDate: Tue, 18 Dec 2007 15:58:42 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39458 - oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/js\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 15:59:19 2007\nX-DSPAM-Confidence: 0.9809\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39458\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-18 15:58:41 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39458\n\nModified:\noncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/js/headscripts.js\nLog:\nSAK-12506 => svn merge -r39453:39454 https://source.sakaiproject.org/svn/reference/branches/SAK-8152\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Tue Dec 18 15:47:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 15:47:50 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 15:47:50 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby godsend.mail.umich.edu () with ESMTP id lBIKlnEh000805;\n\tTue, 18 Dec 2007 15:47:49 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 476831EF.1FA68.9819 ; \n\t18 Dec 2007 15:47:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 823B6A3FE5;\n\tTue, 18 Dec 2007 20:47:47 +0000 (GMT)\nMessage-ID: <200712182047.lBIKl2g0002445@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 971\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 20:47:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 932223BE59\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 20:47:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIKl2ZX002447\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 15:47:02 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIKl2g0002445\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 15:47:02 -0500\nDate: Tue, 18 Dec 2007 15:47:02 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39457 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 15:47:50 2007\nX-DSPAM-Confidence: 0.9834\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39457\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-18 15:47:01 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39457\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdate externals for Gregs roll back of student view.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Tue Dec 18 15:46:20 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 15:46:20 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 15:46:20 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby sleepers.mail.umich.edu () with ESMTP id lBIKkK4w027445;\n\tTue, 18 Dec 2007 15:46:20 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4768318F.61E3.6994 ; \n\t18 Dec 2007 15:46:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BFCD3A3FDE;\n\tTue, 18 Dec 2007 20:46:11 +0000 (GMT)\nMessage-ID: <200712182045.lBIKjZ0b002433@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 617\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 20:45:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8EF883BE5C\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 20:45:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIKjZZO002435\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 15:45:35 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIKjZ0b002433\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 15:45:35 -0500\nDate: Tue, 18 Dec 2007 15:45:35 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r39456 - oncourse/trunk/src/site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 15:46:20 2007\nX-DSPAM-Confidence: 0.7568\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39456\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-12-18 15:45:33 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39456\n\nModified:\noncourse/trunk/src/site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nLog:\nONC-136 when a new combined course membership is populated, add privacy records that correspond to the members' status in the child sites\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom josrodri@iupui.edu Tue Dec 18 14:52:27 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 14:52:27 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 14:52:27 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby sleepers.mail.umich.edu () with ESMTP id lBIJqQqu028736;\n\tTue, 18 Dec 2007 14:52:26 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 476824F4.CBC44.22113 ; \n\t18 Dec 2007 14:52:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 56BB0A39A8;\n\tTue, 18 Dec 2007 19:52:32 +0000 (GMT)\nMessage-ID: <200712181951.lBIJpnA9002336@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 807\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 19:52:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8D82B3C24A\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 19:52:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIJpnnl002338\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 14:51:49 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIJpnA9002336\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 14:51:49 -0500\nDate: Tue, 18 Dec 2007 14:51:49 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: josrodri@iupui.edu\nSubject: [sakai] svn commit: r39455 - podcasts/trunk/podcasts/src/java/org/sakaiproject/tool/podcasts\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 14:52:27 2007\nX-DSPAM-Confidence: 0.7557\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39455\n\nAuthor: josrodri@iupui.edu\nDate: 2007-12-18 14:51:48 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39455\n\nModified:\npodcasts/trunk/podcasts/src/java/org/sakaiproject/tool/podcasts/RSSPodfeedServlet.java\nLog:\nSAK-6404: changed events logged to podcast.read.public, podcast.read.site\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Tue Dec 18 13:10:18 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 13:10:18 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 13:10:18 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby brazil.mail.umich.edu () with ESMTP id lBIIAHWm005615;\n\tTue, 18 Dec 2007 13:10:17 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 47680D01.5CFB7.25111 ; \n\t18 Dec 2007 13:10:12 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5344AA1DE6;\n\tTue, 18 Dec 2007 18:08:09 +0000 (GMT)\nMessage-ID: <200712181809.lBII9i5p002078@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 395\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 18:07:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1212337AC9\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 18:09:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBII9iKC002080\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 13:09:44 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBII9i5p002078\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 13:09:44 -0500\nDate: Tue, 18 Dec 2007 13:09:44 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r39453 - portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 13:10:18 2007\nX-DSPAM-Confidence: 0.9830\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39453\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-18 13:09:40 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39453\n\nModified:\nportal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java\nLog:\nroll back role swap from oncourse\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Tue Dec 18 13:07:45 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 13:07:45 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 13:07:45 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby panther.mail.umich.edu () with ESMTP id lBII7jwZ003635;\n\tTue, 18 Dec 2007 13:07:45 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 47680C5B.A55B0.23059 ; \n\t18 Dec 2007 13:07:27 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DC120538D9;\n\tTue, 18 Dec 2007 18:05:24 +0000 (GMT)\nMessage-ID: <200712181806.lBII6viP002047@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 311\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 18:05:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0835037AC9\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 18:07:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBII6v74002049\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 13:06:57 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBII6viP002047\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 13:06:57 -0500\nDate: Tue, 18 Dec 2007 13:06:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r39452 - in portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon: . handlers\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 13:07:45 2007\nX-DSPAM-Confidence: 0.9840\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39452\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-18 13:06:56 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39452\n\nRemoved:\nportal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchHandler.java\nportal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchOutHandler.java\nModified:\nportal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java\nportal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java\nLog:\nroll back role swap from oncourse\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Tue Dec 18 13:06:16 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 13:06:16 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 13:06:16 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby godsend.mail.umich.edu () with ESMTP id lBII6GsE008627;\n\tTue, 18 Dec 2007 13:06:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 47680C0A.E1BF7.24125 ; \n\t18 Dec 2007 13:06:10 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6FA39A3445;\n\tTue, 18 Dec 2007 18:03:51 +0000 (GMT)\nMessage-ID: <200712181804.lBII4xJ6002035@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 858\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 18:02:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A8E4E37AC9\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 18:05:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBII4xKi002037\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 13:04:59 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBII4xJ6002035\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 13:04:59 -0500\nDate: Tue, 18 Dec 2007 13:04:59 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r39451 - portal/branches/oncourse_opc_122007/portal-render-engine-impl/pack/src/webapp/vm/defaultskin\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 13:06:16 2007\nX-DSPAM-Confidence: 0.8478\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39451\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-18 13:04:57 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39451\n\nModified:\nportal/branches/oncourse_opc_122007/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm\nLog:\nroll back role swap from oncourse\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Tue Dec 18 13:06:11 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 13:06:11 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 13:06:11 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby casino.mail.umich.edu () with ESMTP id lBII6BSk009592;\n\tTue, 18 Dec 2007 13:06:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 47680C05.DF317.25765 ; \n\t18 Dec 2007 13:06:03 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DFF4FA3444;\n\tTue, 18 Dec 2007 18:03:46 +0000 (GMT)\nMessage-ID: <200712181802.lBII2IwI002011@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 416\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 18:02:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5A50C37AC9\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 18:02:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBII2InC002013\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 13:02:18 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBII2IwI002011\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 13:02:18 -0500\nDate: Tue, 18 Dec 2007 13:02:18 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r39449 - in authz/branches/oncourse_opc_122007/authz-api/api/src/java/org/sakaiproject/authz: api cover\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 13:06:11 2007\nX-DSPAM-Confidence: 0.8481\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39449\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-18 13:02:17 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39449\n\nModified:\nauthz/branches/oncourse_opc_122007/authz-api/api/src/java/org/sakaiproject/authz/api/SecurityService.java\nauthz/branches/oncourse_opc_122007/authz-api/api/src/java/org/sakaiproject/authz/cover/SecurityService.java\nLog:\nroll back role swap from oncourse\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Tue Dec 18 13:06:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 13:06:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 13:06:02 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby godsend.mail.umich.edu () with ESMTP id lBII6261008467;\n\tTue, 18 Dec 2007 13:06:02 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 47680BFD.865D7.19774 ; \n\t18 Dec 2007 13:05:54 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9A7A8A3CC6;\n\tTue, 18 Dec 2007 18:03:45 +0000 (GMT)\nMessage-ID: <200712181802.lBII2Lwe002023@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 22\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 18:02:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C20FE37AC9\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 18:02:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBII2Lx4002025\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 13:02:21 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBII2Lwe002023\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 13:02:21 -0500\nDate: Tue, 18 Dec 2007 13:02:21 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r39450 - authz/branches/oncourse_opc_122007/authz-impl/impl/src/java/org/sakaiproject/authz/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 13:06:02 2007\nX-DSPAM-Confidence: 0.9833\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39450\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-18 13:02:20 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39450\n\nModified:\nauthz/branches/oncourse_opc_122007/authz-impl/impl/src/java/org/sakaiproject/authz/impl/DbAuthzGroupService.java\nauthz/branches/oncourse_opc_122007/authz-impl/impl/src/java/org/sakaiproject/authz/impl/SakaiSecurity.java\nLog:\nroll back role swap from oncourse\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Tue Dec 18 13:05:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 13:05:37 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 13:05:37 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby score.mail.umich.edu () with ESMTP id lBII5a4D021102;\n\tTue, 18 Dec 2007 13:05:36 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 47680BE8.C02B3.31145 ; \n\t18 Dec 2007 13:05:32 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 61DCD538D9;\n\tTue, 18 Dec 2007 18:03:15 +0000 (GMT)\nMessage-ID: <200712181801.lBII1n0q001999@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 6\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 18:01:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7475137AC9\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 18:01:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBII1oAK002001\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 13:01:50 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBII1n0q001999\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 13:01:49 -0500\nDate: Tue, 18 Dec 2007 13:01:49 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r39448 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 13:05:37 2007\nX-DSPAM-Confidence: 0.9860\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39448\n\nAuthor: dlhaines@umich.edu\nDate: 2007-12-18 13:01:48 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39448\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASS.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASS.properties\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/defaultbuild.properties\nLog:\nCTools: temporary build for ctload without content conversion.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Tue Dec 18 12:53:15 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 12:53:15 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 12:53:15 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby awakenings.mail.umich.edu () with ESMTP id lBIHrEDa009265;\n\tTue, 18 Dec 2007 12:53:14 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 476808E7.3EE8E.28000 ; \n\t18 Dec 2007 12:52:42 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8AFBAA3C7C;\n\tTue, 18 Dec 2007 17:52:36 +0000 (GMT)\nMessage-ID: <200712181752.lBIHq4uQ001939@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 960\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 17:52:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1284237D14\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 17:52:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIHq4YB001941\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 12:52:04 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIHq4uQ001939\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:52:04 -0500\nDate: Tue, 18 Dec 2007 12:52:04 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r39447 - site/branches/oncourse_opc_122007/site-impl/impl/src/java/org/sakaiproject/site/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 12:53:15 2007\nX-DSPAM-Confidence: 0.9823\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39447\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-18 12:52:02 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39447\n\nModified:\nsite/branches/oncourse_opc_122007/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSiteService.java\nLog:\nroll back role swap from oncourse\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Tue Dec 18 12:53:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 12:53:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 12:53:02 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby flawless.mail.umich.edu () with ESMTP id lBIHr1ki023263;\n\tTue, 18 Dec 2007 12:53:01 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 476808E8.AC007.15883 ; \n\t18 Dec 2007 12:52:43 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BEAFDA3CB2;\n\tTue, 18 Dec 2007 17:52:36 +0000 (GMT)\nMessage-ID: <200712181752.lBIHq1qK001926@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 797\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 17:52:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E4B4037D14\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 17:52:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIHq1Y3001928\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 12:52:01 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIHq1qK001926\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:52:01 -0500\nDate: Tue, 18 Dec 2007 12:52:01 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r39446 - in site/branches/oncourse_opc_122007/site-api/api/src/java/org/sakaiproject/site: api cover\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 12:53:02 2007\nX-DSPAM-Confidence: 0.8476\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39446\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-18 12:51:58 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39446\n\nModified:\nsite/branches/oncourse_opc_122007/site-api/api/src/java/org/sakaiproject/site/api/SiteService.java\nsite/branches/oncourse_opc_122007/site-api/api/src/java/org/sakaiproject/site/cover/SiteService.java\nLog:\nroll back role swap from oncourse\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Tue Dec 18 12:48:34 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 12:48:34 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 12:48:34 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby jacknife.mail.umich.edu () with ESMTP id lBIHmXrN005640;\n\tTue, 18 Dec 2007 12:48:33 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 476807D9.D9175.3463 ; \n\t18 Dec 2007 12:48:12 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6D93AA38DF;\n\tTue, 18 Dec 2007 17:48:06 +0000 (GMT)\nMessage-ID: <200712181747.lBIHlJpm001842@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 120\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 17:47:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 18A3F37D14\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 17:47:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIHlJsD001844\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 12:47:20 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIHlJpm001842\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:47:19 -0500\nDate: Tue, 18 Dec 2007 12:47:19 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r39445 - oncourse/trunk/src/reference/library/src/webapp/skin/default\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 12:48:34 2007\nX-DSPAM-Confidence: 0.9819\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39445\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-18 12:47:18 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39445\n\nModified:\noncourse/trunk/src/reference/library/src/webapp/skin/default/portal.css\nLog:\nroll back role swap from oncourse\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Tue Dec 18 12:48:16 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 12:48:16 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 12:48:16 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby fan.mail.umich.edu () with ESMTP id lBIHmF7D012512;\n\tTue, 18 Dec 2007 12:48:15 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 476807D7.3CE12.22612 ; \n\t18 Dec 2007 12:48:10 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9E9D7A3C7B;\n\tTue, 18 Dec 2007 17:48:04 +0000 (GMT)\nMessage-ID: <200712181747.lBIHlDPo001818@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 900\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 17:47:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8CDD037D14\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 17:47:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIHlDUp001820\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 12:47:13 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIHlDPo001818\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:47:13 -0500\nDate: Tue, 18 Dec 2007 12:47:13 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r39443 - portal/branches/oncourse_opc_122007/portal-render-engine-impl/pack/src/webapp/vm/defaultskin\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 12:48:16 2007\nX-DSPAM-Confidence: 0.8468\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39443\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-18 12:47:12 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39443\n\nModified:\nportal/branches/oncourse_opc_122007/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm\nLog:\nroll back role swap from oncourse\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Tue Dec 18 12:48:16 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 12:48:16 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 12:48:16 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby jacknife.mail.umich.edu () with ESMTP id lBIHmF0S005471;\n\tTue, 18 Dec 2007 12:48:15 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 476807D6.19EC6.31264 ; \n\t18 Dec 2007 12:48:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 22092A38DE;\n\tTue, 18 Dec 2007 17:48:04 +0000 (GMT)\nMessage-ID: <200712181747.lBIHlH0I001830@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 572\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 17:47:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 476DD37D14\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 17:47:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIHlHea001832\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 12:47:17 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIHlH0I001830\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:47:17 -0500\nDate: Tue, 18 Dec 2007 12:47:17 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r39444 - in authz/branches/oncourse_opc_122007/authz-impl/impl/src: java/org/sakaiproject/authz/impl sql/oracle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 12:48:16 2007\nX-DSPAM-Confidence: 0.9824\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39444\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-18 12:47:14 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39444\n\nModified:\nauthz/branches/oncourse_opc_122007/authz-impl/impl/src/java/org/sakaiproject/authz/impl/DbAuthzGroupService.java\nauthz/branches/oncourse_opc_122007/authz-impl/impl/src/java/org/sakaiproject/authz/impl/SakaiSecurity.java\nauthz/branches/oncourse_opc_122007/authz-impl/impl/src/sql/oracle/sakai_realm.sql\nLog:\nroll back role swap from oncourse\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Tue Dec 18 12:47:34 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 12:47:34 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 12:47:34 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby casino.mail.umich.edu () with ESMTP id lBIHlWoa031910;\n\tTue, 18 Dec 2007 12:47:32 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4768078B.A81D4.25263 ; \n\t18 Dec 2007 12:46:54 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E5A79A3C7C;\n\tTue, 18 Dec 2007 17:46:47 +0000 (GMT)\nMessage-ID: <200712181746.lBIHkESC001795@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 506\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 17:46:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AFA5737D14\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 17:46:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIHkEGf001797\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 12:46:14 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIHkESC001795\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:46:14 -0500\nDate: Tue, 18 Dec 2007 12:46:14 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r39442 - portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 12:47:34 2007\nX-DSPAM-Confidence: 0.9822\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39442\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-18 12:46:13 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39442\n\nModified:\nportal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchHandler.java\nportal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchOutHandler.java\nportal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java\nLog:\nroll back role swap from oncourse\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gsilver@umich.edu Tue Dec 18 12:44:05 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 12:44:05 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 12:44:05 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby awakenings.mail.umich.edu () with ESMTP id lBIHi4TN004095;\n\tTue, 18 Dec 2007 12:44:04 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 476806CA.DD25D.15538 ; \n\t18 Dec 2007 12:43:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 23AD89D32C;\n\tTue, 18 Dec 2007 17:43:39 +0000 (GMT)\nMessage-ID: <200712181743.lBIHh8AZ001778@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 88\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 17:43:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 87B88382C8\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 17:43:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIHh87K001780\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 12:43:08 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIHh8AZ001778\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:43:08 -0500\nDate: Tue, 18 Dec 2007 12:43:08 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gsilver@umich.edu\nSubject: [sakai] svn commit: r39441 - reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 12:44:05 2007\nX-DSPAM-Confidence: 0.9835\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39441\n\nAuthor: gsilver@umich.edu\nDate: 2007-12-18 12:43:06 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39441\n\nModified:\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/sakadojo.css\nLog:\nSAK-12442\nhttp://jira.sakaiproject.org/jira/browse/SAK-12442\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Tue Dec 18 12:43:58 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 12:43:58 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 12:43:58 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby awakenings.mail.umich.edu () with ESMTP id lBIHhw2O004012;\n\tTue, 18 Dec 2007 12:43:58 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 476806C2.164C6.26791 ; \n\t18 Dec 2007 12:43:33 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8FF54538D9;\n\tTue, 18 Dec 2007 17:43:29 +0000 (GMT)\nMessage-ID: <200712181742.lBIHgrHj001735@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 16\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 17:43:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 39D3B382C8\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 17:43:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIHgr5k001737\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 12:42:53 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIHgrHj001735\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:42:53 -0500\nDate: Tue, 18 Dec 2007 12:42:53 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 12:43:58 2007\nX-DSPAM-Confidence: 0.8507\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39439\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-18 12:41:56 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39439\n\nAdded:\nsearch/trunk/search-impl/impl/src/java/org/sakaiproject/search/journal/api/IndexCloser.java\nsearch/trunk/search-impl/impl/src/java/org/sakaiproject/search/journal/api/ThreadBinder.java\nsearch/trunk/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/IndexListenerCloser.java\nsearch/trunk/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/RefCountIndexSearcher.java\nsearch/trunk/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/RefCountMultiReader.java\nsearch/trunk/search-impl/impl/src/test/org/sakaiproject/search/index/soaktest/OpenFilesTest.java\nsearch/trunk/search-impl/impl/src/test/org/sakaiproject/search/mock/MockSecurityService.java\nRemoved:\nsearch/trunk/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/DelayedClose.java\nsearch/trunk/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/DelayedIndexReaderClose.java\nsearch/trunk/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/DelayedIndexSearcherClose.java\nModified:\nsearch/trunk/search-impl/impl/src/java/org/sakaiproject/search/indexer/impl/ConcurrentSearchIndexBuilderWorkerImpl.java\nsearch/trunk/search-impl/impl/src/java/org/sakaiproject/search/indexer/impl/TransactionalIndexWorker.java\nsearch/trunk/search-impl/impl/src/java/org/sakaiproject/search/journal/api/IndexListener.java\nsearch/trunk/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/ConcurrentIndexManager.java\nsearch/trunk/search-impl/impl/src/java/org/sakaiproject/search/journal/impl/JournaledFSIndexStorage.java\nsearch/trunk/search-impl/impl/src/test/org/sakaiproject/search/index/soaktest/SearchIndexerNode.java\nsearch/trunk/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/JournalOptimzationOperationTest.java\nsearch/trunk/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/LoadSaveSegmentListTest.java\nsearch/trunk/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/MergeUpdateOperationTest.java\nsearch/trunk/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/OptimizeOperationTest.java\nsearch/trunk/search-impl/impl/src/test/org/sakaiproject/search/mock/MockThreadLocalManager.java\nsearch/trunk/search-impl/pack/src/webapp/WEB-INF/parallelIndexComponents.xml\nLog:\nSAK-12460\n\nFixed\nChange the index close mechnism to reference count taking into account parent child relationships between indexreaders and \nindex searchers, and to bind to the the request thread to ensure that files are no closed when active, and also are closed \nas soon as possible.\n\nThs has been tested with the unit test OpenFilesTest which can be  run while using lsof to verify the list of open files.\nI have also tested this using a sakai instaance running in soak mode with apache benchmark hitting the search tool with batches of 6000\nhits on 5 threads.\n\nThere is a related SAK on this commit (see JIRA) that fixes a ConcurrentModificationException in THreadLocalComponent\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Tue Dec 18 12:43:41 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 12:43:41 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 12:43:41 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby fan.mail.umich.edu () with ESMTP id lBIHhe5j010293;\n\tTue, 18 Dec 2007 12:43:40 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 476806C6.9FC1D.26483 ; \n\t18 Dec 2007 12:43:37 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7B05A9C29D;\n\tTue, 18 Dec 2007 17:43:34 +0000 (GMT)\nMessage-ID: <200712181743.lBIHh2Ap001766@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 48\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 17:43:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A7971382C8\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 17:43:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIHh2rv001768\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 12:43:02 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIHh2Ap001766\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:43:02 -0500\nDate: Tue, 18 Dec 2007 12:43:02 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39440 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 12:43:41 2007\nX-DSPAM-Confidence: 0.9807\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39440\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-18 12:43:01 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39440\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdate externals for new gradebook branch.oncourse_2-4-2.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Tue Dec 18 12:30:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 12:30:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 12:30:51 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby flawless.mail.umich.edu () with ESMTP id lBIHUpf7010860;\n\tTue, 18 Dec 2007 12:30:51 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 476803C6.6D05E.4996 ; \n\t18 Dec 2007 12:30:49 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4D78FA3B70;\n\tTue, 18 Dec 2007 17:30:43 +0000 (GMT)\nMessage-ID: <200712181730.lBIHU1jO001651@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 936\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 17:30:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id ECB9437AC4\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 17:30:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIHU12c001653\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 12:30:01 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIHU1jO001651\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:30:01 -0500\nDate: Tue, 18 Dec 2007 12:30:01 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39438 - oncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/java/org/sakaiproject/site/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 12:30:51 2007\nX-DSPAM-Confidence: 0.9876\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39438\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-18 12:29:58 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39438\n\nModified:\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nLog:\nmerge in r39433 for Chris java compilation fix for Andrew pricacy patch.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom lance@indiana.edu Tue Dec 18 12:23:24 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 12:23:24 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 12:23:24 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby panther.mail.umich.edu () with ESMTP id lBIHNOQs010150;\n\tTue, 18 Dec 2007 12:23:24 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 47680206.17DA9.11978 ; \n\t18 Dec 2007 12:23:20 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8CFD7A3AA4;\n\tTue, 18 Dec 2007 17:23:18 +0000 (GMT)\nMessage-ID: <200712181722.lBIHMgmD001608@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1009\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 17:22:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4B8133BFF5\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 17:22:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIHMg6D001610\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 12:22:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIHMgmD001608\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:22:42 -0500\nDate: Tue, 18 Dec 2007 12:22:42 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to lance@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: lance@indiana.edu\nSubject: [sakai] svn commit: r39437 - gradebook/branches/oncourse_2-4-2/app/ui/src/webapp/inc\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 12:23:24 2007\nX-DSPAM-Confidence: 0.7538\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39437\n\nAuthor: lance@indiana.edu\nDate: 2007-12-18 12:22:40 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39437\n\nModified:\ngradebook/branches/oncourse_2-4-2/app/ui/src/webapp/inc/bulkNewItems.jspf\nLog:\nRemove all ungraded stuff from jsp\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom lance@indiana.edu Tue Dec 18 12:18:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 12:18:50 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 12:18:50 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby godsend.mail.umich.edu () with ESMTP id lBIHInBd017201;\n\tTue, 18 Dec 2007 12:18:49 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 476800F0.A8BCF.8028 ; \n\t18 Dec 2007 12:18:43 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 400A5A3B68;\n\tTue, 18 Dec 2007 17:18:30 +0000 (GMT)\nMessage-ID: <200712181717.lBIHHxZL001589@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1003\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 17:18:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id F11033BFE4\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 17:18:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIHHxox001591\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 12:17:59 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIHHxZL001589\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:17:59 -0500\nDate: Tue, 18 Dec 2007 12:17:59 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to lance@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: lance@indiana.edu\nSubject: [sakai] svn commit: r39436 - in gradebook/branches/oncourse_2-4-2/app/ui/src: bundle/org/sakaiproject/tool/gradebook/bundle webapp/inc webapp/js\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 12:18:50 2007\nX-DSPAM-Confidence: 0.7611\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39436\n\nAuthor: lance@indiana.edu\nDate: 2007-12-18 12:17:57 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39436\n\nModified:\ngradebook/branches/oncourse_2-4-2/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties\ngradebook/branches/oncourse_2-4-2/app/ui/src/webapp/inc/bulkNewItems.jspf\ngradebook/branches/oncourse_2-4-2/app/ui/src/webapp/js/multiItemAdd.js\nLog:\nsvn merge -c 39377 https://source.sakaiproject.org/svn/gradebook/branches/oncourse_opc_122007/ .\ncp app/ui/src/webapp/inc/bulkNewItems.jspf.merge-right.r39377 app/ui/src/webapp/inc/bulkNewItems.jspf\nsvn resolved app/ui/src/webapp/inc/bulkNewItems.jspf\nsvn log -r 39377 https://source.sakaiproject.org/svn/gradebook/branches/oncourse_opc_122007/ .------------------------------------------------------------------------\nr39377 | cwen@iupui.edu | 2007-12-17 12:29:24 -0500 (Mon, 17 Dec 2007) | 1 line\n\nSAK-12466 svn merge -r39334:39335 https://source.sakaiproject.org/svn/gradebook/trunk\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Tue Dec 18 12:17:23 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 12:17:23 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 12:17:23 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby panther.mail.umich.edu () with ESMTP id lBIHHM5B006585;\n\tTue, 18 Dec 2007 12:17:22 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 4768009B.EDB1.20653 ; \n\t18 Dec 2007 12:17:17 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DE11AA3BB1;\n\tTue, 18 Dec 2007 17:17:14 +0000 (GMT)\nMessage-ID: <200712181716.lBIHGW3r001577@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 359\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 17:16:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 414333BFDF\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 17:16:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIHGWmj001579\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 12:16:32 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIHGW3r001577\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:16:32 -0500\nDate: Tue, 18 Dec 2007 12:16:32 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r39435 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 12:17:23 2007\nX-DSPAM-Confidence: 0.8486\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39435\n\nAuthor: dlhaines@umich.edu\nDate: 2007-12-18 12:16:29 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39435\n\nAdded:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASS.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xPASS.properties\nLog:\nCTools: add configuration for assignments without new content.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom lance@indiana.edu Tue Dec 18 12:07:31 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 12:07:31 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 12:07:31 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby panther.mail.umich.edu () with ESMTP id lBIH7VkD001141;\n\tTue, 18 Dec 2007 12:07:31 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4767FE48.65F65.19558 ; \n\t18 Dec 2007 12:07:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B85B2A3B34;\n\tTue, 18 Dec 2007 17:07:17 +0000 (GMT)\nMessage-ID: <200712181706.lBIH6e0t001562@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 161\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 17:06:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 80EF9238A0\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 17:06:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIH6erW001564\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 12:06:40 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIH6e0t001562\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:06:40 -0500\nDate: Tue, 18 Dec 2007 12:06:40 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to lance@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: lance@indiana.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 12:07:31 2007\nX-DSPAM-Confidence: 0.7617\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39434\n\nAuthor: lance@indiana.edu\nDate: 2007-12-18 12:06:38 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39434\n\nModified:\ngradebook/branches/oncourse_2-4-2/service/api/src/java/org/sakaiproject/service/gradebook/shared/Assignment.java\ngradebook/branches/oncourse_2-4-2/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java\ngradebook/branches/oncourse_2-4-2/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookDefinition.java\ngradebook/branches/oncourse_2-4-2/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java\ngradebook/branches/oncourse_2-4-2/service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sakai2impl/GradebookEntityProducer.java\nLog:\nsvn merge -r 39318:39325 https://source.sakaiproject.org/svn/gradebook/branches/oncourse_opc_122007/ .\nsvn log -r 39319:39325 https://source.sakaiproject.org/svn/gradebook/branches/oncourse_opc_122007/\n------------------------------------------------------------------------\nr39319 | cwen@iupui.edu | 2007-12-15 14:51:16 -0500 (Sat, 15 Dec 2007) | 1 line\n\nSAK-12433 => svn merge -r39311:39312 https://source.sakaiproject.org/svn/gradebook/trunk\n------------------------------------------------------------------------\nr39321 | cwen@iupui.edu | 2007-12-15 17:10:25 -0500 (Sat, 15 Dec 2007) | 1 line\n\nSAK-12433\n------------------------------------------------------------------------\nr39323 | cwen@iupui.edu | 2007-12-15 17:45:57 -0500 (Sat, 15 Dec 2007) | 1 line\n\nSAK-12433\n------------------------------------------------------------------------\nr39325 | cwen@iupui.edu | 2007-12-15 17:57:40 -0500 (Sat, 15 Dec 2007) | 1 line\n\nsak-12433\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Tue Dec 18 12:05:05 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 12:05:05 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 12:05:05 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby chaos.mail.umich.edu () with ESMTP id lBIH54pc023162;\n\tTue, 18 Dec 2007 12:05:04 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 4767FDB1.FDFB.4187 ; \n\t18 Dec 2007 12:04:51 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DACB6A3B24;\n\tTue, 18 Dec 2007 17:04:41 +0000 (GMT)\nMessage-ID: <200712181704.lBIH4AW4001543@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 293\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 17:04:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7CEE1238A0\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 17:04:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIH4AoH001545\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 12:04:10 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIH4AW4001543\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:04:10 -0500\nDate: Tue, 18 Dec 2007 12:04:10 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39433 - oncourse/trunk/src/site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 12:05:05 2007\nX-DSPAM-Confidence: 0.9800\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39433\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-18 12:04:07 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39433\n\nModified:\noncourse/trunk/src/site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nLog:\nONC-136 fixing a missing bracket\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Tue Dec 18 12:03:33 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 12:03:33 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 12:03:33 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby faithful.mail.umich.edu () with ESMTP id lBIH3W8T009897;\n\tTue, 18 Dec 2007 12:03:32 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4767FD5E.38725.22807 ; \n\t18 Dec 2007 12:03:29 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9395DA3A84;\n\tTue, 18 Dec 2007 17:03:23 +0000 (GMT)\nMessage-ID: <200712181703.lBIH332n001519@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 532\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 17:03:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3EE82238A0\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 17:03:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIH33ok001521\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 12:03:03 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIH332n001519\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:03:03 -0500\nDate: Tue, 18 Dec 2007 12:03:03 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39432 - util/trunk/util-impl/impl/src/java/org/sakaiproject/thread_local/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 12:03:33 2007\nX-DSPAM-Confidence: 0.9801\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39432\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-18 12:02:58 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39432\n\nModified:\nutil/trunk/util-impl/impl/src/java/org/sakaiproject/thread_local/impl/ThreadLocalComponent.java\nLog:\nSAK-12512 \n\nFixed by taking a copy of the values\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom lance@indiana.edu Tue Dec 18 12:01:08 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 12:01:08 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 12:01:08 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby sleepers.mail.umich.edu () with ESMTP id lBIH17PC028600;\n\tTue, 18 Dec 2007 12:01:07 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 4767FCCD.C2204.20331 ; \n\t18 Dec 2007 12:01:04 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EBA27A3AFA;\n\tTue, 18 Dec 2007 17:00:46 +0000 (GMT)\nMessage-ID: <200712181700.lBIH0OH7001505@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 781\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 17:00:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 23080238A0\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 17:00:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIH0ONY001507\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 12:00:24 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIH0OH7001505\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 12:00:24 -0500\nDate: Tue, 18 Dec 2007 12:00:24 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to lance@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: lance@indiana.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 12:01:08 2007\nX-DSPAM-Confidence: 0.7554\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39431\n\nAuthor: lance@indiana.edu\nDate: 2007-12-18 12:00:22 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39431\n\nModified:\ngradebook/branches/oncourse_2-4-2/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties\ngradebook/branches/oncourse_2-4-2/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java\ngradebook/branches/oncourse_2-4-2/app/ui/src/webapp/addAssignment.jsp\ngradebook/branches/oncourse_2-4-2/app/ui/src/webapp/inc/bulkNewItems.jspf\ngradebook/branches/oncourse_2-4-2/app/ui/src/webapp/js/multiItemAdd.js\nLog:\nsvn merge -c 39113 https://source.sakaiproject.org/svn/gradebook/branches/oncourse_opc_122007/ .\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom lance@indiana.edu Tue Dec 18 11:41:26 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 11:41:26 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 11:41:26 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby mission.mail.umich.edu () with ESMTP id lBIGfPxi017880;\n\tTue, 18 Dec 2007 11:41:25 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 4767F82D.20344.26597 ; \n\t18 Dec 2007 11:41:20 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BE5F4A2B9D;\n\tTue, 18 Dec 2007 16:41:14 +0000 (GMT)\nMessage-ID: <200712181640.lBIGelu5001477@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 300\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 16:40:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 89F253BFC8\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 16:40:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIGelTY001479\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 11:40:47 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIGelu5001477\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 11:40:47 -0500\nDate: Tue, 18 Dec 2007 11:40:47 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to lance@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: lance@indiana.edu\nSubject: [sakai] svn commit: r39430 - gradebook/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 11:41:26 2007\nX-DSPAM-Confidence: 0.6955\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39430\n\nAuthor: lance@indiana.edu\nDate: 2007-12-18 11:40:46 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39430\n\nAdded:\ngradebook/branches/oncourse_2-4-2/\nLog:\ncreate new branch for 12/30/2007 release - roll back non-calculating items\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Tue Dec 18 11:25:56 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 11:25:56 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 11:25:56 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby panther.mail.umich.edu () with ESMTP id lBIGPtl0006431;\n\tTue, 18 Dec 2007 11:25:55 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4767F48B.C106.31718 ; \n\t18 Dec 2007 11:25:51 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8FAFEA38EE;\n\tTue, 18 Dec 2007 16:25:42 +0000 (GMT)\nMessage-ID: <200712181625.lBIGP9a7001435@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 106\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 16:25:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C2A7937DF1\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 16:25:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIGP91S001437\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 11:25:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIGP9a7001435\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 11:25:09 -0500\nDate: Tue, 18 Dec 2007 11:25:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39429 - in oncourse/trunk/src/site-manage/site-manage-tool/tool/src: bundle java/org/sakaiproject/site/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 11:25:56 2007\nX-DSPAM-Confidence: 0.9824\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39429\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-18 11:25:07 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39429\n\nModified:\noncourse/trunk/src/site-manage/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties\noncourse/trunk/src/site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nLog:\nroll back SiteAction again for stg.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Tue Dec 18 11:15:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 11:15:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 11:15:17 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby score.mail.umich.edu () with ESMTP id lBIGFHLr025663;\n\tTue, 18 Dec 2007 11:15:17 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 4767F209.BA165.14191 ; \n\t18 Dec 2007 11:15:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id F3094A3A34;\n\tTue, 18 Dec 2007 16:14:59 +0000 (GMT)\nMessage-ID: <200712181614.lBIGEaYr001405@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 540\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 16:14:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EAA1D2E030\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 16:14:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIGEaXH001407\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 11:14:36 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIGEaYr001405\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 11:14:36 -0500\nDate: Tue, 18 Dec 2007 11:14:36 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 11:15:17 2007\nX-DSPAM-Confidence: 0.7558\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39428\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-18 11:14:32 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39428\n\nAdded:\noncourse/branches/site-manage-opc-1222007/site-manage-tool/\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/project.xml\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/bundle/\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/bundle/admin.properties\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/java/\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/java/org/\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/java/org/sakaiproject/\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/java/org/sakaiproject/admin/\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/java/org/sakaiproject/admin/tool/\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/java/org/sakaiproject/admin/tool/DelegationAction.java\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/java/org/sakaiproject/admin/tool/ITTRResetAction.java\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/java/org/sakaiproject/site/\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/WEB-INF/\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/WEB-INF/web.xml\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/combinedRedirect.jsp\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/tools/\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/tools/oncourse_ittr_reset.xml\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/tools/sakai.delegation.xml\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/tools/sakai.siteinfo.xml\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/tools/sakai.sitesetup.xml\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/vm/\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/vm/admin/\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/vm/admin/oncourse_ittr_reset.vm\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/vm/admin/sakai_delegation_list.vm\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/vm/sitesetup/\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addParticipant-notification.vm\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addParticipant.vm\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteInformation.vm\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-oncourse-combine-choose-name.vm\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-oncourse-combine-confirm.vm\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-oncourse-combine-rosters.vm\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-oncourse-separate-rosters.vm\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-editInfo.vm\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-list.vm\noncourse/branches/site-manage-opc-1222007/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-sitemanage-addParticipant.vm\nLog:\nadd site-manage tool overlay to branch.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Tue Dec 18 11:08:59 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 11:08:59 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 11:08:59 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby godsend.mail.umich.edu () with ESMTP id lBIG8w5Y010863;\n\tTue, 18 Dec 2007 11:08:58 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 4767F082.82F6B.7770 ; \n\t18 Dec 2007 11:08:37 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B2B1DA3211;\n\tTue, 18 Dec 2007 16:08:33 +0000 (GMT)\nMessage-ID: <200712181608.lBIG83p7001371@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 529\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 16:08:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DDC752E030\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 16:08:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIG838P001373\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 11:08:03 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIG83p7001371\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 11:08:03 -0500\nDate: Tue, 18 Dec 2007 11:08:03 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39427 - oncourse/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 11:08:59 2007\nX-DSPAM-Confidence: 0.9818\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39427\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-18 11:08:02 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39427\n\nAdded:\noncourse/branches/site-manage-opc-1222007/\nLog:\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Tue Dec 18 10:32:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 10:32:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 10:32:17 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby chaos.mail.umich.edu () with ESMTP id lBIFWGk0002812;\n\tTue, 18 Dec 2007 10:32:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4767E7ED.13D04.3404 ; \n\t18 Dec 2007 10:32:03 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CB63CA38C9;\n\tTue, 18 Dec 2007 15:31:04 +0000 (GMT)\nMessage-ID: <200712181530.lBIFUTwS001316@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 762\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 15:30:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6019737D23\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 15:30:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIFUTZG001318\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 10:30:29 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIFUTwS001316\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 10:30:29 -0500\nDate: Tue, 18 Dec 2007 10:30:29 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r39426 - oncourse/trunk/src/site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 10:32:17 2007\nX-DSPAM-Confidence: 0.8469\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39426\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-12-18 10:30:26 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39426\n\nModified:\noncourse/trunk/src/site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nLog:\nONC-136 when a new combined course membership is populated, add privacy records that correspond to the members' status in the child sites\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Tue Dec 18 09:58:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 09:58:37 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 09:58:37 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby panther.mail.umich.edu () with ESMTP id lBIEwaOl018622;\n\tTue, 18 Dec 2007 09:58:36 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 4767E016.1762D.11636 ; \n\t18 Dec 2007 09:58:32 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 876629B639;\n\tTue, 18 Dec 2007 14:58:34 +0000 (GMT)\nMessage-ID: <200712181458.lBIEw5EO001280@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 504\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 14:58:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6715D347BC\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 14:58:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIEw5Vx001282\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 09:58:05 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIEw5EO001280\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 09:58:05 -0500\nDate: Tue, 18 Dec 2007 09:58:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39425 - oncourse/trunk/src/site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 09:58:37 2007\nX-DSPAM-Confidence: 0.9840\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39425\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-18 09:58:04 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39425\n\nModified:\noncourse/trunk/src/site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nLog:\nfix problems with combined roster for SiteAction. merging had problems for impor/export for SAK-12433.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Tue Dec 18 09:30:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 09:30:37 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 09:30:37 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby awakenings.mail.umich.edu () with ESMTP id lBIEUaYg025519;\n\tTue, 18 Dec 2007 09:30:36 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4767D97A.E3EDF.12237 ; \n\t18 Dec 2007 09:30:32 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 18F2DA3795;\n\tTue, 18 Dec 2007 14:30:30 +0000 (GMT)\nMessage-ID: <200712181429.lBIETrXa001250@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 190\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 14:30:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 42AFB3BEAE\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 14:30:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIETrOW001252\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 09:29:53 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIETrXa001250\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 09:29:53 -0500\nDate: Tue, 18 Dec 2007 09:29:53 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r39424 - oncourse/trunk/src/calendar/calendar-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 09:30:37 2007\nX-DSPAM-Confidence: 0.9815\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39424\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-18 09:29:52 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39424\n\nModified:\noncourse/trunk/src/calendar/calendar-tool/tool/src/bundle/calendar.properties\nLog:\nONC-272 - removing properties from oncourse overlay\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Tue Dec 18 09:19:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 09:19:42 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 09:19:42 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby panther.mail.umich.edu () with ESMTP id lBIEJf0x028850;\n\tTue, 18 Dec 2007 09:19:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4767D6F6.B8950.5531 ; \n\t18 Dec 2007 09:19:37 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 67E87A3768;\n\tTue, 18 Dec 2007 14:19:40 +0000 (GMT)\nMessage-ID: <200712181419.lBIEJ2aD001222@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1006\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 14:19:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 85D893BF0F\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 14:19:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIEJ3Or001224\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 09:19:03 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIEJ2aD001222\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 09:19:02 -0500\nDate: Tue, 18 Dec 2007 09:19:02 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r39423 - in calendar/branches/oncourse_opc_122007/calendar-tool/tool/src: java/org/sakaiproject/calendar/tool webapp/vm/calendar\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 09:19:42 2007\nX-DSPAM-Confidence: 0.9813\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39423\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-18 09:19:00 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39423\n\nModified:\ncalendar/branches/oncourse_opc_122007/calendar-tool/tool/src/java/org/sakaiproject/calendar/tool/CalendarAction.java\ncalendar/branches/oncourse_opc_122007/calendar-tool/tool/src/webapp/vm/calendar/chef_calendar_viewActivity.vm\nLog:\nONC-272 - remove attachments from calendar\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stephen.marquard@uct.ac.za Tue Dec 18 09:08:11 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 09:08:11 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 09:08:11 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby casino.mail.umich.edu () with ESMTP id lBIE8Amt007048;\n\tTue, 18 Dec 2007 09:08:10 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 4767D444.8490D.12185 ; \n\t18 Dec 2007 09:08:07 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 568E79AA61;\n\tTue, 18 Dec 2007 14:08:13 +0000 (GMT)\nMessage-ID: <200712181407.lBIE7Ws5001210@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 807\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 14:07:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 33FCA327C3\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 14:07:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIE7WTH001212\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 09:07:32 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIE7Ws5001210\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 09:07:32 -0500\nDate: Tue, 18 Dec 2007 09:07:32 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: stephen.marquard@uct.ac.za\nSubject: [sakai] svn commit: r39422 - event/branches/SAK-6216/event-impl/impl/src/java/org/sakaiproject/event/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 09:08:11 2007\nX-DSPAM-Confidence: 0.9805\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39422\n\nAuthor: stephen.marquard@uct.ac.za\nDate: 2007-12-18 09:07:24 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39422\n\nModified:\nevent/branches/SAK-6216/event-impl/impl/src/java/org/sakaiproject/event/impl/UsageSessionServiceSqlDefault.java\nLog:\nSAK-6216 Add SESSION_HOSTNAME another place it needs to be.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Tue Dec 18 08:42:24 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 08:42:24 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 08:42:24 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby jacknife.mail.umich.edu () with ESMTP id lBIDgLTO001399;\n\tTue, 18 Dec 2007 08:42:21 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 4767CE30.BF11C.25900 ; \n\t18 Dec 2007 08:42:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 184D4A36ED;\n\tTue, 18 Dec 2007 13:41:41 +0000 (GMT)\nMessage-ID: <200712181341.lBIDf5GJ001161@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 159\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 13:41:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0EE583BA49\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 13:41:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIDf54X001163\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 08:41:05 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIDf5GJ001161\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 08:41:05 -0500\nDate: Tue, 18 Dec 2007 08:41:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39421 - reference/trunk/docs/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 08:42:24 2007\nX-DSPAM-Confidence: 0.9822\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39421\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-18 08:41:00 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39421\n\nModified:\nreference/trunk/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql\nreference/trunk/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\nLog:\nSAK-10215\nAdding some conversion to fix chat tool titles.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Tue Dec 18 08:35:44 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 08:35:44 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 08:35:44 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby panther.mail.umich.edu () with ESMTP id lBIDZhsg008728;\n\tTue, 18 Dec 2007 08:35:43 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 4767CCA6.844C.17535 ; \n\t18 Dec 2007 08:35:36 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BBA5FA36D0;\n\tTue, 18 Dec 2007 13:35:25 +0000 (GMT)\nMessage-ID: <200712181334.lBIDYwce001108@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 753\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 13:34:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2E3493BA49\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 13:35:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIDYw7Z001110\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 08:34:58 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIDYwce001108\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 08:34:58 -0500\nDate: Tue, 18 Dec 2007 08:34:58 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39420 - reference/branches/sakai_2-4-x/docs/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 08:35:44 2007\nX-DSPAM-Confidence: 0.9836\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39420\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-18 08:34:55 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39420\n\nAdded:\nreference/branches/sakai_2-4-x/docs/conversion/sakai_2_4_0-2_4_x_mysql_conversion_004.sql\nreference/branches/sakai_2-4-x/docs/conversion/sakai_2_4_0-2_4_x_oracle_conversion_004.sql\nLog:\nSAK-10215\nAdding some conversion to fix chat tool titles.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Tue Dec 18 08:18:36 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 08:18:36 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 08:18:36 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby fan.mail.umich.edu () with ESMTP id lBIDIZ5w003762;\n\tTue, 18 Dec 2007 08:18:35 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 4767C8A4.DF83C.8624 ; \n\t18 Dec 2007 08:18:31 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 345E0A34DA;\n\tTue, 18 Dec 2007 13:18:19 +0000 (GMT)\nMessage-ID: <200712181317.lBIDHrd7001089@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 345\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 13:17:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B12CF3BEB0\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 13:18:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIDHrYt001091\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 08:17:53 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIDHrd7001089\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 08:17:53 -0500\nDate: Tue, 18 Dec 2007 08:17:53 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39419 - content/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 08:18:36 2007\nX-DSPAM-Confidence: 0.8432\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39419\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-18 08:17:50 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39419\n\nAdded:\ncontent/branches/SAK-12511/\nLog:\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stephen.marquard@uct.ac.za Tue Dec 18 07:49:52 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 07:49:52 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 07:49:52 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby chaos.mail.umich.edu () with ESMTP id lBICnpSV031482;\n\tTue, 18 Dec 2007 07:49:51 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 4767C1EA.31549.16814 ; \n\t18 Dec 2007 07:49:49 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8FE96A35BE;\n\tTue, 18 Dec 2007 12:46:25 +0000 (GMT)\nMessage-ID: <200712181249.lBICnAxx001000@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 580\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 12:45:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6FDFC3BECA\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 12:49:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBICnAXG001002\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 07:49:10 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBICnAxx001000\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 07:49:10 -0500\nDate: Tue, 18 Dec 2007 07:49:10 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: stephen.marquard@uct.ac.za\nSubject: [sakai] svn commit: r39418 - message/branches/sakai_2-5-x/message-impl/impl/src/java/org/sakaiproject/message/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 07:49:52 2007\nX-DSPAM-Confidence: 0.9818\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39418\n\nAuthor: stephen.marquard@uct.ac.za\nDate: 2007-12-18 07:49:02 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39418\n\nModified:\nmessage/branches/sakai_2-5-x/message-impl/impl/src/java/org/sakaiproject/message/impl/BaseMessageService.java\nLog:\nSAK-12447 Null results from cache: merge into 2-5-x\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stephen.marquard@uct.ac.za Tue Dec 18 07:49:28 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 07:49:28 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 07:49:28 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby awakenings.mail.umich.edu () with ESMTP id lBICnRh7019071;\n\tTue, 18 Dec 2007 07:49:27 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4767C1D1.D0360.4689 ; \n\t18 Dec 2007 07:49:24 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id AF49FA35C4;\n\tTue, 18 Dec 2007 12:45:51 +0000 (GMT)\nMessage-ID: <200712181248.lBICmrLP000988@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 815\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 12:45:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8B6313BECA\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 12:49:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBICmrp1000990\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 07:48:53 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBICmrLP000988\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 07:48:53 -0500\nDate: Tue, 18 Dec 2007 07:48:53 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: stephen.marquard@uct.ac.za\nSubject: [sakai] svn commit: r39417 - calendar/branches/sakai_2-5-x/calendar-impl/impl/src/java/org/sakaiproject/calendar/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 07:49:28 2007\nX-DSPAM-Confidence: 0.9815\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39417\n\nAuthor: stephen.marquard@uct.ac.za\nDate: 2007-12-18 07:48:43 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39417\n\nModified:\ncalendar/branches/sakai_2-5-x/calendar-impl/impl/src/java/org/sakaiproject/calendar/impl/BaseCalendarService.java\nLog:\nSAK-12447 Null results from cache: merge into 2-5-x\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stephen.marquard@uct.ac.za Tue Dec 18 07:49:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 07:49:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 07:49:19 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby awakenings.mail.umich.edu () with ESMTP id lBICnJxL019027;\n\tTue, 18 Dec 2007 07:49:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 4767C1C7.43923.15942 ; \n\t18 Dec 2007 07:49:14 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A38BAA35C1;\n\tTue, 18 Dec 2007 12:45:33 +0000 (GMT)\nMessage-ID: <200712181248.lBICmVn7000976@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 332\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 12:44:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DC3C03BECA\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 12:48:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBICmVP2000978\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 07:48:31 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBICmVn7000976\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 07:48:31 -0500\nDate: Tue, 18 Dec 2007 07:48:31 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: stephen.marquard@uct.ac.za\nSubject: [sakai] svn commit: r39416 - assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 07:49:19 2007\nX-DSPAM-Confidence: 0.9818\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39416\n\nAuthor: stephen.marquard@uct.ac.za\nDate: 2007-12-18 07:48:23 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39416\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nSAK-12447 Null results from cache: merge into 2-5-x\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stephen.marquard@uct.ac.za Tue Dec 18 07:49:06 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 07:49:06 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 07:49:06 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby flawless.mail.umich.edu () with ESMTP id lBICn6in029102;\n\tTue, 18 Dec 2007 07:49:06 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 4767C1BB.A0DC9.15198 ; \n\t18 Dec 2007 07:49:02 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 308F0A34D6;\n\tTue, 18 Dec 2007 12:45:14 +0000 (GMT)\nMessage-ID: <200712181248.lBICm2NW000964@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 329\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 12:44:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1A3333BECA\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 12:48:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBICm2NN000966\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 07:48:02 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBICm2NW000964\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 07:48:02 -0500\nDate: Tue, 18 Dec 2007 07:48:02 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: stephen.marquard@uct.ac.za\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 07:49:06 2007\nX-DSPAM-Confidence: 0.9811\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39415\n\nAuthor: stephen.marquard@uct.ac.za\nDate: 2007-12-18 07:47:12 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39415\n\nAdded:\nmemory/branches/sakai_2-5-x/memory-impl/impl/src/test/\nmemory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/\nmemory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/\nmemory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/\nmemory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/\nmemory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/test/\nmemory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/test/MemoryServiceTest.java\nmemory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/test/MockBasicMemoryService.java\nmemory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/test/MockEventTrackingService.java\nmemory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/test/MockSecurityService.java\nmemory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/test/MockUsageSessionService.java\nmemory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/test/ehcache.xml\nRemoved:\nmemory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/\nmemory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/\nmemory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/\nmemory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/\nmemory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/test/\nmemory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/test/MemoryServiceTest.java\nmemory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/test/MockBasicMemoryService.java\nmemory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/test/MockEventTrackingService.java\nmemory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/test/MockSecurityService.java\nmemory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/test/MockUsageSessionService.java\nmemory/branches/sakai_2-5-x/memory-impl/impl/src/test/org/sakai/memory/impl/test/ehcache.xml\nModified:\nmemory/branches/sakai_2-5-x/memory-impl/.classpath\nmemory/branches/sakai_2-5-x/memory-impl/impl/pom.xml\nmemory/branches/sakai_2-5-x/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemCache.java\nLog:\nSAK-12447 Null results from cache: merge into 2-5-x\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stephen.marquard@uct.ac.za Tue Dec 18 07:47:38 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 07:47:38 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 07:47:38 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby godsend.mail.umich.edu () with ESMTP id lBIClbZZ013550;\n\tTue, 18 Dec 2007 07:47:37 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 4767C163.33B31.3657 ; \n\t18 Dec 2007 07:47:33 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5B039A35BE;\n\tTue, 18 Dec 2007 12:44:11 +0000 (GMT)\nMessage-ID: <200712181247.lBICl1hY000952@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 975\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 12:43:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7BF583BECA\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 12:47:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBICl1qS000954\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 07:47:01 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBICl1hY000952\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 07:47:01 -0500\nDate: Tue, 18 Dec 2007 07:47:01 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: stephen.marquard@uct.ac.za\nSubject: [sakai] svn commit: r39414 - alias/branches/sakai_2-5-x/alias-impl/impl/src/java/org/sakaiproject/alias/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 07:47:38 2007\nX-DSPAM-Confidence: 0.9813\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39414\n\nAuthor: stephen.marquard@uct.ac.za\nDate: 2007-12-18 07:46:53 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39414\n\nModified:\nalias/branches/sakai_2-5-x/alias-impl/impl/src/java/org/sakaiproject/alias/impl/BaseAliasService.java\nLog:\nSAK-12447 Null results from cache: merge into 2-5-x\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stephen.marquard@uct.ac.za Tue Dec 18 06:56:24 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 06:56:24 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 06:56:24 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby brazil.mail.umich.edu () with ESMTP id lBIBuOwW018533;\n\tTue, 18 Dec 2007 06:56:24 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 4767B554.E78.19684 ; \n\t18 Dec 2007 06:56:06 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 09C85A34D5;\n\tTue, 18 Dec 2007 11:44:59 +0000 (GMT)\nMessage-ID: <200712181155.lBIBtbE2000890@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 674\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 11:44:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0DD903203B\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 11:55:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIBtbv2000892\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 06:55:37 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIBtbE2000890\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 06:55:37 -0500\nDate: Tue, 18 Dec 2007 06:55:37 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: stephen.marquard@uct.ac.za\nSubject: [sakai] svn commit: r39413 - event/branches/SAK-6216/event-impl/impl/src/java/org/sakaiproject/event/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 06:56:24 2007\nX-DSPAM-Confidence: 0.7545\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39413\n\nAuthor: stephen.marquard@uct.ac.za\nDate: 2007-12-18 06:55:27 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39413\n\nModified:\nevent/branches/SAK-6216/event-impl/impl/src/java/org/sakaiproject/event/impl/UsageSessionServiceAdaptor.java\nevent/branches/SAK-6216/event-impl/impl/src/java/org/sakaiproject/event/impl/UsageSessionServiceSqlDefault.java\nLog:\nSAK-6216 Optional ability to store client hostname (resolved IP) in SAKAI_SESSION (requires schema change)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stephen.marquard@uct.ac.za Tue Dec 18 06:55:54 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 06:55:54 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 06:55:54 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby jacknife.mail.umich.edu () with ESMTP id lBIBtsP6032244;\n\tTue, 18 Dec 2007 06:55:54 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4767B545.42EF0.24466 ; \n\t18 Dec 2007 06:55:52 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 96A93A34CC;\n\tTue, 18 Dec 2007 11:44:44 +0000 (GMT)\nMessage-ID: <200712181155.lBIBtMEu000878@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 907\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 11:44:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 30AAE3203B\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 11:55:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIBtNtR000880\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 06:55:23 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIBtMEu000878\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 06:55:22 -0500\nDate: Tue, 18 Dec 2007 06:55:22 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: stephen.marquard@uct.ac.za\nSubject: [sakai] svn commit: r39412 - event/branches/SAK-6216/event-api/api/src/java/org/sakaiproject/event/api\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 06:55:54 2007\nX-DSPAM-Confidence: 0.7541\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39412\n\nAuthor: stephen.marquard@uct.ac.za\nDate: 2007-12-18 06:55:15 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39412\n\nModified:\nevent/branches/SAK-6216/event-api/api/src/java/org/sakaiproject/event/api/UsageSession.java\nLog:\nSAK-6216 Optional ability to store client hostname (resolved IP) in SAKAI_SESSION (requires schema change)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stephen.marquard@uct.ac.za Tue Dec 18 06:51:56 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 06:51:56 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 06:51:56 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby mission.mail.umich.edu () with ESMTP id lBIBpt4c017503;\n\tTue, 18 Dec 2007 06:51:55 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 4767B44A.CE1D6.8353 ; \n\t18 Dec 2007 06:51:41 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 80810A3435;\n\tTue, 18 Dec 2007 11:40:36 +0000 (GMT)\nMessage-ID: <200712181151.lBIBpEAq000865@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 214\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 11:40:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 821F536F70\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 11:51:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIBpE9O000867\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 06:51:14 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIBpEAq000865\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 06:51:14 -0500\nDate: Tue, 18 Dec 2007 06:51:14 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: stephen.marquard@uct.ac.za\nSubject: [sakai] svn commit: r39411 - event/branches/SAK-6216/event-impl/impl/src/java/org/sakaiproject/event/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 06:51:56 2007\nX-DSPAM-Confidence: 0.9798\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39411\n\nAuthor: stephen.marquard@uct.ac.za\nDate: 2007-12-18 06:51:06 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39411\n\nModified:\nevent/branches/SAK-6216/event-impl/impl/src/java/org/sakaiproject/event/impl/UsageSessionServiceAdaptor.java\nLog:\nSAK-6216 merge r37375 from trunk (update to match 2-5-x)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stephen.marquard@uct.ac.za Tue Dec 18 06:50:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 06:50:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 06:50:02 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby fan.mail.umich.edu () with ESMTP id lBIBo1kM012185;\n\tTue, 18 Dec 2007 06:50:02 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 4767B3E0.7D875.14441 ; \n\t18 Dec 2007 06:49:55 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B684158172;\n\tTue, 18 Dec 2007 11:38:46 +0000 (GMT)\nMessage-ID: <200712181149.lBIBnPBI000853@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 38\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 11:38:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AEFFD36F70\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 11:49:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIBnPVr000855\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 06:49:25 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIBnPBI000853\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 06:49:25 -0500\nDate: Tue, 18 Dec 2007 06:49:25 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: stephen.marquard@uct.ac.za\nSubject: [sakai] svn commit: r39410 - event/branches/sakai_2-5-x/event-impl/impl/src/java/org/sakaiproject/event/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 06:50:02 2007\nX-DSPAM-Confidence: 0.9831\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39410\n\nAuthor: stephen.marquard@uct.ac.za\nDate: 2007-12-18 06:49:17 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39410\n\nModified:\nevent/branches/sakai_2-5-x/event-impl/impl/src/java/org/sakaiproject/event/impl/UsageSessionServiceAdaptor.java\nLog:\nSAK-7428 merge change to 2-5-x\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stephen.marquard@uct.ac.za Tue Dec 18 06:33:34 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 06:33:34 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 06:33:34 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby chaos.mail.umich.edu () with ESMTP id lBIBXXC8012333;\n\tTue, 18 Dec 2007 06:33:33 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4767AFE5.AD7B7.16969 ; \n\t18 Dec 2007 06:32:57 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7CCD2A3494;\n\tTue, 18 Dec 2007 11:22:01 +0000 (GMT)\nMessage-ID: <200712181132.lBIBWIcQ000827@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1020\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 11:21:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0CCA83BA52\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 11:32:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIBWIS1000829\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 06:32:18 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIBWIcQ000827\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 06:32:18 -0500\nDate: Tue, 18 Dec 2007 06:32:18 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: stephen.marquard@uct.ac.za\nSubject: [sakai] svn commit: r39409 - event/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 06:33:34 2007\nX-DSPAM-Confidence: 0.9809\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39409\n\nAuthor: stephen.marquard@uct.ac.za\nDate: 2007-12-18 06:32:09 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39409\n\nAdded:\nevent/branches/SAK-6216/\nLog:\nSAK-6216 Branch event from 2-5-x\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stephen.marquard@uct.ac.za Tue Dec 18 06:32:11 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 06:32:11 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 06:32:11 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby jacknife.mail.umich.edu () with ESMTP id lBIBWBHf026947;\n\tTue, 18 Dec 2007 06:32:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 4767AFB4.D4C2F.18086 ; \n\t18 Dec 2007 06:32:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EB7AAA345C;\n\tTue, 18 Dec 2007 11:21:10 +0000 (GMT)\nMessage-ID: <200712181131.lBIBVQNk000812@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 791\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 11:20:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9801236F70\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 11:31:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIBVQQn000814\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 06:31:26 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIBVQNk000812\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 06:31:26 -0500\nDate: Tue, 18 Dec 2007 06:31:26 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: stephen.marquard@uct.ac.za\nSubject: [sakai] svn commit: r39408 - event/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 06:32:11 2007\nX-DSPAM-Confidence: 0.8409\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39408\n\nAuthor: stephen.marquard@uct.ac.za\nDate: 2007-12-18 06:31:19 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39408\n\nRemoved:\nevent/branches/SAK-6216/\nLog:\nSAK-6216 Incorrect copy\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stephen.marquard@uct.ac.za Tue Dec 18 06:31:24 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 06:31:24 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 06:31:24 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby casino.mail.umich.edu () with ESMTP id lBIBVO1P015836;\n\tTue, 18 Dec 2007 06:31:24 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 4767AF85.359BB.12126 ; \n\t18 Dec 2007 06:31:20 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E74D6A3482;\n\tTue, 18 Dec 2007 11:20:39 +0000 (GMT)\nMessage-ID: <200712181129.lBIBTNxZ000799@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 494\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 11:20:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5D2DF36F70\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 11:29:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIBTO0g000801\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 06:29:24 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIBTNxZ000799\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 06:29:23 -0500\nDate: Tue, 18 Dec 2007 06:29:23 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: stephen.marquard@uct.ac.za\nSubject: [sakai] svn commit: r39407 - event/branches/SAK-6216\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 06:31:24 2007\nX-DSPAM-Confidence: 0.9820\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39407\n\nAuthor: stephen.marquard@uct.ac.za\nDate: 2007-12-18 06:29:11 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39407\n\nAdded:\nevent/branches/SAK-6216/sakai_2-5-x/\nLog:\nSAK-6216 Branch event from 2-5-x\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Tue Dec 18 06:30:59 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 18 Dec 2007 06:30:59 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 18 Dec 2007 06:30:59 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby score.mail.umich.edu () with ESMTP id lBIBUvC2008028;\n\tTue, 18 Dec 2007 06:30:57 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 4767AF68.12898.6028 ; \n\t18 Dec 2007 06:30:53 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 33AB1A3488;\n\tTue, 18 Dec 2007 11:20:25 +0000 (GMT)\nMessage-ID: <200712181127.lBIBRNTx000787@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 641\n          for <source@collab.sakaiproject.org>;\n          Tue, 18 Dec 2007 11:20:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C479E36F70\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 11:27:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBIBRNC7000789\n\tfor <source@collab.sakaiproject.org>; Tue, 18 Dec 2007 06:27:23 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBIBRNTx000787\n\tfor source@collab.sakaiproject.org; Tue, 18 Dec 2007 06:27:23 -0500\nDate: Tue, 18 Dec 2007 06:27:23 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39406 - citations/trunk/citations-impl/impl/src/java/org/sakaiproject/citation/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 18 06:30:59 2007\nX-DSPAM-Confidence: 0.9780\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39406\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-18 06:27:18 -0500 (Tue, 18 Dec 2007)\nNew Revision: 39406\n\nModified:\ncitations/trunk/citations-impl/impl/src/java/org/sakaiproject/citation/impl/BaseConfigurationService.java\nLog:\nSAK-12447\nReverted bad commit to citations.... sorry citations team.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Mon Dec 17 17:15:54 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 17:15:54 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 17:15:54 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby chaos.mail.umich.edu () with ESMTP id lBHMFrUa012963;\n\tMon, 17 Dec 2007 17:15:53 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 4766F508.3FE19.3677 ; \n\t17 Dec 2007 17:15:40 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 56621A292C;\n\tMon, 17 Dec 2007 22:11:44 +0000 (GMT)\nMessage-ID: <200712172213.lBHMDCse032184@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 631\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 22:10:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 40C3F35F39\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 22:13:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHMDCwX032186\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 17:13:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHMDCse032184\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 17:13:12 -0500\nDate: Mon, 17 Dec 2007 17:13:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 17:15:54 2007\nX-DSPAM-Confidence: 0.8464\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39404\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-12-17 17:13:10 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39404\n\nAdded:\ngradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/beans/\ngradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/beans/GradebookItemBean.java\ngradebook/trunk/helper-app/src/webapp/WEB-INF/bundle/\ngradebook/trunk/helper-app/src/webapp/WEB-INF/bundle/messages.properties\ngradebook/trunk/helper-app/src/webapp/content/css/gradebook.css\ngradebook/trunk/helper-app/src/webapp/content/templates/add-gradebook-item.html\nRemoved:\ngradebook/trunk/helper-app/src/webapp/content/templates/assignment_add-gradebook-item.html\nModified:\ngradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/helper/AddGradebookItemProducer.java\ngradebook/trunk/helper-app/src/webapp/WEB-INF/applicationContext.xml\ngradebook/trunk/helper-app/src/webapp/WEB-INF/requestContext.xml\nLog:\nNOJIRA - Gradebook Helper Iternationalization and styling, set up beans\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Mon Dec 17 17:12:12 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 17:12:12 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 17:12:12 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby fan.mail.umich.edu () with ESMTP id lBHMCBJi004480;\n\tMon, 17 Dec 2007 17:12:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4766F433.71F2C.2753 ; \n\t17 Dec 2007 17:12:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2148C96A17;\n\tMon, 17 Dec 2007 22:09:36 +0000 (GMT)\nMessage-ID: <200712172211.lBHMB95I032172@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 370\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 22:08:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1CAC4363A1\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 22:11:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHMB9S0032174\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 17:11:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHMB95I032172\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 17:11:09 -0500\nDate: Mon, 17 Dec 2007 17:11:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [sakai] svn commit: r39403 - gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 17:12:12 2007\nX-DSPAM-Confidence: 0.8465\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39403\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-12-17 17:11:08 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39403\n\nModified:\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java\nLog:\nSAK-12504\nhttp://jira.sakaiproject.org/jira/browse/SAK-12504\nViewing \"All Grades\" page as a TA with grader permissions causes stack trace\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom arwhyte@umich.edu Mon Dec 17 17:00:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 17:00:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 17:00:02 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby jacknife.mail.umich.edu () with ESMTP id lBHM01bg013735;\n\tMon, 17 Dec 2007 17:00:01 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 4766F15B.F237A.10733 ; \n\t17 Dec 2007 16:59:58 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id AF94AA20CB;\n\tMon, 17 Dec 2007 22:00:22 +0000 (GMT)\nMessage-ID: <200712172159.lBHLxYfi032150@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 953\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 22:00:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1AF9935FED\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 21:59:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHLxYg4032152\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 16:59:35 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHLxYfi032150\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 16:59:34 -0500\nDate: Mon, 17 Dec 2007 16:59:34 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: arwhyte@umich.edu\nSubject: [sakai] svn commit: r39402 - component/trunk/component-api/component/src/config/org/sakaiproject/config\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 17:00:02 2007\nX-DSPAM-Confidence: 0.9853\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39402\n\nAuthor: arwhyte@umich.edu\nDate: 2007-12-17 16:59:30 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39402\n\nModified:\ncomponent/trunk/component-api/component/src/config/org/sakaiproject/config/sakai.properties\nLog:\nSAK-12481 Re-stealthed sakai.site.roster.  Never promoted to core.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom arwhyte@umich.edu Mon Dec 17 16:56:03 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 16:56:03 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 16:56:03 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby mission.mail.umich.edu () with ESMTP id lBHLtomt020764;\n\tMon, 17 Dec 2007 16:55:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 4766F05E.80E9E.10816 ; \n\t17 Dec 2007 16:55:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BE214A272B;\n\tMon, 17 Dec 2007 21:53:02 +0000 (GMT)\nMessage-ID: <200712172155.lBHLtLbL032138@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 34\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 21:52:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9EC1135FED\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 21:55:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHLtLvB032140\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 16:55:21 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHLtLbL032138\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 16:55:21 -0500\nDate: Mon, 17 Dec 2007 16:55:21 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: arwhyte@umich.edu\nSubject: [sakai] svn commit: r39401 - component/branches/sakai_2-5-x/component-api/component/src/config/org/sakaiproject/config\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 16:56:03 2007\nX-DSPAM-Confidence: 0.9849\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39401\n\nAuthor: arwhyte@umich.edu\nDate: 2007-12-17 16:55:10 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39401\n\nModified:\ncomponent/branches/sakai_2-5-x/component-api/component/src/config/org/sakaiproject/config/sakai.properties\nLog:\nSAK-12481 Re-stealth sakai.site.roster.  Never promoted to core.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom louis@media.berkeley.edu Mon Dec 17 16:41:05 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 16:41:05 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 16:41:05 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby casino.mail.umich.edu () with ESMTP id lBHLf4jl006248;\n\tMon, 17 Dec 2007 16:41:04 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 4766ECE8.67B1B.17185 ; \n\t17 Dec 2007 16:41:00 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B16B8A27BD;\n\tMon, 17 Dec 2007 21:41:20 +0000 (GMT)\nMessage-ID: <200712172140.lBHLeNqR032119@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 403\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 21:40:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C20113B1F4\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 21:40:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHLeNdG032121\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 16:40:23 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHLeNqR032119\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 16:40:23 -0500\nDate: Mon, 17 Dec 2007 16:40:23 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: louis@media.berkeley.edu\nSubject: [sakai] svn commit: r39400 - bspace/assignment/post-2-4/assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 16:41:05 2007\nX-DSPAM-Confidence: 0.6934\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39400\n\nAuthor: louis@media.berkeley.edu\nDate: 2007-12-17 16:40:20 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39400\n\nModified:\nbspace/assignment/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_new_edit_assignment.vm\nLog:\nBSP-1376 apllied local customization to assignment tool done earlier in BSP 1259\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Mon Dec 17 16:34:16 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 16:34:16 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 16:34:16 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby flawless.mail.umich.edu () with ESMTP id lBHLYF2i000643;\n\tMon, 17 Dec 2007 16:34:15 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4766EB3D.CEC58.5996 ; \n\t17 Dec 2007 16:33:52 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0CF9EA2790;\n\tMon, 17 Dec 2007 21:34:11 +0000 (GMT)\nMessage-ID: <200712172133.lBHLXR25032067@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 228\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 21:33:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AD49E3AC85\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 21:33:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHLXRVB032069\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 16:33:27 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHLXR25032067\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 16:33:27 -0500\nDate: Mon, 17 Dec 2007 16:33:27 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 16:34:16 2007\nX-DSPAM-Confidence: 0.8470\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39399\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-17 16:33:12 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39399\n\nAdded:\nuser/branches/sakai_2-5-x/user-tool-prefs/tool/src/webapp/css/\nuser/branches/sakai_2-5-x/user-tool-prefs/tool/src/webapp/css/useDHTMLMore.css\nuser/branches/sakai_2-5-x/user-tool-prefs/tool/src/webapp/prefs/tab-dhtml-moresites.jsp\nRemoved:\nuser/branches/sakai_2-5-x/user-tool-prefs/tool/src/webapp/css/useDHTMLMore.css\nModified:\nuser/branches/sakai_2-5-x/user-tool-prefs/tool/src/bundle/user-tool-prefs.properties\nuser/branches/sakai_2-5-x/user-tool-prefs/tool/src/java/org/sakaiproject/user/tool/UserPrefsTool.java\nuser/branches/sakai_2-5-x/user-tool-prefs/tool/src/webapp/WEB-INF/faces-config.xml\nLog:\nSAK-11460\nMerged from trunk\nsvn merge -r 39288:39289 https://source.sakaiproject.org/svn/user/trunk\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Mon Dec 17 16:30:05 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 16:30:05 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 16:30:05 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby score.mail.umich.edu () with ESMTP id lBHLU47U020914;\n\tMon, 17 Dec 2007 16:30:04 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 4766EA56.7D495.3680 ; \n\t17 Dec 2007 16:30:01 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1C840A276E;\n\tMon, 17 Dec 2007 21:30:22 +0000 (GMT)\nMessage-ID: <200712172129.lBHLTaWd032027@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 503\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 21:30:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 849A13AC85\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 21:29:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHLTas7032029\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 16:29:36 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHLTaWd032027\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 16:29:36 -0500\nDate: Mon, 17 Dec 2007 16:29:36 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [sakai] svn commit: r39398 - gradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 16:30:05 2007\nX-DSPAM-Confidence: 0.8482\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39398\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-12-17 16:29:35 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39398\n\nModified:\ngradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java\nLog:\nSAK-10606\nhttp://bugs.sakaiproject.org/jira/browse/SAK-10606\nGB authorization error in logs when student accesses Forums\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Mon Dec 17 16:20:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 16:20:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 16:20:51 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby mission.mail.umich.edu () with ESMTP id lBHLKohc001615;\n\tMon, 17 Dec 2007 16:20:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 4766E82D.116A9.1965 ; \n\t17 Dec 2007 16:20:47 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2E70BA1831;\n\tMon, 17 Dec 2007 21:21:07 +0000 (GMT)\nMessage-ID: <200712172120.lBHLKHTG032004@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 779\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 21:20:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C39BE3AD1F\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 21:20:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHLKHPX032006\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 16:20:17 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHLKHTG032004\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 16:20:17 -0500\nDate: Mon, 17 Dec 2007 16:20:17 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [sakai] svn commit: r39397 - msgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 16:20:51 2007\nX-DSPAM-Confidence: 0.9853\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39397\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-12-17 16:20:16 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39397\n\nModified:\nmsgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums/DiscussionForumTool.java\nLog:\nSAK-10606\nhttp://bugs.sakaiproject.org/jira/browse/SAK-10606\nGB authorization error in logs when student accesses Forums\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gsilver@umich.edu Mon Dec 17 16:04:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 16:04:53 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 16:04:53 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby brazil.mail.umich.edu () with ESMTP id lBHL4qHh002872;\n\tMon, 17 Dec 2007 16:04:52 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4766E465.5ED8C.13788 ; \n\t17 Dec 2007 16:04:43 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5330F5DDE4;\n\tMon, 17 Dec 2007 21:05:00 +0000 (GMT)\nMessage-ID: <200712172104.lBHL4CIM031960@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 226\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 21:04:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2693031ECF\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 21:04:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHL4D8w031962\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 16:04:13 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHL4CIM031960\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 16:04:12 -0500\nDate: Mon, 17 Dec 2007 16:04:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gsilver@umich.edu\nSubject: [sakai] svn commit: r39396 - site/trunk/site-impl/impl/src/java/org/sakaiproject/site/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 16:04:53 2007\nX-DSPAM-Confidence: 0.9836\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39396\n\nAuthor: gsilver@umich.edu\nDate: 2007-12-17 16:04:10 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39396\n\nModified:\nsite/trunk/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSiteService.java\nLog:\nSAK-12441\nhttp://jira.sakaiproject.org/jira/browse/SAK-12441\nreclaim bit of whitespace for wsiteinfo display\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Mon Dec 17 15:38:59 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 15:38:59 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 15:38:59 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby panther.mail.umich.edu () with ESMTP id lBHKcwbh007758;\n\tMon, 17 Dec 2007 15:38:58 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 4766DE53.3E035.6777 ; \n\t17 Dec 2007 15:38:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4A6C8A26CE;\n\tMon, 17 Dec 2007 20:38:44 +0000 (GMT)\nMessage-ID: <200712172038.lBHKc5CF031921@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 263\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 20:38:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 817C13155F\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 20:38:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHKc55V031923\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 15:38:05 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHKc5CF031921\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 15:38:05 -0500\nDate: Mon, 17 Dec 2007 15:38:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [sakai] svn commit: r39395 - gradebook/branches/oncourse_opc_122007/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 15:38:59 2007\nX-DSPAM-Confidence: 0.9895\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39395\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-12-17 15:38:04 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39395\n\nModified:\ngradebook/branches/oncourse_opc_122007/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\nLog:\nsvn merge -r39392:39393 https://source.sakaiproject.org/svn/gradebook/trunk\nU    app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\n\n------------------------------------------------------------------------\nr39393 | wagnermr@iupui.edu | 2007-12-17 15:20:23 -0500 (Mon, 17 Dec 2007) | 3 lines\n\nSAK-12494\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12494\nViewing a non-calculated gb item in a gradebook with grade entry by letter or % results in stack trace\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Mon Dec 17 15:28:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 15:28:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 15:28:02 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby casino.mail.umich.edu () with ESMTP id lBHKS1bD029555;\n\tMon, 17 Dec 2007 15:28:01 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 4766DBBC.85926.27124 ; \n\t17 Dec 2007 15:27:43 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3C2E8A246C;\n\tMon, 17 Dec 2007 20:27:44 +0000 (GMT)\nMessage-ID: <200712172027.lBHKRAZ5031900@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 5\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 20:27:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0C95631EE4\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 20:27:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHKRATv031902\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 15:27:10 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHKRAZ5031900\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 15:27:10 -0500\nDate: Mon, 17 Dec 2007 15:27:10 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39394 - site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 15:28:02 2007\nX-DSPAM-Confidence: 0.8494\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39394\n\nAuthor: zqian@umich.edu\nDate: 2007-12-17 15:27:08 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39394\n\nModified:\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-groupedit.vm\nLog:\nFix to SAK-12476:Setting a section/group title longer than 99 chars causes an error\n\nSet the maxlength attribute for the group title input field.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Mon Dec 17 15:20:58 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 15:20:58 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 15:20:58 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby sleepers.mail.umich.edu () with ESMTP id lBHKKvYW020296;\n\tMon, 17 Dec 2007 15:20:57 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4766DA23.CB17A.14584 ; \n\t17 Dec 2007 15:20:54 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 53ACCA09ED;\n\tMon, 17 Dec 2007 20:20:54 +0000 (GMT)\nMessage-ID: <200712172020.lBHKKOV4031888@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 596\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 20:20:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 681FE1D647\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 20:20:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHKKOwZ031890\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 15:20:24 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHKKOV4031888\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 15:20:24 -0500\nDate: Mon, 17 Dec 2007 15:20:24 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [sakai] svn commit: r39393 - gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 15:20:58 2007\nX-DSPAM-Confidence: 0.9860\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39393\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-12-17 15:20:23 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39393\n\nModified:\ngradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\nLog:\nSAK-12494\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12494\nViewing a non-calculated gb item in a gradebook with grade entry by letter or % results in stack trace\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stuart.freeman@et.gatech.edu Mon Dec 17 15:18:47 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 15:18:47 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 15:18:47 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby panther.mail.umich.edu () with ESMTP id lBHKIgiH026876;\n\tMon, 17 Dec 2007 15:18:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 4766D99C.AE3B1.2487 ; \n\t17 Dec 2007 15:18:39 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 65DECA262F;\n\tMon, 17 Dec 2007 20:18:39 +0000 (GMT)\nMessage-ID: <200712172018.lBHKIHwo031873@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 691\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 20:18:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E74AA1D647\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 20:18:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHKIHc3031875\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 15:18:18 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHKIHwo031873\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 15:18:17 -0500\nDate: Mon, 17 Dec 2007 15:18:17 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: stuart.freeman@et.gatech.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 15:18:47 2007\nX-DSPAM-Confidence: 0.9883\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39392\n\nAuthor: stuart.freeman@et.gatech.edu\nDate: 2007-12-17 15:18:13 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39392\n\nModified:\nosp/branches/sakai_2-4-x/common/api-impl/src/java/org/theospi/portfolio/review/impl/ReviewManagerImpl.java\nosp/branches/sakai_2-4-x/common/api-impl/src/java/org/theospi/portfolio/shared/model/impl/GenericXmlRenderer.java\nosp/branches/sakai_2-4-x/common/api/src/java/org/theospi/portfolio/review/mgt/ReviewManager.java\nosp/branches/sakai_2-4-x/matrix/api-impl/src/java/org/theospi/portfolio/matrix/HibernateMatrixManagerImpl.java\nLog:\nSAK-12467 performance issues when portfolios contain a matrix\n\n--(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\npatching file common/api-impl/src/java/org/theospi/portfolio/review/impl/ReviewManagerImpl.java\npatching file common/api-impl/src/java/org/theospi/portfolio/shared/model/impl/GenericXmlRenderer.java\npatching file common/api/src/java/org/theospi/portfolio/review/mgt/ReviewManager.java\npatching file matrix/api-impl/src/java/org/theospi/portfolio/matrix/HibernateMatrixManagerImpl.java\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Mon Dec 17 15:14:24 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 15:14:24 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 15:14:24 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby brazil.mail.umich.edu () with ESMTP id lBHKENYm004506;\n\tMon, 17 Dec 2007 15:14:23 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4766D899.4B1EC.15241 ; \n\t17 Dec 2007 15:14:20 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C3B63A09ED;\n\tMon, 17 Dec 2007 20:14:19 +0000 (GMT)\nMessage-ID: <200712172013.lBHKDtHX031853@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 381\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 20:14:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0CD85212D8\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 20:14:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHKDudY031855\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 15:13:56 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHKDtHX031853\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 15:13:56 -0500\nDate: Mon, 17 Dec 2007 15:13:56 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39391 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 15:14:24 2007\nX-DSPAM-Confidence: 0.8432\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39391\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-17 15:13:55 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39391\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdate externals for citation.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Dec 17 14:23:58 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 14:23:58 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 14:23:58 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby chaos.mail.umich.edu () with ESMTP id lBHJNuBC015672;\n\tMon, 17 Dec 2007 14:23:56 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 4766CCC1.158B1.30477 ; \n\t17 Dec 2007 14:23:47 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 63BE6A2417;\n\tMon, 17 Dec 2007 19:23:44 +0000 (GMT)\nMessage-ID: <200712171923.lBHJNMQk031792@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 999\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 19:23:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 93C2E3AD5F\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 19:23:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHJNMt9031794\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 14:23:22 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHJNMQk031792\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 14:23:22 -0500\nDate: Mon, 17 Dec 2007 14:23:22 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r39390 - calendar/branches/sakai_2-5-x/calendar-impl/impl/src/java/org/sakaiproject/calendar/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 14:23:58 2007\nX-DSPAM-Confidence: 0.7617\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39390\n\nAuthor: mmmay@indiana.edu\nDate: 2007-12-17 14:23:21 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39390\n\nModified:\ncalendar/branches/sakai_2-5-x/calendar-impl/impl/src/java/org/sakaiproject/calendar/impl/BaseCalendarService.java\nLog:\nsvn merge -r 39289:39290 https://source.sakaiproject.org/svn/calendar/trunk\nU    calendar-impl/impl/src/java/org/sakaiproject/calendar/impl/BaseCalendarService.java\nin-143-196:~/java/2-5/sakai_2-5-x/calendar mmmay$ svn log -r 39289:39290 https://source.sakaiproject.org/svn/calendar/trunk\n------------------------------------------------------------------------\nr39290 | bkirschn@umich.edu | 2007-12-14 16:16:09 -0500 (Fri, 14 Dec 2007) | 1 line\n\nSAK-12221 check for null range parm in getEvents()\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Dec 17 14:21:29 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 14:21:29 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 14:21:29 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby flawless.mail.umich.edu () with ESMTP id lBHJLSOo022303;\n\tMon, 17 Dec 2007 14:21:28 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4766CC32.AA992.3207 ; \n\t17 Dec 2007 14:21:25 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A4CBBA2417;\n\tMon, 17 Dec 2007 19:21:23 +0000 (GMT)\nMessage-ID: <200712171921.lBHJL6ZP031778@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 312\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 19:21:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1127C35FB5\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 19:21:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHJL6oK031780\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 14:21:06 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHJL6ZP031778\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 14:21:06 -0500\nDate: Mon, 17 Dec 2007 14:21:06 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 14:21:29 2007\nX-DSPAM-Confidence: 0.7611\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39389\n\nAuthor: mmmay@indiana.edu\nDate: 2007-12-17 14:21:03 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39389\n\nModified:\nosp/branches/sakai_2-5-x/common/api-impl/src/java/org/theospi/portfolio/review/impl/ReviewManagerImpl.java\nosp/branches/sakai_2-5-x/common/api-impl/src/java/org/theospi/portfolio/shared/model/impl/GenericXmlRenderer.java\nosp/branches/sakai_2-5-x/common/api/src/java/org/theospi/portfolio/review/mgt/ReviewManager.java\nosp/branches/sakai_2-5-x/matrix/api-impl/src/java/org/theospi/portfolio/matrix/HibernateMatrixManagerImpl.java\nLog:\nsvn merge -r 39285:39286 https://source.sakaiproject.org/svn/osp/trunk\nU    common/api-impl/src/java/org/theospi/portfolio/review/impl/ReviewManagerImpl.java\nU    common/api-impl/src/java/org/theospi/portfolio/shared/model/impl/GenericXmlRenderer.java\nU    common/api/src/java/org/theospi/portfolio/review/mgt/ReviewManager.java\nU    matrix/api-impl/src/java/org/theospi/portfolio/matrix/HibernateMatrixManagerImpl.java\nin-143-196:~/java/2-5/sakai_2-5-x/osp mmmay$ svn log -r 39285:39286 https://source.sakaiproject.org/svn/osp/trunk\n------------------------------------------------------------------------\nr39286 | jbush@rsmart.com | 2007-12-14 15:39:41 -0500 (Fri, 14 Dec 2007) | 1 line\n\nSAK-12467\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ssmail@indiana.edu Mon Dec 17 14:20:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 14:20:43 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 14:20:43 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby chaos.mail.umich.edu () with ESMTP id lBHJKgv3013883;\n\tMon, 17 Dec 2007 14:20:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 4766CBEF.D76B2.30898 ; \n\t17 Dec 2007 14:20:20 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5157BA2025;\n\tMon, 17 Dec 2007 19:20:16 +0000 (GMT)\nMessage-ID: <200712171919.lBHJJtr2031760@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 69\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 19:20:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D105435FB5\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 19:20:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHJJugV031762\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 14:19:56 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHJJtr2031760\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 14:19:55 -0500\nDate: Mon, 17 Dec 2007 14:19:55 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ssmail@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ssmail@indiana.edu\nSubject: [sakai] svn commit: r39388 - citations/branches/oncourse_2-4-x/oncourse-config/config/src/java/edu/indiana/osid/oncourse\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 14:20:43 2007\nX-DSPAM-Confidence: 0.7569\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39388\n\nAuthor: ssmail@indiana.edu\nDate: 2007-12-17 14:19:54 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39388\n\nModified:\ncitations/branches/oncourse_2-4-x/oncourse-config/config/src/java/edu/indiana/osid/oncourse/CampusAssociation.java\ncitations/branches/oncourse_2-4-x/oncourse-config/config/src/java/edu/indiana/osid/oncourse/OncourseOsidConfiguration.java\nLog:\nNOJIRA: 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)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Mon Dec 17 14:19:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 14:19:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 14:19:51 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby awakenings.mail.umich.edu () with ESMTP id lBHJJopO000948;\n\tMon, 17 Dec 2007 14:19:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4766CBCC.971B.6754 ; \n\t17 Dec 2007 14:19:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 85255A2595;\n\tMon, 17 Dec 2007 19:19:40 +0000 (GMT)\nMessage-ID: <200712171919.lBHJJC6Y031748@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 754\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 19:19:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CB15035FB5\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 19:19:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHJJD1U031750\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 14:19:13 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHJJC6Y031748\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 14:19:12 -0500\nDate: Mon, 17 Dec 2007 14:19:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39387 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 14:19:51 2007\nX-DSPAM-Confidence: 0.9825\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39387\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-17 14:19:11 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39387\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdate external for r39383.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Dec 17 14:19:49 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 14:19:49 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 14:19:49 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby jacknife.mail.umich.edu () with ESMTP id lBHJJmVQ026277;\n\tMon, 17 Dec 2007 14:19:48 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4766CBCB.4F3DB.12516 ; \n\t17 Dec 2007 14:19:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C4B2EA2594;\n\tMon, 17 Dec 2007 19:19:39 +0000 (GMT)\nMessage-ID: <200712171919.lBHJJBZL031736@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 259\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 19:19:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0921035FB5\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 19:19:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHJJBji031738\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 14:19:11 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHJJBZL031736\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 14:19:11 -0500\nDate: Mon, 17 Dec 2007 14:19:11 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 14:19:49 2007\nX-DSPAM-Confidence: 0.6566\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39386\n\nAuthor: mmmay@indiana.edu\nDate: 2007-12-17 14:19:09 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39386\n\nAdded:\nentitybroker/branches/sakai_2-5-x/api/src/java/org/sakaiproject/entitybroker/util/\nentitybroker/branches/sakai_2-5-x/api/src/java/org/sakaiproject/entitybroker/util/ClassLoaderReporter.java\nRemoved:\nentitybroker/branches/sakai_2-5-x/api/src/java/org/sakaiproject/entitybroker/util/ClassLoaderReporter.java\nModified:\nentitybroker/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/entitybroker/servlet/DirectServlet.java\nLog:\nsvn merge -r 39098:39099 https://source.sakaiproject.org/svn/entitybroker/trunk\nA    api/src/java/org/sakaiproject/entitybroker/util\nA    api/src/java/org/sakaiproject/entitybroker/util/ClassLoaderReporter.java\nU    tool/src/java/org/sakaiproject/entitybroker/servlet/DirectServlet.java\nin-143-196:~/java/2-5/sakai_2-5-x/entitybroker mmmay$ svn log -r 39098:39099 https://source.sakaiproject.org/svn/entitybroker/trunk\n------------------------------------------------------------------------\nr39099 | aaronz@vt.edu | 2007-12-11 02:52:59 -0500 (Tue, 11 Dec 2007) | 1 line\n\nSAK-12408: Completed fix for the failures caused by classloader confusion, also added in ability for the direct servlet to handle all types of requests\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Dec 17 14:18:31 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 14:18:31 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 14:18:31 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby casino.mail.umich.edu () with ESMTP id lBHJIUJA024074;\n\tMon, 17 Dec 2007 14:18:30 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 4766CB7E.AFEE5.17100 ; \n\t17 Dec 2007 14:18:25 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B66BBA201B;\n\tMon, 17 Dec 2007 19:18:19 +0000 (GMT)\nMessage-ID: <200712171917.lBHJHuEv031712@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 10\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 19:18:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 93CFC35FB5\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 19:18:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHJHuAI031714\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 14:17:56 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHJHuEv031712\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 14:17:56 -0500\nDate: Mon, 17 Dec 2007 14:17:56 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r39385 - in entitybroker/branches/sakai_2-5-x: impl tool/src/java/org/sakaiproject/entitybroker/servlet\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 14:18:31 2007\nX-DSPAM-Confidence: 0.7005\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39385\n\nAuthor: mmmay@indiana.edu\nDate: 2007-12-17 14:17:55 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39385\n\nModified:\nentitybroker/branches/sakai_2-5-x/impl/pom.xml\nentitybroker/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/entitybroker/servlet/DirectServlet.java\nLog:\nsvn merge -r 39085:39086 https://source.sakaiproject.org/svn/entitybroker/trunk\nU    impl/pom.xml\nU    tool/src/java/org/sakaiproject/entitybroker/servlet/DirectServlet.java\nin-143-196:~/java/2-5/sakai_2-5-x/entitybroker mmmay$ svn log -r 39085:39086 https://source.sakaiproject.org/svn/entitybroker/trunk\n------------------------------------------------------------------------\nr39086 | aaronz@vt.edu | 2007-12-10 13:26:21 -0500 (Mon, 10 Dec 2007) | 1 line\n\nSAK-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\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Mon Dec 17 14:15:18 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 14:15:18 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 14:15:18 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby casino.mail.umich.edu () with ESMTP id lBHJFIPv022228;\n\tMon, 17 Dec 2007 14:15:18 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 4766CAC0.4BB3.32343 ; \n\t17 Dec 2007 14:15:14 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E28F1A2590;\n\tMon, 17 Dec 2007 19:15:12 +0000 (GMT)\nMessage-ID: <200712171914.lBHJEsIv031654@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 667\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 19:15:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 57BC035FB5\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 19:14:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHJEsxS031656\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 14:14:54 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHJEsIv031654\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 14:14:54 -0500\nDate: Mon, 17 Dec 2007 14:14:54 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39384 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 14:15:18 2007\nX-DSPAM-Confidence: 0.9832\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39384\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-17 14:14:53 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39384\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdate external to bump up to r39379.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Mon Dec 17 14:14:55 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 14:14:55 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 14:14:55 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby panther.mail.umich.edu () with ESMTP id lBHJEsR4021625;\n\tMon, 17 Dec 2007 14:14:54 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 4766CAA7.94EB3.15170 ; \n\t17 Dec 2007 14:14:50 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9130FA258D;\n\tMon, 17 Dec 2007 19:14:48 +0000 (GMT)\nMessage-ID: <200712171914.lBHJERsY031642@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 904\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 19:14:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 711BF35FB5\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 19:14:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHJERCj031644\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 14:14:27 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHJERsY031642\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 14:14:27 -0500\nDate: Mon, 17 Dec 2007 14:14:27 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 14:14:55 2007\nX-DSPAM-Confidence: 0.9894\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39383\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-12-17 14:14:25 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39383\n\nModified:\ngradebook/branches/oncourse_opc_122007/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\ngradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/jsf/AssignmentPointsConverter.java\ngradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentDetailsBean.java\ngradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/ViewByStudentBean.java\nLog:\nsvn merge -r39373:39374 https://source.sakaiproject.org/svn/gradebook/trunk \nU    app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\nU    app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentDetailsBean.java\nU    app/ui/src/java/org/sakaiproject/tool/gradebook/ui/ViewByStudentBean.java\n\n------------------------------------------------------------------------\nr39374 | wagnermr@iupui.edu | 2007-12-17 11:56:03 -0500 (Mon, 17 Dec 2007) | 3 lines\n\nSAK-10067\nhttp://jira.sakaiproject.org/jira/browse/SAK-10067\nChange Grade log to just keep a record of data entered w/o conversion\n------------------------------------------------------------------------\n\nsvn merge -r39361:39362 https://source.sakaiproject.org/svn/gradebook/trunk\nU    app/ui/src/java/org/sakaiproject/tool/gradebook/jsf/AssignmentPointsConverter.java\n\n------------------------------------------------------------------------\nr39362 | rjlowe@iupui.edu | 2007-12-17 10:53:09 -0500 (Mon, 17 Dec 2007) | 1 line\n\nSAK-12465 - Non-Standard grades are not showing up in GB table\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Mon Dec 17 14:12:16 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 14:12:16 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 14:12:16 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby mission.mail.umich.edu () with ESMTP id lBHJCF54024674;\n\tMon, 17 Dec 2007 14:12:15 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 4766CA0A.176C.376 ; \n\t17 Dec 2007 14:12:12 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 28790A1875;\n\tMon, 17 Dec 2007 19:12:09 +0000 (GMT)\nMessage-ID: <200712171911.lBHJBmue031615@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 537\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 19:11:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B9AE93AECC\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 19:11:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHJBnu5031617\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 14:11:49 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHJBmue031615\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 14:11:48 -0500\nDate: Mon, 17 Dec 2007 14:11:48 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r39382 - gradebook/trunk/app/ui/src/webapp/js\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 14:12:16 2007\nX-DSPAM-Confidence: 0.8434\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39382\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-12-17 14:11:47 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39382\n\nModified:\ngradebook/trunk/app/ui/src/webapp/js/spreadsheetUI.js\nLog:\nSAK-12491 - gb / all grades column alignment\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Mon Dec 17 13:37:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 13:37:50 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 13:37:50 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby chaos.mail.umich.edu () with ESMTP id lBHIboRh022497;\n\tMon, 17 Dec 2007 13:37:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 4766C1F8.3AD17.25099 ; \n\t17 Dec 2007 13:37:47 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 71C4E9BCC6;\n\tMon, 17 Dec 2007 18:34:44 +0000 (GMT)\nMessage-ID: <200712171837.lBHIbFXH031487@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 457\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 18:34:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D928434F6B\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 18:37:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHIbFBW031489\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 13:37:15 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHIbFXH031487\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 13:37:15 -0500\nDate: Mon, 17 Dec 2007 13:37:15 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r39381 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 13:37:50 2007\nX-DSPAM-Confidence: 0.9861\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39381\n\nAuthor: dlhaines@umich.edu\nDate: 2007-12-17 13:37:13 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39381\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties\nLog:\nCTools: update assignments conversion for 2.4.xQ\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jlrenfro@ucdavis.edu Mon Dec 17 13:34:32 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 13:34:32 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 13:34:32 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby score.mail.umich.edu () with ESMTP id lBHIYVY5019884;\n\tMon, 17 Dec 2007 13:34:31 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 4766C131.9C24A.14786 ; \n\t17 Dec 2007 13:34:28 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 74F439C6FA;\n\tMon, 17 Dec 2007 18:31:23 +0000 (GMT)\nMessage-ID: <200712171833.lBHIXhim031476@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 608\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 18:30:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0F5C434F6B\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 18:33:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHIXhji031478\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 13:33:43 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHIXhim031476\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 13:33:43 -0500\nDate: Mon, 17 Dec 2007 13:33:43 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jlrenfro@ucdavis.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jlrenfro@ucdavis.edu\nSubject: [contrib] svn commit: r44317 - scorm/SCORM.2004.3ED.RTE/trunk/scorm-impl/service/src/java/org/sakaiproject/scorm/service/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 13:34:32 2007\nX-DSPAM-Confidence: 0.7567\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn?root=contrib&view=rev&rev=44317\n\nAuthor: jlrenfro@ucdavis.edu\nDate: 2007-12-17 13:33:40 -0500 (Mon, 17 Dec 2007)\nNew Revision: 44317\n\nModified:\nscorm/SCORM.2004.3ED.RTE/trunk/scorm-impl/service/src/java/org/sakaiproject/scorm/service/impl/ScormContentServiceImpl.java\nLog:\nSCO-8\n\nFixing null pointer exception with getDueOn and getAcceptUntil.\n\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Mon Dec 17 13:31:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 13:31:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 13:31:25 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby flawless.mail.umich.edu () with ESMTP id lBHIVOmJ022205;\n\tMon, 17 Dec 2007 13:31:25 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 4766C067.5059A.26406 ; \n\t17 Dec 2007 13:31:06 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A2491A2463;\n\tMon, 17 Dec 2007 18:28:03 +0000 (GMT)\nMessage-ID: <200712171830.lBHIUVNb031450@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 459\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 18:27:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 32D9A34F6B\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 18:30:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHIUV7D031452\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 13:30:31 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHIUVNb031450\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 13:30:31 -0500\nDate: Mon, 17 Dec 2007 13:30:31 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39379 - gradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 13:31:25 2007\nX-DSPAM-Confidence: 0.9819\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39379\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-17 13:30:30 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39379\n\nModified:\ngradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/ViewByStudentBean.java\nLog:\nSAK-12486 => svn merge -r39375:39376 https://source.sakaiproject.org/svn/gradebook/trunk\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Mon Dec 17 13:31:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 13:31:13 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 13:31:13 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby jacknife.mail.umich.edu () with ESMTP id lBHIVDsI000386;\n\tMon, 17 Dec 2007 13:31:13 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 4766C06B.22267.16277 ; \n\t17 Dec 2007 13:31:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EB95AA246D;\n\tMon, 17 Dec 2007 18:28:09 +0000 (GMT)\nMessage-ID: <200712171830.lBHIUd5R031462@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 483\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 18:27:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 66F2334F6B\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 18:30:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHIUdpC031464\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 13:30:39 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHIUd5R031462\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 13:30:39 -0500\nDate: Mon, 17 Dec 2007 13:30:39 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39380 - in assignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion: api impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 13:31:13 2007\nX-DSPAM-Confidence: 0.9875\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39380\n\nAuthor: zqian@umich.edu\nDate: 2007-12-17 13:30:36 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39380\n\nModified:\nassignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/SchemaConversionHandler.java\nassignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/CombineDuplicateSubmissionsConversionHandler.java\nassignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/RemoveDuplicateSubmissionsConversionHandler.java\nassignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SubmitterIdAssignmentsConversionHandler.java\nassignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/UpgradeSchema.java\nLog:\nrelated to SAK-11281:\n\ncombine any instance of submit/feedback text or attachment from all duplicated submissions;\n\npass the db driver string into the above routine so as to use different xml write operation in case of MySql db.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom arwhyte@umich.edu Mon Dec 17 13:17:08 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 13:17:08 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 13:17:08 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby chaos.mail.umich.edu () with ESMTP id lBHIH7Ve011486;\n\tMon, 17 Dec 2007 13:17:07 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 4766BD1A.D7649.15900 ; \n\t17 Dec 2007 13:17:04 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 63C1CA0993;\n\tMon, 17 Dec 2007 18:13:25 +0000 (GMT)\nMessage-ID: <200712171805.lBHI51Pl031427@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 718\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 18:02:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6438735C8C\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 18:05:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHI518g031429\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 13:05:01 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHI51Pl031427\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 13:05:01 -0500\nDate: Mon, 17 Dec 2007 13:05:01 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: arwhyte@umich.edu\nSubject: [sakai] svn commit: r39378 - reference/branches/sakai_2-5-x/docs/architecture\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 13:17:08 2007\nX-DSPAM-Confidence: 0.9863\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39378\n\nAuthor: arwhyte@umich.edu\nDate: 2007-12-17 13:04:59 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39378\n\nRemoved:\nreference/branches/sakai_2-5-x/docs/architecture/sakai_maven.doc\nLog:\nSAK-12490 remove obsolete architecture docs: sakai_maven.doc\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Mon Dec 17 12:29:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 12:29:53 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 12:29:53 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby brazil.mail.umich.edu () with ESMTP id lBHHTqMl011786;\n\tMon, 17 Dec 2007 12:29:52 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4766B20A.5C7EB.23715 ; \n\t17 Dec 2007 12:29:49 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DABBE9A3B8;\n\tMon, 17 Dec 2007 17:29:56 +0000 (GMT)\nMessage-ID: <200712171729.lBHHTQui031364@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 440\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 17:29:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DBA2131B25\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 17:29:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHHTQs2031366\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 12:29:26 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHHTQui031364\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 12:29:26 -0500\nDate: Mon, 17 Dec 2007 12:29:26 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39377 - in gradebook/branches/oncourse_opc_122007/app/ui/src: bundle/org/sakaiproject/tool/gradebook/bundle webapp/inc webapp/js\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 12:29:53 2007\nX-DSPAM-Confidence: 0.9829\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39377\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-17 12:29:24 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39377\n\nModified:\ngradebook/branches/oncourse_opc_122007/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties\ngradebook/branches/oncourse_opc_122007/app/ui/src/webapp/inc/bulkNewItems.jspf\ngradebook/branches/oncourse_opc_122007/app/ui/src/webapp/js/multiItemAdd.js\nLog:\nSAK-12466 svn merge -r39334:39335 https://source.sakaiproject.org/svn/gradebook/trunk\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Mon Dec 17 12:17:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 12:17:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 12:17:25 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby chaos.mail.umich.edu () with ESMTP id lBHHHNtW013002;\n\tMon, 17 Dec 2007 12:17:23 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 4766AF18.E5FDA.27792 ; \n\t17 Dec 2007 12:17:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B319E5856E;\n\tMon, 17 Dec 2007 17:17:22 +0000 (GMT)\nMessage-ID: <200712171716.lBHHGjnN031320@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 682\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 17:16:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1F46031E10\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 17:16:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHHGj4W031322\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 12:16:45 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHHGjnN031320\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 12:16:45 -0500\nDate: Mon, 17 Dec 2007 12:16:45 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39376 - gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 12:17:25 2007\nX-DSPAM-Confidence: 0.8471\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39376\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-17 12:16:42 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39376\n\nModified:\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/ViewByStudentBean.java\nLog:\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12486\n=>\ninclude non-graded items for grade report page and\nstudent view page.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom nuno@ufp.pt Mon Dec 17 12:07:00 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 12:07:00 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 12:07:00 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby godsend.mail.umich.edu () with ESMTP id lBHH6xbP017498;\n\tMon, 17 Dec 2007 12:06:59 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 4766ACA9.57FB5.30104 ; \n\t17 Dec 2007 12:06:52 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8D6399B877;\n\tMon, 17 Dec 2007 17:06:53 +0000 (GMT)\nMessage-ID: <200712171706.lBHH6Fgd031285@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 895\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 17:06:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2CED835FAC\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 17:06:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHH6FRS031287\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 12:06:15 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHH6Fgd031285\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 12:06:15 -0500\nDate: Mon, 17 Dec 2007 12:06:15 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f\nTo: source@collab.sakaiproject.org\nFrom: nuno@ufp.pt\nSubject: [sakai] svn commit: r39375 - msgcntr/trunk/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 12:07:00 2007\nX-DSPAM-Confidence: 0.9778\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39375\n\nAuthor: nuno@ufp.pt\nDate: 2007-12-17 12:06:10 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39375\n\nModified:\nmsgcntr/trunk/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages_pt_PT.properties\nLog:\nSAK-12044: Add Portuguese translation\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Mon Dec 17 11:56:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 11:56:50 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 11:56:50 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby fan.mail.umich.edu () with ESMTP id lBHGunCe003669;\n\tMon, 17 Dec 2007 11:56:49 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 4766AA3C.D8300.10452 ; \n\t17 Dec 2007 11:56:31 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EECAA722C5;\n\tMon, 17 Dec 2007 16:53:59 +0000 (GMT)\nMessage-ID: <200712171656.lBHGu5ct031261@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 293\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 16:53:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3E4BF3ABD2\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 16:56:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHGu54V031263\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 11:56:05 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHGu5ct031261\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 11:56:05 -0500\nDate: Mon, 17 Dec 2007 11:56:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 11:56:50 2007\nX-DSPAM-Confidence: 0.9839\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39374\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-12-17 11:56:03 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39374\n\nModified:\ngradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentDetailsBean.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/ViewByStudentBean.java\nLog:\nSAK-10067\nhttp://jira.sakaiproject.org/jira/browse/SAK-10067\nChange Grade log to just keep a record of data entered w/o conversion\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Mon Dec 17 11:52:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 11:52:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 11:52:30 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby fan.mail.umich.edu () with ESMTP id lBHGqThF001426;\n\tMon, 17 Dec 2007 11:52:29 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4766A93F.6D688.3033 ; \n\t17 Dec 2007 11:52:20 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5FEC7A2348;\n\tMon, 17 Dec 2007 16:50:04 +0000 (GMT)\nMessage-ID: <200712171650.lBHGoCkO031225@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 0\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 16:49:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CC8DB3A93E\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 16:50:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHGoClg031227\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 11:50:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHGoCkO031225\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 11:50:12 -0500\nDate: Mon, 17 Dec 2007 11:50:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39372 - citations/trunk/citations-impl/impl/src/java/org/sakaiproject/citation/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 11:52:30 2007\nX-DSPAM-Confidence: 0.9822\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39372\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-17 11:50:08 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39372\n\nModified:\ncitations/trunk/citations-impl/impl/src/java/org/sakaiproject/citation/impl/BaseConfigurationService.java\nLog:\nSAK-12447 Fixed possible failures in retrieving values from the Cache\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Mon Dec 17 11:52:21 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 11:52:21 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 11:52:21 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby jacknife.mail.umich.edu () with ESMTP id lBHGqKt0011756;\n\tMon, 17 Dec 2007 11:52:20 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 4766A93D.60D17.14217 ; \n\t17 Dec 2007 11:52:16 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5E381A1281;\n\tMon, 17 Dec 2007 16:50:02 +0000 (GMT)\nMessage-ID: <200712171650.lBHGoYqi031237@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 393\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 16:49:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 544503A990\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 16:50:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHGoYHY031239\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 11:50:34 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHGoYqi031237\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 11:50:34 -0500\nDate: Mon, 17 Dec 2007 11:50:34 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39373 - message/trunk/message-impl/impl/src/java/org/sakaiproject/message/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 11:52:21 2007\nX-DSPAM-Confidence: 0.9817\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39373\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-17 11:50:30 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39373\n\nModified:\nmessage/trunk/message-impl/impl/src/java/org/sakaiproject/message/impl/BaseMessageService.java\nLog:\nSAK-12447 Fixed possible failures in retrieving values from the Cache\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Mon Dec 17 11:51:47 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 11:51:47 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 11:51:47 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby brazil.mail.umich.edu () with ESMTP id lBHGpi1m022660;\n\tMon, 17 Dec 2007 11:51:44 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 4766A91A.71DB5.10007 ; \n\t17 Dec 2007 11:51:41 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 23608A23DE;\n\tMon, 17 Dec 2007 16:49:10 +0000 (GMT)\nMessage-ID: <200712171649.lBHGngHq031213@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 653\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 16:48:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BD7D83A939\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 16:49:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHGngBB031215\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 11:49:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHGngHq031213\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 11:49:42 -0500\nDate: Mon, 17 Dec 2007 11:49:42 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39371 - calendar/trunk/calendar-impl/impl/src/java/org/sakaiproject/calendar/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 11:51:47 2007\nX-DSPAM-Confidence: 0.9822\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39371\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-17 11:49:38 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39371\n\nModified:\ncalendar/trunk/calendar-impl/impl/src/java/org/sakaiproject/calendar/impl/BaseCalendarService.java\nLog:\nSAK-12447 Fixed possible failures in retrieving values from the Cache\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Mon Dec 17 11:49:46 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 11:49:46 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 11:49:46 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby brazil.mail.umich.edu () with ESMTP id lBHGnjAG020959;\n\tMon, 17 Dec 2007 11:49:45 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4766A87D.9330D.7439 ; \n\t17 Dec 2007 11:49:04 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E4DFCA1281;\n\tMon, 17 Dec 2007 16:47:55 +0000 (GMT)\nMessage-ID: <200712171648.lBHGmWMo031201@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 284\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 16:47:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 751CA3A867\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 16:48:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHGmXrd031203\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 11:48:33 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHGmWMo031201\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 11:48:32 -0500\nDate: Mon, 17 Dec 2007 11:48:32 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39370 - assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 11:49:46 2007\nX-DSPAM-Confidence: 0.9830\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39370\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-17 11:48:28 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39370\n\nModified:\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nSAK-12447 Fixed possible failures in retrieving values from the Cache\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom nuno@ufp.pt Mon Dec 17 11:48:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 11:48:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 11:48:19 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby sleepers.mail.umich.edu () with ESMTP id lBHGmJdE028405;\n\tMon, 17 Dec 2007 11:48:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4766A84D.28B6D.10070 ; \n\t17 Dec 2007 11:48:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2456BA23D2;\n\tMon, 17 Dec 2007 16:46:58 +0000 (GMT)\nMessage-ID: <200712171647.lBHGlMRd031176@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 256\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 16:45:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5BAAA3A820\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 16:47:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHGlMKq031178\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 11:47:22 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHGlMRd031176\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 11:47:22 -0500\nDate: Mon, 17 Dec 2007 11:47:22 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f\nTo: source@collab.sakaiproject.org\nFrom: nuno@ufp.pt\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 11:48:19 2007\nX-DSPAM-Confidence: 0.9805\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39368\n\nAuthor: nuno@ufp.pt\nDate: 2007-12-17 11:46:54 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39368\n\nAdded:\nsam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_pt_PT.properties\nsam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_pt_PT.properties\nsam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport_pt_PT.properties\nsam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_pt_PT.properties\nsam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_pt_PT.properties\nsam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_pt_PT.properties\nsam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_pt_PT.properties\nsam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_pt_PT.properties\nsam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_pt_PT.properties\nsam/trunk/samigo-services/src/java/org/sakaiproject/tool/assessment/bundle/Messages_pt_PT.properties\nLog:\nSAK-12044: Add Portuguese translation\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Mon Dec 17 11:48:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 11:48:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 11:48:17 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby casino.mail.umich.edu () with ESMTP id lBHGmGTU026058;\n\tMon, 17 Dec 2007 11:48:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 4766A84B.8B90.27980 ; \n\t17 Dec 2007 11:48:13 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 90BD2A23D7;\n\tMon, 17 Dec 2007 16:46:56 +0000 (GMT)\nMessage-ID: <200712171647.lBHGlZWv031188@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 883\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 16:46:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A3A853A820\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 16:47:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHGlZIi031190\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 11:47:35 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHGlZWv031188\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 11:47:35 -0500\nDate: Mon, 17 Dec 2007 11:47:35 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39369 - alias/trunk/alias-impl/impl/src/java/org/sakaiproject/alias/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 11:48:17 2007\nX-DSPAM-Confidence: 0.8434\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39369\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-17 11:47:30 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39369\n\nModified:\nalias/trunk/alias-impl/impl/src/java/org/sakaiproject/alias/impl/BaseAliasService.java\nLog:\nSAK-12447 Fixed possible failures in retrieving values from the Cache\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Mon Dec 17 11:47:49 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 11:47:49 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 11:47:49 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby faithful.mail.umich.edu () with ESMTP id lBHGlkY6005795;\n\tMon, 17 Dec 2007 11:47:46 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4766A82B.F1D30.9429 ; \n\t17 Dec 2007 11:47:42 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id AA09DA23D1;\n\tMon, 17 Dec 2007 16:46:03 +0000 (GMT)\nMessage-ID: <200712171646.lBHGkZms031164@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 800\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 16:45:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3C8843A7E1\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 16:46:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHGkZ5J031166\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 11:46:35 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHGkZms031164\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 11:46:35 -0500\nDate: Mon, 17 Dec 2007 11:46:35 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39367 - in memory/trunk/memory-impl/impl/src: java/org/sakaiproject/memory/impl test/org/sakai/memory/impl/test\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 11:47:49 2007\nX-DSPAM-Confidence: 0.9823\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39367\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-17 11:46:25 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39367\n\nModified:\nmemory/trunk/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemCache.java\nmemory/trunk/memory-impl/impl/src/test/org/sakai/memory/impl/test/MemoryServiceTest.java\nLog:\nSAK-12447\nFixed cacheContainsKey Method and added long running unit test to reproduce\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Mon Dec 17 11:45:33 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 11:45:33 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 11:45:33 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby godsend.mail.umich.edu () with ESMTP id lBHGjWGr006966;\n\tMon, 17 Dec 2007 11:45:32 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 4766A79E.91309.20600 ; \n\t17 Dec 2007 11:45:28 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B513DA232F;\n\tMon, 17 Dec 2007 16:44:12 +0000 (GMT)\nMessage-ID: <200712171644.lBHGinPU031152@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 445\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 16:43:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 96E423A7D8\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 16:44:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHGinkF031154\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 11:44:49 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHGinPU031152\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 11:44:49 -0500\nDate: Mon, 17 Dec 2007 11:44:49 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 11:45:33 2007\nX-DSPAM-Confidence: 0.8469\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39366\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-17 11:44:47 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39366\n\nAdded:\ngradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/jsf/NonGradedValueValidator.java\nModified:\ngradebook/branches/oncourse_opc_122007/app/sakai-tool/src/webapp/WEB-INF/faces-application.xml\ngradebook/branches/oncourse_opc_122007/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties\ngradebook/branches/oncourse_opc_122007/app/ui/src/webapp/assignmentDetails.jsp\nLog:\nSAK-12485 => svn merge -r39364:39365 https://source.sakaiproject.org/svn/gradebook/trunk\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Mon Dec 17 11:38:15 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 11:38:15 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 11:38:15 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby score.mail.umich.edu () with ESMTP id lBHGcE5Z020969;\n\tMon, 17 Dec 2007 11:38:14 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4766A5E7.E28F2.14657 ; \n\t17 Dec 2007 11:38:02 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 142ECA23A1;\n\tMon, 17 Dec 2007 16:36:58 +0000 (GMT)\nMessage-ID: <200712171637.lBHGba3h031140@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 619\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 16:36:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 20DB63A624\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 16:37:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHGbab9031142\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 11:37:36 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHGba3h031140\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 11:37:36 -0500\nDate: Mon, 17 Dec 2007 11:37:36 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 11:38:15 2007\nX-DSPAM-Confidence: 0.9864\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39365\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-17 11:37:34 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39365\n\nAdded:\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/jsf/NonGradedValueValidator.java\nModified:\ngradebook/trunk/app/sakai-tool/src/webapp/WEB-INF/faces-application.xml\ngradebook/trunk/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties\ngradebook/trunk/app/ui/src/webapp/assignmentDetails.jsp\nLog:\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12485\n=>\nadd validation for non-graded grades.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom arwhyte@umich.edu Mon Dec 17 11:12:38 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 11:12:38 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 11:12:38 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby mission.mail.umich.edu () with ESMTP id lBHGCbgK017524;\n\tMon, 17 Dec 2007 11:12:37 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 47669FF0.1F9DF.4144 ; \n\t17 Dec 2007 11:12:34 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 13C1EA21DB;\n\tMon, 17 Dec 2007 16:12:29 +0000 (GMT)\nMessage-ID: <200712171612.lBHGCBX0031082@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 81\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 16:12:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DAF0EB115\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 16:12:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHGCBF2031084\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 11:12:11 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHGCBX0031082\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 11:12:11 -0500\nDate: Mon, 17 Dec 2007 11:12:11 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: arwhyte@umich.edu\nSubject: [sakai] svn commit: r39364 - component/branches/sakai_2-5-x/component-api/component/src/config/org/sakaiproject/config\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 11:12:38 2007\nX-DSPAM-Confidence: 0.8482\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39364\n\nAuthor: arwhyte@umich.edu\nDate: 2007-12-17 11:12:09 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39364\n\nModified:\ncomponent/branches/sakai_2-5-x/component-api/component/src/config/org/sakaiproject/config/sakai.properties\nLog:\nSAK-12481 Removed sakai.site.roster from list of stealthed tools controlled by the stealthTools property in sakai.properties\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom arwhyte@umich.edu Mon Dec 17 11:10:05 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 11:10:05 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 11:10:05 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby flawless.mail.umich.edu () with ESMTP id lBHGA4Ig008671;\n\tMon, 17 Dec 2007 11:10:04 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 47669F54.7411C.19115 ; \n\t17 Dec 2007 11:09:59 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 95A4BA21D1;\n\tMon, 17 Dec 2007 16:09:49 +0000 (GMT)\nMessage-ID: <200712171609.lBHG9X1J031067@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 782\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 16:09:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 53C7A35EB2\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 16:09:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHG9Ysl031069\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 11:09:34 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHG9X1J031067\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 11:09:33 -0500\nDate: Mon, 17 Dec 2007 11:09:33 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: arwhyte@umich.edu\nSubject: [sakai] svn commit: r39363 - component/trunk/component-api/component/src/config/org/sakaiproject/config\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 11:10:05 2007\nX-DSPAM-Confidence: 0.8479\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39363\n\nAuthor: arwhyte@umich.edu\nDate: 2007-12-17 11:09:31 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39363\n\nModified:\ncomponent/trunk/component-api/component/src/config/org/sakaiproject/config/sakai.properties\nLog:\nSAK-12481 Removed sakai.site.roster from list of stealthed tools controlled by the stealthTools property in sakai.properties\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Mon Dec 17 10:53:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 10:53:50 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 10:53:50 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby awakenings.mail.umich.edu () with ESMTP id lBHFrn42009064;\n\tMon, 17 Dec 2007 10:53:49 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 47669B86.BDE0E.23053 ; \n\t17 Dec 2007 10:53:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 935D2A21D1;\n\tMon, 17 Dec 2007 15:53:40 +0000 (GMT)\nMessage-ID: <200712171553.lBHFrAfL031006@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 825\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 15:53:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E75073AA2F\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 15:53:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHFrA4J031008\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 10:53:10 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHFrAfL031006\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 10:53:10 -0500\nDate: Mon, 17 Dec 2007 10:53:10 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r39362 - gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/jsf\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 10:53:50 2007\nX-DSPAM-Confidence: 0.9821\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39362\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-12-17 10:53:09 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39362\n\nModified:\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/jsf/AssignmentPointsConverter.java\nLog:\nSAK-12465 - Non-Standard grades are not showing up in GB table\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Mon Dec 17 10:00:58 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 10:00:58 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 10:00:58 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby score.mail.umich.edu () with ESMTP id lBHF0vEH032259;\n\tMon, 17 Dec 2007 10:00:57 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 47668F22.A236F.17322 ; \n\t17 Dec 2007 10:00:53 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D02DEA215F;\n\tMon, 17 Dec 2007 15:00:49 +0000 (GMT)\nMessage-ID: <200712171500.lBHF0Pwi030990@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 834\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 15:00:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 650263A9EA\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 15:00:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHF0P0I030992\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 10:00:25 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHF0Pwi030990\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 10:00:25 -0500\nDate: Mon, 17 Dec 2007 10:00:25 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 10:00:58 2007\nX-DSPAM-Confidence: 0.7620\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39361\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-12-17 10:00:22 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39361\n\nModified:\ngradebook/branches/sakai_2-5-x/app/sakai-tool/src/webapp/WEB-INF/spring-facades.xml\ngradebook/branches/sakai_2-5-x/app/standalone-app/src/webapp/WEB-INF/spring-facades.xml\ngradebook/branches/sakai_2-5-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/GradebookDependentBean.java\ngradebook/branches/sakai_2-5-x/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookPermissionService.java\ngradebook/branches/sakai_2-5-x/service/api/src/java/org/sakaiproject/tool/gradebook/facades/Authz.java\ngradebook/branches/sakai_2-5-x/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookPermissionServiceImpl.java\ngradebook/branches/sakai_2-5-x/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java\ngradebook/branches/sakai_2-5-x/service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sections/AuthzSectionsImpl.java\ngradebook/branches/sakai_2-5-x/service/sakai-pack/src/webapp/WEB-INF/components.xml\nLog:\nsvn merge -r39137:39138 https://source.sakaiproject.org/svn/gradebook/trunk\nU    app/sakai-tool/src/webapp/WEB-INF/spring-facades.xml\nU    app/standalone-app/src/webapp/WEB-INF/spring-facades.xml\nU    app/ui/src/java/org/sakaiproject/tool/gradebook/ui/GradebookDependentBean.java\nC    service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java\nU    service/impl/src/java/org/sakaiproject/component/gradebook/GradebookPermissionServiceImpl.java\nU    service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sections/AuthzSectionsImpl.java\nU    service/sakai-pack/src/webapp/WEB-INF/components.xml\nU    service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookPermissionService.java\nU    service/api/src/java/org/sakaiproject/tool/gradebook/facades/Authz.java\n\n------------------------------------------------------------------------\nr39138 | wagnermr@iupui.edu | 2007-12-12 10:10:30 -0500 (Wed, 12 Dec 2007) | 3 lines\n\nSAK-12432\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12432\nCircular dependency between GradebookService and facade Authz\n------------------------------------------------------------------------\n\nsvn merge -r39184:39185 https://source.sakaiproject.org/svn/gradebook/trunk\nG    service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sections/AuthzSectionsImpl.java\n\n------------------------------------------------------------------------\nr39185 | wagnermr@iupui.edu | 2007-12-13 09:29:44 -0500 (Thu, 13 Dec 2007) | 4 lines\n\nSAK-12432\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12432\nCircular dependency between GradebookService and facade Authz\nfixed class cast exception\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Mon Dec 17 09:36:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 09:36:13 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 09:36:13 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby brazil.mail.umich.edu () with ESMTP id lBHEaCl2009637;\n\tMon, 17 Dec 2007 09:36:12 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 47668956.C2665.3805 ; \n\t17 Dec 2007 09:36:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 80254A20B5;\n\tMon, 17 Dec 2007 14:36:05 +0000 (GMT)\nMessage-ID: <200712171435.lBHEZjnl030970@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 323\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 14:35:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5132C3A9A9\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 14:35:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHEZjuc030972\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 09:35:45 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHEZjnl030970\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 09:35:45 -0500\nDate: Mon, 17 Dec 2007 09:35:45 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r39360 - oncourse/trunk/src/calendar/calendar-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 09:36:13 2007\nX-DSPAM-Confidence: 0.9811\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39360\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-17 09:35:44 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39360\n\nModified:\noncourse/trunk/src/calendar/calendar-tool/tool/src/bundle/calendar.properties\nLog:\noncourse overlay property for calendar\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom nuno@ufp.pt Mon Dec 17 09:23:44 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 09:23:44 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 09:23:44 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby faithful.mail.umich.edu () with ESMTP id lBHENhku025670;\n\tMon, 17 Dec 2007 09:23:43 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 47668665.8A91F.24858 ; \n\t17 Dec 2007 09:23:36 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 62CA19BACF;\n\tMon, 17 Dec 2007 14:23:34 +0000 (GMT)\nMessage-ID: <200712171422.lBHEMvTW030956@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 371\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 14:23:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 232323A996\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 14:23:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHEMwrM030958\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 09:22:58 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHEMvTW030956\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 09:22:57 -0500\nDate: Mon, 17 Dec 2007 09:22:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f\nTo: source@collab.sakaiproject.org\nFrom: nuno@ufp.pt\nSubject: [sakai] svn commit: r39359 - assignment/trunk/assignment-bundles\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 09:23:44 2007\nX-DSPAM-Confidence: 0.9790\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39359\n\nAuthor: nuno@ufp.pt\nDate: 2007-12-17 09:22:52 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39359\n\nAdded:\nassignment/trunk/assignment-bundles/assignment_pt_PT.properties\nLog:\nSAK-12044: Add Portuguese translation\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Mon Dec 17 09:20:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 09:20:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 09:20:51 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby mission.mail.umich.edu () with ESMTP id lBHEKoTG018304;\n\tMon, 17 Dec 2007 09:20:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 476685AB.98232.14764 ; \n\t17 Dec 2007 09:20:42 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A869FA0CE2;\n\tMon, 17 Dec 2007 14:20:26 +0000 (GMT)\nMessage-ID: <200712171420.lBHEK76M030944@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 542\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 14:20:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0A47D35EDC\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 14:20:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHEK7N0030946\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 09:20:07 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHEK76M030944\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 09:20:07 -0500\nDate: Mon, 17 Dec 2007 09:20:07 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [sakai] svn commit: r39358 - gradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 09:20:51 2007\nX-DSPAM-Confidence: 0.9853\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39358\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-12-17 09:20:06 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39358\n\nModified:\ngradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java\nLog:\nSAK-12175\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12175\nCreate methods required for gb integration with the Assignment2 tool\nRe-adding methods to API that were lost in a previous commit\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Mon Dec 17 08:56:39 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 08:56:39 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 08:56:39 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby sleepers.mail.umich.edu () with ESMTP id lBHDucId029621;\n\tMon, 17 Dec 2007 08:56:38 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 47668007.A5FD2.8272 ; \n\t17 Dec 2007 08:56:36 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 368A1A1EE7;\n\tMon, 17 Dec 2007 13:56:20 +0000 (GMT)\nMessage-ID: <200712171356.lBHDu3rF030883@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 496\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 13:56:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5D6F335ECF\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 13:56:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHDu3Hr030885\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 08:56:03 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHDu3rF030883\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 08:56:03 -0500\nDate: Mon, 17 Dec 2007 08:56:03 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39357 - oncourse/trunk/overlay/sakai/org.sakaiproject.citation\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 08:56:39 2007\nX-DSPAM-Confidence: 0.9836\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39357\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-17 08:56:02 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39357\n\nModified:\noncourse/trunk/overlay/sakai/org.sakaiproject.citation/IUPUI-configuration.xml\nLog:\nget IUPUI configuration back.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Mon Dec 17 08:32:45 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 08:32:45 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 08:32:45 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby panther.mail.umich.edu () with ESMTP id lBHDWjcH019273;\n\tMon, 17 Dec 2007 08:32:45 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 47667A75.1F6ED.15011 ; \n\t17 Dec 2007 08:32:39 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C5B7FA0527;\n\tMon, 17 Dec 2007 13:32:39 +0000 (GMT)\nMessage-ID: <200712171332.lBHDWHN1030833@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 785\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 13:32:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3B42734C0F\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 13:32:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHDWIef030835\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 08:32:18 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHDWHN1030833\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 08:32:17 -0500\nDate: Mon, 17 Dec 2007 08:32:17 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39356 - search/trunk/search-impl/pack/src/webapp/WEB-INF\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 08:32:45 2007\nX-DSPAM-Confidence: 0.9807\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39356\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-17 08:32:13 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39356\n\nModified:\nsearch/trunk/search-impl/pack/src/webapp/WEB-INF/parallelIndexComponents.xml\nLog:\nSAK-12459\nthreadLocalManager setting in the wrong bean.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Mon Dec 17 08:27:11 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 08:27:11 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 08:27:11 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby brazil.mail.umich.edu () with ESMTP id lBHDRBJH012135;\n\tMon, 17 Dec 2007 08:27:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 4766792A.4880E.11754 ; \n\t17 Dec 2007 08:27:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DFBA5A2063;\n\tMon, 17 Dec 2007 13:27:09 +0000 (GMT)\nMessage-ID: <200712171326.lBHDQdDZ030819@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 343\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 13:26:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A883534C0F\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 13:26:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHDQd2j030821\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 08:26:39 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHDQdDZ030819\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 08:26:39 -0500\nDate: Mon, 17 Dec 2007 08:26:39 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39355 - oncourse/trunk/overlay/sakai/org.sakaiproject.citation\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 08:27:11 2007\nX-DSPAM-Confidence: 0.9850\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39355\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-17 08:26:38 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39355\n\nAdded:\noncourse/trunk/overlay/sakai/org.sakaiproject.citation/IUPUI-database.xml\nModified:\noncourse/trunk/overlay/sakai/org.sakaiproject.citation/IUPUI-configuration.xml\nLog:\nupdate overlay for citation for IUPUI library.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Mon Dec 17 08:18:14 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 08:18:14 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 08:18:14 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby godsend.mail.umich.edu () with ESMTP id lBHDIDLT031685;\n\tMon, 17 Dec 2007 08:18:13 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 4766770D.711C4.24336 ; \n\t17 Dec 2007 08:18:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8093EA1C23;\n\tMon, 17 Dec 2007 13:17:58 +0000 (GMT)\nMessage-ID: <200712171317.lBHDHak9030806@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 516\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 13:17:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 015693A99C\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 13:17:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHDHa16030808\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 08:17:36 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHDHak9030806\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 08:17:36 -0500\nDate: Mon, 17 Dec 2007 08:17:36 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39354 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 08:18:14 2007\nX-DSPAM-Confidence: 0.9824\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39354\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-17 08:17:35 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39354\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdate external for r39332. Greg - calendar fix.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Mon Dec 17 06:08:47 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 06:08:47 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 06:08:47 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby mission.mail.umich.edu () with ESMTP id lBHB8j2j019608;\n\tMon, 17 Dec 2007 06:08:45 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 476658B6.E4D19.10421 ; \n\t17 Dec 2007 06:08:42 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8CA65A1DFB;\n\tMon, 17 Dec 2007 11:08:37 +0000 (GMT)\nMessage-ID: <200712171108.lBHB8E6L030538@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 782\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 11:08:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AB4043A7D5\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 11:08:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHB8ENt030540\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 06:08:14 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHB8E6L030538\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 06:08:14 -0500\nDate: Mon, 17 Dec 2007 06:08:14 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39353 - search/trunk/search-impl/impl/src/test/org/sakaiproject/search/mock\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 06:08:47 2007\nX-DSPAM-Confidence: 0.9816\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39353\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-17 06:08:08 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39353\n\nAdded:\nsearch/trunk/search-impl/impl/src/test/org/sakaiproject/search/mock/MockThreadLocalManager.java\nLog:\nSAK-12459\nMissing class fpor unit tests\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Mon Dec 17 05:20:55 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 05:20:55 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 05:20:55 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby sleepers.mail.umich.edu () with ESMTP id lBHAKr68031737;\n\tMon, 17 Dec 2007 05:20:53 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 47664D75.610DF.25841 ; \n\t17 Dec 2007 05:20:40 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1E50CA1CCA;\n\tMon, 17 Dec 2007 10:20:40 +0000 (GMT)\nMessage-ID: <200712171020.lBHAKGVn030505@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 897\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 10:20:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D59112F8EF\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 10:20:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBHAKGh6030507\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 05:20:16 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBHAKGVn030505\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 05:20:16 -0500\nDate: Mon, 17 Dec 2007 05:20:16 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 05:20:55 2007\nX-DSPAM-Confidence: 0.9843\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39352\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-17 05:20:01 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39352\n\nAdded:\nmemory/trunk/memory-impl/impl/src/test/\nmemory/trunk/memory-impl/impl/src/test/org/\nmemory/trunk/memory-impl/impl/src/test/org/sakai/\nmemory/trunk/memory-impl/impl/src/test/org/sakai/memory/\nmemory/trunk/memory-impl/impl/src/test/org/sakai/memory/impl/\nmemory/trunk/memory-impl/impl/src/test/org/sakai/memory/impl/test/\nmemory/trunk/memory-impl/impl/src/test/org/sakai/memory/impl/test/MemoryServiceTest.java\nmemory/trunk/memory-impl/impl/src/test/org/sakai/memory/impl/test/MockBasicMemoryService.java\nmemory/trunk/memory-impl/impl/src/test/org/sakai/memory/impl/test/MockEventTrackingService.java\nmemory/trunk/memory-impl/impl/src/test/org/sakai/memory/impl/test/MockSecurityService.java\nmemory/trunk/memory-impl/impl/src/test/org/sakai/memory/impl/test/MockUsageSessionService.java\nmemory/trunk/memory-impl/impl/src/test/org/sakai/memory/impl/test/ehcache.xml\nModified:\nmemory/trunk/memory-impl/.classpath\nmemory/trunk/memory-impl/impl/pom.xml\nLog:\nSAK-12447\n\nAdded Unit Test to memory service to check invalidation process,\nno errors found in test.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Mon Dec 17 04:37:09 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 04:37:09 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 04:37:10 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby score.mail.umich.edu () with ESMTP id lBH9b82B032206;\n\tMon, 17 Dec 2007 04:37:08 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 47664332.CC122.24391 ; \n\t17 Dec 2007 04:36:53 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7B6345130C;\n\tMon, 17 Dec 2007 09:36:48 +0000 (GMT)\nMessage-ID: <200712170936.lBH9aCfD030471@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 597\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 09:36:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 66A3031B5D\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 09:36:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBH9aD4R030473\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 04:36:13 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBH9aCfD030471\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 04:36:13 -0500\nDate: Mon, 17 Dec 2007 04:36:13 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39351 - in gradebook/trunk/helper-app/src: java/org/sakaiproject/gradebook/tool/helper webapp/WEB-INF\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 04:37:09 2007\nX-DSPAM-Confidence: 0.8419\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39351\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-12-17 04:36:03 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39351\n\nModified:\ngradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/helper/AddGradebookItemProducer.java\ngradebook/trunk/helper-app/src/webapp/WEB-INF/web.xml\nLog:\nNOJIRA Works with the entity broker now.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom arwhyte@umich.edu Mon Dec 17 00:25:08 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 00:25:08 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 00:25:08 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby jacknife.mail.umich.edu () with ESMTP id lBH5P8tT028662;\n\tMon, 17 Dec 2007 00:25:08 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 4766082E.CB2B5.29478 ; \n\t17 Dec 2007 00:25:05 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 37EF3A180A;\n\tMon, 17 Dec 2007 05:24:56 +0000 (GMT)\nMessage-ID: <200712170524.lBH5Od1f029849@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 614\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 05:24:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CDE3535A2A\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 05:24:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBH5Od2H029851\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 00:24:40 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBH5Od1f029849\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 00:24:39 -0500\nDate: Mon, 17 Dec 2007 00:24:39 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: arwhyte@umich.edu\nSubject: [sakai] svn commit: r39350 - component/trunk/component-api/component/src/config/org/sakaiproject/config\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 00:25:08 2007\nX-DSPAM-Confidence: 0.8482\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39350\n\nAuthor: arwhyte@umich.edu\nDate: 2007-12-17 00:24:36 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39350\n\nModified:\ncomponent/trunk/component-api/component/src/config/org/sakaiproject/config/sakai.properties\nLog:\nstealhTools: removed duplicate sakai.site.roster entry; reordered list in alpha order\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom arwhyte@umich.edu Mon Dec 17 00:23:26 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 00:23:26 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 00:23:26 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby score.mail.umich.edu () with ESMTP id lBH5NPhU014160;\n\tMon, 17 Dec 2007 00:23:25 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 476607C0.1F1EA.31759 ; \n\t17 Dec 2007 00:23:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 40FB3A181A;\n\tMon, 17 Dec 2007 05:22:50 +0000 (GMT)\nMessage-ID: <200712170522.lBH5MFMD029831@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 988\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 05:22:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BD04D399B4\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 05:22:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBH5MFRG029833\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 00:22:15 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBH5MFMD029831\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 00:22:15 -0500\nDate: Mon, 17 Dec 2007 00:22:15 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: arwhyte@umich.edu\nSubject: [sakai] svn commit: r39349 - component/branches/sakai_2-5-x/component-api/component/src/config/org/sakaiproject/config\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 00:23:26 2007\nX-DSPAM-Confidence: 0.8487\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39349\n\nAuthor: arwhyte@umich.edu\nDate: 2007-12-17 00:22:13 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39349\n\nModified:\ncomponent/branches/sakai_2-5-x/component-api/component/src/config/org/sakaiproject/config/sakai.properties\nLog:\nSAK-12257 incorrect stealthed tools in 2-5-x branch; unstealthed OSP and Samigo, removed sakai.assignment (retired), reordered list in alpha order.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zach.thomas@txstate.edu Mon Dec 17 00:02:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 17 Dec 2007 00:02:37 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 17 Dec 2007 00:02:37 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby score.mail.umich.edu () with ESMTP id lBH52aMP008828;\n\tMon, 17 Dec 2007 00:02:36 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 476602E7.7F6F8.3806 ; \n\t17 Dec 2007 00:02:34 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7A8486F106;\n\tMon, 17 Dec 2007 05:02:35 +0000 (GMT)\nMessage-ID: <200712170502.lBH529PE029810@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 216\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 05:02:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 84A0E3560B\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 05:02:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBH52912029812\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 00:02:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBH529PE029810\n\tfor source@collab.sakaiproject.org; Mon, 17 Dec 2007 00:02:09 -0500\nDate: Mon, 17 Dec 2007 00:02:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zach.thomas@txstate.edu\nSubject: [sakai] svn commit: r39348 - content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 17 00:02:37 2007\nX-DSPAM-Confidence: 0.9827\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39348\n\nAuthor: zach.thomas@txstate.edu\nDate: 2007-12-17 00:02:06 -0500 (Mon, 17 Dec 2007)\nNew Revision: 39348\n\nModified:\ncontent/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\nLog:\nremoved referencs to Criterion and ConditionTemplate, which aren't ready for inclusion\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zach.thomas@txstate.edu Sun Dec 16 23:50:58 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 16 Dec 2007 23:50:58 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 16 Dec 2007 23:50:58 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby flawless.mail.umich.edu () with ESMTP id lBH4ovtD028026;\n\tSun, 16 Dec 2007 23:50:57 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 4766002C.9C22C.14978 ; \n\t16 Dec 2007 23:50:55 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8A3ADA1781;\n\tMon, 17 Dec 2007 04:50:20 +0000 (GMT)\nMessage-ID: <200712170449.lBH4nHS6029790@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 746\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 04:49:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 639703560B\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 04:49:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBH4nHh4029792\n\tfor <source@collab.sakaiproject.org>; Sun, 16 Dec 2007 23:49:17 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBH4nHS6029790\n\tfor source@collab.sakaiproject.org; Sun, 16 Dec 2007 23:49:17 -0500\nDate: Sun, 16 Dec 2007 23:49:17 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zach.thomas@txstate.edu\nSubject: [sakai] svn commit: r39347 - event/branches/SAK-12478/event-api/api/src/java/org/sakaiproject/event/api\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Dec 16 23:50:58 2007\nX-DSPAM-Confidence: 0.8432\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39347\n\nAuthor: zach.thomas@txstate.edu\nDate: 2007-12-16 23:49:14 -0500 (Sun, 16 Dec 2007)\nNew Revision: 39347\n\nAdded:\nevent/branches/SAK-12478/event-api/api/src/java/org/sakaiproject/event/api/Obsoletable.java\nLog:\nadded Obsoletable interface to the event module\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zach.thomas@txstate.edu Sun Dec 16 23:07:56 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 16 Dec 2007 23:07:56 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 16 Dec 2007 23:07:56 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby awakenings.mail.umich.edu () with ESMTP id lBH47tQP027669;\n\tSun, 16 Dec 2007 23:07:55 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4765F615.1F9A6.9593 ; \n\t16 Dec 2007 23:07:51 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4073179FAE;\n\tMon, 17 Dec 2007 04:07:45 +0000 (GMT)\nMessage-ID: <200712170407.lBH47Ri5029754@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 627\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 04:07:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 18FCD34BBD\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 04:07:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBH47R0I029756\n\tfor <source@collab.sakaiproject.org>; Sun, 16 Dec 2007 23:07:27 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBH47Ri5029754\n\tfor source@collab.sakaiproject.org; Sun, 16 Dec 2007 23:07:27 -0500\nDate: Sun, 16 Dec 2007 23:07:27 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zach.thomas@txstate.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Dec 16 23:07:56 2007\nX-DSPAM-Confidence: 0.8426\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39346\n\nAuthor: zach.thomas@txstate.edu\nDate: 2007-12-16 23:07:18 -0500 (Sun, 16 Dec 2007)\nNew Revision: 39346\n\nModified:\ncontent/branches/SAK-11543/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingService.java\ncontent/branches/SAK-11543/content-api/api/src/java/org/sakaiproject/content/cover/ContentHostingService.java\ncontent/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java\ncontent/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\nLog:\ndecided to use ContentHostingService for static final String constants instead of ResourceProperties within entity\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zach.thomas@txstate.edu Sun Dec 16 22:43:26 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 16 Dec 2007 22:43:26 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 16 Dec 2007 22:43:26 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby chaos.mail.umich.edu () with ESMTP id lBH3hPqg023455;\n\tSun, 16 Dec 2007 22:43:25 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4765F056.E9405.12998 ; \n\t16 Dec 2007 22:43:21 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D1C0A7057A;\n\tMon, 17 Dec 2007 03:42:52 +0000 (GMT)\nMessage-ID: <200712170342.lBH3gufQ029740@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 164\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 03:42:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id ADEDF2370D\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 03:42:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBH3gvNk029742\n\tfor <source@collab.sakaiproject.org>; Sun, 16 Dec 2007 22:42:57 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBH3gufQ029740\n\tfor source@collab.sakaiproject.org; Sun, 16 Dec 2007 22:42:57 -0500\nDate: Sun, 16 Dec 2007 22:42:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zach.thomas@txstate.edu\nSubject: [sakai] svn commit: r39345 - gradebook/branches/SAK-11542/app/standalone-app\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Dec 16 22:43:26 2007\nX-DSPAM-Confidence: 0.9814\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39345\n\nAuthor: zach.thomas@txstate.edu\nDate: 2007-12-16 22:42:54 -0500 (Sun, 16 Dec 2007)\nNew Revision: 39345\n\nModified:\ngradebook/branches/SAK-11542/app/standalone-app/project.xml\nLog:\ndeclaring a dependency on sakai-component to make tests run properly\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zach.thomas@txstate.edu Sun Dec 16 22:40:14 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 16 Dec 2007 22:40:14 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 16 Dec 2007 22:40:14 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby awakenings.mail.umich.edu () with ESMTP id lBH3eDFU021145;\n\tSun, 16 Dec 2007 22:40:13 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 4765EF98.4CC7.3951 ; \n\t16 Dec 2007 22:40:10 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9F89B7057A;\n\tMon, 17 Dec 2007 03:39:28 +0000 (GMT)\nMessage-ID: <200712170339.lBH3d7Wh029728@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 16\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 03:39:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 71ADB3501E\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 03:39:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBH3d7Ct029730\n\tfor <source@collab.sakaiproject.org>; Sun, 16 Dec 2007 22:39:07 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBH3d7Wh029728\n\tfor source@collab.sakaiproject.org; Sun, 16 Dec 2007 22:39:07 -0500\nDate: Sun, 16 Dec 2007 22:39:07 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zach.thomas@txstate.edu\nSubject: [sakai] svn commit: r39344 - event/branches/SAK-12478/event-impl/pack\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Dec 16 22:40:14 2007\nX-DSPAM-Confidence: 0.9800\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39344\n\nAuthor: zach.thomas@txstate.edu\nDate: 2007-12-16 22:39:04 -0500 (Sun, 16 Dec 2007)\nNew Revision: 39344\n\nModified:\nevent/branches/SAK-12478/event-impl/pack/project.xml\nLog:\nsynching with newer code in Georgia Tech repository\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zach.thomas@txstate.edu Sun Dec 16 22:29:54 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 16 Dec 2007 22:29:54 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 16 Dec 2007 22:29:54 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby awakenings.mail.umich.edu () with ESMTP id lBH3TrRa018556;\n\tSun, 16 Dec 2007 22:29:53 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4765ED2C.601D4.25393 ; \n\t16 Dec 2007 22:29:51 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8C4247057A;\n\tMon, 17 Dec 2007 03:29:45 +0000 (GMT)\nMessage-ID: <200712170329.lBH3TRpS029714@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 425\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 03:29:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EA7863501E\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 03:29:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBH3TRSX029716\n\tfor <source@collab.sakaiproject.org>; Sun, 16 Dec 2007 22:29:27 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBH3TRpS029714\n\tfor source@collab.sakaiproject.org; Sun, 16 Dec 2007 22:29:27 -0500\nDate: Sun, 16 Dec 2007 22:29:27 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zach.thomas@txstate.edu\nSubject: [sakai] svn commit: r39343 - event/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Dec 16 22:29:54 2007\nX-DSPAM-Confidence: 0.9839\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39343\n\nAuthor: zach.thomas@txstate.edu\nDate: 2007-12-16 22:29:24 -0500 (Sun, 16 Dec 2007)\nNew Revision: 39343\n\nAdded:\nevent/branches/SAK-12478/\nLog:\ncopying 2.4.x branch of event/ for conditional release purposes\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zach.thomas@txstate.edu Sun Dec 16 22:25:32 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 16 Dec 2007 22:25:32 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 16 Dec 2007 22:25:32 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby casino.mail.umich.edu () with ESMTP id lBH3PVUe022864;\n\tSun, 16 Dec 2007 22:25:31 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 4765EC25.99B3E.19119 ; \n\t16 Dec 2007 22:25:28 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 74B3D7057A;\n\tMon, 17 Dec 2007 03:25:21 +0000 (GMT)\nMessage-ID: <200712170324.lBH3Ov5n029702@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 186\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 03:24:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AF38A3501E\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 03:24:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBH3OvmV029704\n\tfor <source@collab.sakaiproject.org>; Sun, 16 Dec 2007 22:24:57 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBH3Ov5n029702\n\tfor source@collab.sakaiproject.org; Sun, 16 Dec 2007 22:24:57 -0500\nDate: Sun, 16 Dec 2007 22:24:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zach.thomas@txstate.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Dec 16 22:25:32 2007\nX-DSPAM-Confidence: 0.8427\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39342\n\nAuthor: zach.thomas@txstate.edu\nDate: 2007-12-16 22:24:48 -0500 (Sun, 16 Dec 2007)\nNew Revision: 39342\n\nModified:\ncontent/branches/SAK-11543/content-bundles/content.properties\ncontent/branches/SAK-11543/content-bundles/types.properties\ncontent/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java\ncontent/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\ncontent/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java\ncontent/branches/SAK-11543/content-tool/tool/src/webapp/vm/resources/sakai_properties.vm\ncontent/branches/SAK-11543/content-tool/tool/src/webapp/vm/resources/sakai_properties_scripts.vm\nLog:\nsynching with the newer code in Georgia Tech repository\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zach.thomas@txstate.edu Sun Dec 16 22:01:55 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 16 Dec 2007 22:01:55 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 16 Dec 2007 22:01:55 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby awakenings.mail.umich.edu () with ESMTP id lBH31snC011247;\n\tSun, 16 Dec 2007 22:01:54 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 4765E69D.6D9EE.20514 ; \n\t16 Dec 2007 22:01:52 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 530749AAB0;\n\tMon, 17 Dec 2007 03:01:45 +0000 (GMT)\nMessage-ID: <200712170301.lBH31I32029679@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 256\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 03:01:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1BFA734EDB\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 03:01:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBH31IpQ029681\n\tfor <source@collab.sakaiproject.org>; Sun, 16 Dec 2007 22:01:18 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBH31I32029679\n\tfor source@collab.sakaiproject.org; Sun, 16 Dec 2007 22:01:18 -0500\nDate: Sun, 16 Dec 2007 22:01:18 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zach.thomas@txstate.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Dec 16 22:01:55 2007\nX-DSPAM-Confidence: 0.9786\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39341\n\nAuthor: zach.thomas@txstate.edu\nDate: 2007-12-16 22:01:11 -0500 (Sun, 16 Dec 2007)\nNew Revision: 39341\n\nModified:\ngradebook/branches/SAK-11542/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java\ngradebook/branches/SAK-11542/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/InstructorViewBean.java\ngradebook/branches/SAK-11542/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/SpreadsheetUploadBean.java\ngradebook/branches/SAK-11542/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookExternalAssessmentServiceImpl.java\nLog:\nsynching up with newer code from the Georgia Tech repository\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Sun Dec 16 21:34:16 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 16 Dec 2007 21:34:16 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 16 Dec 2007 21:34:16 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby brazil.mail.umich.edu () with ESMTP id lBH2YGm7013827;\n\tSun, 16 Dec 2007 21:34:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4765E021.AD5E2.25208 ; \n\t16 Dec 2007 21:34:13 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3DE1078834;\n\tMon, 17 Dec 2007 02:34:03 +0000 (GMT)\nMessage-ID: <200712170233.lBH2Xm2d029665@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1021\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 02:33:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B52E134BBD\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 02:33:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBH2Xmfw029667\n\tfor <source@collab.sakaiproject.org>; Sun, 16 Dec 2007 21:33:48 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBH2Xm2d029665\n\tfor source@collab.sakaiproject.org; Sun, 16 Dec 2007 21:33:48 -0500\nDate: Sun, 16 Dec 2007 21:33:48 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r39340 - citations/branches/sakai_2-4-x/citations-impl/impl/src/java/org/sakaiproject/citation/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Dec 16 21:34:16 2007\nX-DSPAM-Confidence: 0.8482\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39340\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-16 21:33:46 -0500 (Sun, 16 Dec 2007)\nNew Revision: 39340\n\nModified:\ncitations/branches/sakai_2-4-x/citations-impl/impl/src/java/org/sakaiproject/citation/impl/BaseCitationService.java\nLog:\nSAK-10966\nMerging changes for SAK-10966 to sakai_2-4-x btanch of citations.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Sun Dec 16 21:25:56 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 16 Dec 2007 21:25:56 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 16 Dec 2007 21:25:56 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby score.mail.umich.edu () with ESMTP id lBH2PtiO032021;\n\tSun, 16 Dec 2007 21:25:55 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 4765DE2D.A1733.11691 ; \n\t16 Dec 2007 21:25:52 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9F68578834;\n\tMon, 17 Dec 2007 02:25:46 +0000 (GMT)\nMessage-ID: <200712170225.lBH2PRmv029629@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 323\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 02:25:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1881734BBD\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 02:25:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBH2PR57029631\n\tfor <source@collab.sakaiproject.org>; Sun, 16 Dec 2007 21:25:27 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBH2PRmv029629\n\tfor source@collab.sakaiproject.org; Sun, 16 Dec 2007 21:25:27 -0500\nDate: Sun, 16 Dec 2007 21:25:27 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r39339 - citations/branches/post-2-4/citations-impl/impl/src/java/org/sakaiproject/citation/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Dec 16 21:25:56 2007\nX-DSPAM-Confidence: 0.8440\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39339\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-16 21:25:25 -0500 (Sun, 16 Dec 2007)\nNew Revision: 39339\n\nModified:\ncitations/branches/post-2-4/citations-impl/impl/src/java/org/sakaiproject/citation/impl/BaseCitationService.java\nLog:\nSAK-10966\nMerging revision for SAK-10966 to post-2-4 citations branch.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom arwhyte@umich.edu Sun Dec 16 20:40:46 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 16 Dec 2007 20:40:46 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 16 Dec 2007 20:40:46 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby faithful.mail.umich.edu () with ESMTP id lBH1ejVk030578;\n\tSun, 16 Dec 2007 20:40:45 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4765D398.783F.24119 ; \n\t16 Dec 2007 20:40:42 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7613CA15BC;\n\tMon, 17 Dec 2007 01:39:28 +0000 (GMT)\nMessage-ID: <200712170140.lBH1eCx6029595@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 125\n          for <source@collab.sakaiproject.org>;\n          Mon, 17 Dec 2007 01:39:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9DD9831BAF\n\tfor <source@collab.sakaiproject.org>; Mon, 17 Dec 2007 01:40:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBH1eCm6029597\n\tfor <source@collab.sakaiproject.org>; Sun, 16 Dec 2007 20:40:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBH1eCx6029595\n\tfor source@collab.sakaiproject.org; Sun, 16 Dec 2007 20:40:12 -0500\nDate: Sun, 16 Dec 2007 20:40:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: arwhyte@umich.edu\nSubject: [sakai] svn commit: r39338 - component/trunk/component-api/component/src/config/org/sakaiproject/config\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Dec 16 20:40:46 2007\nX-DSPAM-Confidence: 0.9803\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39338\n\nAuthor: arwhyte@umich.edu\nDate: 2007-12-16 20:40:10 -0500 (Sun, 16 Dec 2007)\nNew Revision: 39338\n\nModified:\ncomponent/trunk/component-api/component/src/config/org/sakaiproject/config/sakai.properties\nLog:\nUnstealth portfolios, samigo.  Remove reference to sakai.assignment\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom josrodri@iupui.edu Sun Dec 16 16:53:56 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 16 Dec 2007 16:53:56 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 16 Dec 2007 16:53:56 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby jacknife.mail.umich.edu () with ESMTP id lBGLrtPm031933;\n\tSun, 16 Dec 2007 16:53:55 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 47659E66.AC1E9.1299 ; \n\t16 Dec 2007 16:53:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BBFFA9F6F0;\n\tSun, 16 Dec 2007 21:52:18 +0000 (GMT)\nMessage-ID: <200712162152.lBGLqqXp029499@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 635\n          for <source@collab.sakaiproject.org>;\n          Sun, 16 Dec 2007 21:51:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 920661FD0C\n\tfor <source@collab.sakaiproject.org>; Sun, 16 Dec 2007 21:52:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBGLqqUs029501\n\tfor <source@collab.sakaiproject.org>; Sun, 16 Dec 2007 16:52:52 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBGLqqXp029499\n\tfor source@collab.sakaiproject.org; Sun, 16 Dec 2007 16:52:52 -0500\nDate: Sun, 16 Dec 2007 16:52:52 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: josrodri@iupui.edu\nSubject: [sakai] svn commit: r39337 - gradebook/trunk/app/ui/src/webapp/inc\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Dec 16 16:53:56 2007\nX-DSPAM-Confidence: 0.8429\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39337\n\nAuthor: josrodri@iupui.edu\nDate: 2007-12-16 16:52:50 -0500 (Sun, 16 Dec 2007)\nNew Revision: 39337\n\nModified:\ngradebook/trunk/app/ui/src/webapp/inc/bulkNewItems.jspf\nLog:\nSAK-12444, SAK12466: fixed some UI errors introduced by earlier commit\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom arwhyte@umich.edu Sun Dec 16 13:12:31 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 16 Dec 2007 13:12:31 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 16 Dec 2007 13:12:31 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby score.mail.umich.edu () with ESMTP id lBGICU3Y017831;\n\tSun, 16 Dec 2007 13:12:30 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 47656A88.F4209.7107 ; \n\t16 Dec 2007 13:12:27 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3754EA0F0C;\n\tSun, 16 Dec 2007 18:11:04 +0000 (GMT)\nMessage-ID: <200712161811.lBGIBmAn029355@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 844\n          for <source@collab.sakaiproject.org>;\n          Sun, 16 Dec 2007 18:10:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9C7AA33E07\n\tfor <source@collab.sakaiproject.org>; Sun, 16 Dec 2007 18:11:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBGIBn9Q029357\n\tfor <source@collab.sakaiproject.org>; Sun, 16 Dec 2007 13:11:49 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBGIBmAn029355\n\tfor source@collab.sakaiproject.org; Sun, 16 Dec 2007 13:11:48 -0500\nDate: Sun, 16 Dec 2007 13:11:48 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: arwhyte@umich.edu\nSubject: [sakai] svn commit: r39336 - reference/trunk/docs/releaseweb\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Dec 16 13:12:31 2007\nX-DSPAM-Confidence: 0.9833\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39336\n\nAuthor: arwhyte@umich.edu\nDate: 2007-12-16 13:11:02 -0500 (Sun, 16 Dec 2007)\nNew Revision: 39336\n\nModified:\nreference/trunk/docs/releaseweb/index.html\nLog:\nText changes\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom josrodri@iupui.edu Sun Dec 16 09:52:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 16 Dec 2007 09:52:42 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 16 Dec 2007 09:52:42 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby awakenings.mail.umich.edu () with ESMTP id lBGEqf1X014258;\n\tSun, 16 Dec 2007 09:52:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 47653BB4.53D25.18900 ; \n\t16 Dec 2007 09:52:39 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0A6C172C12;\n\tSun, 16 Dec 2007 14:51:04 +0000 (GMT)\nMessage-ID: <200712161444.lBGEiHG5029209@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 361\n          for <source@collab.sakaiproject.org>;\n          Sun, 16 Dec 2007 14:50:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0561A24C0D\n\tfor <source@collab.sakaiproject.org>; Sun, 16 Dec 2007 14:52:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBGEiHAm029211\n\tfor <source@collab.sakaiproject.org>; Sun, 16 Dec 2007 09:44:17 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBGEiHG5029209\n\tfor source@collab.sakaiproject.org; Sun, 16 Dec 2007 09:44:17 -0500\nDate: Sun, 16 Dec 2007 09:44:17 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: josrodri@iupui.edu\nSubject: [sakai] svn commit: r39335 - in gradebook/trunk/app/ui/src: bundle/org/sakaiproject/tool/gradebook/bundle webapp/inc webapp/js\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Dec 16 09:52:42 2007\nX-DSPAM-Confidence: 0.7570\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39335\n\nAuthor: josrodri@iupui.edu\nDate: 2007-12-16 09:44:12 -0500 (Sun, 16 Dec 2007)\nNew Revision: 39335\n\nModified:\ngradebook/trunk/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties\ngradebook/trunk/app/ui/src/webapp/inc/bulkNewItems.jspf\ngradebook/trunk/app/ui/src/webapp/js/multiItemAdd.js\nLog:\nSAK-12444, SAK12466: delete icon appears on first pane when multiple panes exposed, additional styling changes were needed implementing non-grading option\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stephen.marquard@uct.ac.za Sun Dec 16 03:59:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 16 Dec 2007 03:59:13 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 16 Dec 2007 03:59:13 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby mission.mail.umich.edu () with ESMTP id lBG8xCVb023289;\n\tSun, 16 Dec 2007 03:59:12 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 4764E8DA.63F96.27809 ; \n\t16 Dec 2007 03:59:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 778ABA05D8;\n\tSun, 16 Dec 2007 08:59:38 +0000 (GMT)\nMessage-ID: <200712160850.lBG8onXv015998@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 844\n          for <source@collab.sakaiproject.org>;\n          Sun, 16 Dec 2007 08:59:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id ADFF13481A\n\tfor <source@collab.sakaiproject.org>; Sun, 16 Dec 2007 08:58:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBG8onKj016000\n\tfor <source@collab.sakaiproject.org>; Sun, 16 Dec 2007 03:50:49 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBG8onXv015998\n\tfor source@collab.sakaiproject.org; Sun, 16 Dec 2007 03:50:49 -0500\nDate: Sun, 16 Dec 2007 03:50:49 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: stephen.marquard@uct.ac.za\nSubject: [sakai] svn commit: r39334 - presence/branches/sakai_2-5-x/presence-impl/impl/src/java/org/sakaiproject/presence/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Dec 16 03:59:13 2007\nX-DSPAM-Confidence: 0.9838\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39334\n\nAuthor: stephen.marquard@uct.ac.za\nDate: 2007-12-16 03:50:41 -0500 (Sun, 16 Dec 2007)\nNew Revision: 39334\n\nModified:\npresence/branches/sakai_2-5-x/presence-impl/impl/src/java/org/sakaiproject/presence/impl/BasePresenceService.java\nLog:\nSAK-12457 NPE from presence: merge fix to 2-5-x\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stephen.marquard@uct.ac.za Sun Dec 16 03:57:28 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 16 Dec 2007 03:57:27 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 16 Dec 2007 03:57:27 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby casino.mail.umich.edu () with ESMTP id lBG8vP7U029019;\n\tSun, 16 Dec 2007 03:57:25 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 4764E870.5BD81.30701 ; \n\t16 Dec 2007 03:57:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DD9FEA05D6;\n\tSun, 16 Dec 2007 08:57:29 +0000 (GMT)\nMessage-ID: <200712160849.lBG8n0Wx015986@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 3\n          for <source@collab.sakaiproject.org>;\n          Sun, 16 Dec 2007 08:57:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EA99D341C1\n\tfor <source@collab.sakaiproject.org>; Sun, 16 Dec 2007 08:56:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBG8n1db015988\n\tfor <source@collab.sakaiproject.org>; Sun, 16 Dec 2007 03:49:01 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBG8n0Wx015986\n\tfor source@collab.sakaiproject.org; Sun, 16 Dec 2007 03:49:00 -0500\nDate: Sun, 16 Dec 2007 03:49:00 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stephen.marquard@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: stephen.marquard@uct.ac.za\nSubject: [sakai] svn commit: r39333 - presence/trunk/presence-impl/impl/src/java/org/sakaiproject/presence/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Dec 16 03:57:27 2007\nX-DSPAM-Confidence: 0.9783\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39333\n\nAuthor: stephen.marquard@uct.ac.za\nDate: 2007-12-16 03:48:52 -0500 (Sun, 16 Dec 2007)\nNew Revision: 39333\n\nModified:\npresence/trunk/presence-impl/impl/src/java/org/sakaiproject/presence/impl/BasePresenceService.java\nLog:\nSAK-12457 NPE from presence: check for null tool session attribute\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Sat Dec 15 23:54:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 15 Dec 2007 23:54:43 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 15 Dec 2007 23:54:43 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby casino.mail.umich.edu () with ESMTP id lBG4sgr4012429;\n\tSat, 15 Dec 2007 23:54:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 4764AF8A.B8672.25714 ; \n\t15 Dec 2007 23:54:38 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A8A859FFAF;\n\tSun, 16 Dec 2007 04:54:01 +0000 (GMT)\nMessage-ID: <200712160445.lBG4jQ2k015860@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 831\n          for <source@collab.sakaiproject.org>;\n          Sun, 16 Dec 2007 04:53:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1036E1D2FF\n\tfor <source@collab.sakaiproject.org>; Sun, 16 Dec 2007 04:53:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBG4jQUY015862\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 23:45:26 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBG4jQ2k015860\n\tfor source@collab.sakaiproject.org; Sat, 15 Dec 2007 23:45:26 -0500\nDate: Sat, 15 Dec 2007 23:45:26 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r39332 - calendar/branches/oncourse_opc_122007/calendar-tool/tool/src/webapp/vm/calendar\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec 15 23:54:43 2007\nX-DSPAM-Confidence: 0.7607\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39332\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-15 23:45:23 -0500 (Sat, 15 Dec 2007)\nNew Revision: 39332\n\nModified:\ncalendar/branches/oncourse_opc_122007/calendar-tool/tool/src/webapp/vm/calendar/chef_calendar_viewActivity.vm\nLog:\noncourse fix - gen.assignmentlink property was not being found.  Modified the vm slightly to fix the error.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Sat Dec 15 20:28:44 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 15 Dec 2007 20:28:44 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 15 Dec 2007 20:28:44 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby panther.mail.umich.edu () with ESMTP id lBG1Sibe007238;\n\tSat, 15 Dec 2007 20:28:44 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 47647F3B.66667.27839 ; \n\t15 Dec 2007 20:28:30 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9ED4CA01F3;\n\tSun, 16 Dec 2007 01:28:03 +0000 (GMT)\nMessage-ID: <200712160119.lBG1Jm1m015797@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 824\n          for <source@collab.sakaiproject.org>;\n          Sun, 16 Dec 2007 01:27:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 55EBD3873B\n\tfor <source@collab.sakaiproject.org>; Sun, 16 Dec 2007 01:27:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBG1Jmo3015799\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 20:19:48 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBG1Jm1m015797\n\tfor source@collab.sakaiproject.org; Sat, 15 Dec 2007 20:19:48 -0500\nDate: Sat, 15 Dec 2007 20:19:48 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39331 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec 15 20:28:44 2007\nX-DSPAM-Confidence: 0.9804\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39331\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-15 20:19:44 -0500 (Sat, 15 Dec 2007)\nNew Revision: 39331\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdate external for assignment.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Sat Dec 15 20:23:03 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 15 Dec 2007 20:23:03 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 15 Dec 2007 20:23:03 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby awakenings.mail.umich.edu () with ESMTP id lBG1N2no018696;\n\tSat, 15 Dec 2007 20:23:02 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 47647DF1.3ACAD.27836 ; \n\t15 Dec 2007 20:22:59 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 94E6E5CE2F;\n\tSun, 16 Dec 2007 01:22:44 +0000 (GMT)\nMessage-ID: <200712160114.lBG1EXBF015761@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 312\n          for <source@collab.sakaiproject.org>;\n          Sun, 16 Dec 2007 01:22:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E6178235C2\n\tfor <source@collab.sakaiproject.org>; Sun, 16 Dec 2007 01:22:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBG1EXXK015763\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 20:14:33 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBG1EXBF015761\n\tfor source@collab.sakaiproject.org; Sat, 15 Dec 2007 20:14:33 -0500\nDate: Sat, 15 Dec 2007 20:14:33 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39330 - in oncourse/trunk/src/site-manage/site-manage-tool/tool/src: bundle java/org/sakaiproject/site/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec 15 20:23:03 2007\nX-DSPAM-Confidence: 0.9824\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39330\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-15 20:14:26 -0500 (Sat, 15 Dec 2007)\nNew Revision: 39330\n\nModified:\noncourse/trunk/src/site-manage/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties\noncourse/trunk/src/site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nLog:\nupdate overlay for site-manage for SAK-12433.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Sat Dec 15 20:02:54 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 15 Dec 2007 20:02:54 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 15 Dec 2007 20:02:54 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby sleepers.mail.umich.edu () with ESMTP id lBG12rIu003488;\n\tSat, 15 Dec 2007 20:02:53 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 47647938.2EA81.20392 ; \n\t15 Dec 2007 20:02:50 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2321EA0206;\n\tSun, 16 Dec 2007 00:47:13 +0000 (GMT)\nMessage-ID: <200712160034.lBG0Y9sU015695@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 396\n          for <source@collab.sakaiproject.org>;\n          Sun, 16 Dec 2007 00:46:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BED4139C35\n\tfor <source@collab.sakaiproject.org>; Sun, 16 Dec 2007 00:42:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBG0Y9w1015697\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 19:34:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBG0Y9sU015695\n\tfor source@collab.sakaiproject.org; Sat, 15 Dec 2007 19:34:09 -0500\nDate: Sat, 15 Dec 2007 19:34:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39329 - oncourse/trunk/src/calendar/calendar-impl/impl/src/java/org/sakaiproject/calendar/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec 15 20:02:54 2007\nX-DSPAM-Confidence: 0.9804\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39329\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-15 19:34:05 -0500 (Sat, 15 Dec 2007)\nNew Revision: 39329\n\nModified:\noncourse/trunk/src/calendar/calendar-impl/impl/src/java/org/sakaiproject/calendar/impl/BaseCalendarService.java\nLog:\nupdate overlay for calendar for SAK-12433.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Sat Dec 15 19:34:23 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 15 Dec 2007 19:34:23 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 15 Dec 2007 19:34:23 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby chaos.mail.umich.edu () with ESMTP id lBG0YMjm028077;\n\tSat, 15 Dec 2007 19:34:22 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 47647288.DD682.23282 ; \n\t15 Dec 2007 19:34:19 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 317C8A01F6;\n\tSun, 16 Dec 2007 00:20:11 +0000 (GMT)\nMessage-ID: <200712160009.lBG092ZA015655@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 603\n          for <source@collab.sakaiproject.org>;\n          Sun, 16 Dec 2007 00:13:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 22D8B39C0A\n\tfor <source@collab.sakaiproject.org>; Sun, 16 Dec 2007 00:16:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBG092us015657\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 19:09:02 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBG092ZA015655\n\tfor source@collab.sakaiproject.org; Sat, 15 Dec 2007 19:09:02 -0500\nDate: Sat, 15 Dec 2007 19:09:02 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec 15 19:34:23 2007\nX-DSPAM-Confidence: 0.8440\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39328\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-15 19:08:51 -0500 (Sat, 15 Dec 2007)\nNew Revision: 39328\n\nAdded:\noncourse/trunk/src/gmt/\noncourse/trunk/src/gmt/datapoint/\noncourse/trunk/src/gmt/datapoint/datapoint-impl/\noncourse/trunk/src/gmt/datapoint/datapoint-impl/impl/\noncourse/trunk/src/gmt/datapoint/datapoint-impl/impl/src/\noncourse/trunk/src/gmt/datapoint/datapoint-impl/impl/src/java/\noncourse/trunk/src/gmt/datapoint/datapoint-impl/impl/src/java/org/\noncourse/trunk/src/gmt/datapoint/datapoint-impl/impl/src/java/org/sakaiproject/\noncourse/trunk/src/gmt/datapoint/datapoint-impl/impl/src/java/org/sakaiproject/datapoint/\noncourse/trunk/src/gmt/datapoint/datapoint-impl/impl/src/java/org/sakaiproject/datapoint/impl/\noncourse/trunk/src/gmt/datapoint/datapoint-impl/impl/src/java/org/sakaiproject/datapoint/impl/DataPointServiceImpl.java\noncourse/trunk/src/gmt/gmt/\noncourse/trunk/src/gmt/gmt/gmt-impl/\noncourse/trunk/src/gmt/gmt/gmt-impl/impl/\noncourse/trunk/src/gmt/gmt/gmt-impl/impl/src/\noncourse/trunk/src/gmt/gmt/gmt-impl/impl/src/java/\noncourse/trunk/src/gmt/gmt/gmt-impl/impl/src/java/org/\noncourse/trunk/src/gmt/gmt/gmt-impl/impl/src/java/org/sakaiproject/\noncourse/trunk/src/gmt/gmt/gmt-impl/impl/src/java/org/sakaiproject/gmt/\noncourse/trunk/src/gmt/gmt/gmt-impl/impl/src/java/org/sakaiproject/gmt/impl/\noncourse/trunk/src/gmt/gmt/gmt-impl/impl/src/java/org/sakaiproject/gmt/impl/GmtServiceImpl.java\nLog:\nSAK-12433 for syracuse.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Sat Dec 15 18:31:44 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 15 Dec 2007 18:31:44 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 15 Dec 2007 18:31:44 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby mission.mail.umich.edu () with ESMTP id lBFNVhup028095;\n\tSat, 15 Dec 2007 18:31:43 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 476463D9.B82AE.25494 ; \n\t15 Dec 2007 18:31:40 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 27D2C9DD2B;\n\tSat, 15 Dec 2007 23:31:34 +0000 (GMT)\nMessage-ID: <200712152323.lBFNNPE3015614@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 595\n          for <source@collab.sakaiproject.org>;\n          Sat, 15 Dec 2007 23:31:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 195F53446C\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 23:31:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFNNPPQ015616\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 18:23:25 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFNNPE3015614\n\tfor source@collab.sakaiproject.org; Sat, 15 Dec 2007 18:23:25 -0500\nDate: Sat, 15 Dec 2007 18:23:25 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r39327 - assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec 15 18:31:44 2007\nX-DSPAM-Confidence: 0.9842\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39327\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-15 18:23:22 -0500 (Sat, 15 Dec 2007)\nNew Revision: 39327\n\nModified:\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\noncourse fix - fixing a bug with writing the assignment id to calendar events\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Sat Dec 15 18:08:01 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 15 Dec 2007 18:08:01 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 15 Dec 2007 18:08:01 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby score.mail.umich.edu () with ESMTP id lBFN80GS029206;\n\tSat, 15 Dec 2007 18:08:00 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 47645E4B.43FF8.25309 ; \n\t15 Dec 2007 18:07:58 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E1539A012F;\n\tSat, 15 Dec 2007 23:07:52 +0000 (GMT)\nMessage-ID: <200712152259.lBFMxjsU015519@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 783\n          for <source@collab.sakaiproject.org>;\n          Sat, 15 Dec 2007 23:07:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 73990330F9\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 23:07:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFMxjVj015521\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 17:59:45 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFMxjsU015519\n\tfor source@collab.sakaiproject.org; Sat, 15 Dec 2007 17:59:45 -0500\nDate: Sat, 15 Dec 2007 17:59:45 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39326 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec 15 18:08:01 2007\nX-DSPAM-Confidence: 0.9817\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39326\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-15 17:59:41 -0500 (Sat, 15 Dec 2007)\nNew Revision: 39326\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nAPI revert back for SAK-12433.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Sat Dec 15 18:06:09 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 15 Dec 2007 18:06:09 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 15 Dec 2007 18:06:09 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby awakenings.mail.umich.edu () with ESMTP id lBFN67e9018374;\n\tSat, 15 Dec 2007 18:06:07 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 47645DD3.8A88A.5946 ; \n\t15 Dec 2007 18:06:04 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0E6979F549;\n\tSat, 15 Dec 2007 23:05:52 +0000 (GMT)\nMessage-ID: <200712152257.lBFMvhF2015507@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 906\n          for <source@collab.sakaiproject.org>;\n          Sat, 15 Dec 2007 23:05:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B7B53330F9\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 23:05:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFMvhZF015509\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 17:57:43 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFMvhF2015507\n\tfor source@collab.sakaiproject.org; Sat, 15 Dec 2007 17:57:43 -0500\nDate: Sat, 15 Dec 2007 17:57:43 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39325 - gradebook/branches/oncourse_opc_122007/service/api/src/java/org/sakaiproject/service/gradebook/shared\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec 15 18:06:09 2007\nX-DSPAM-Confidence: 0.9782\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39325\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-15 17:57:40 -0500 (Sat, 15 Dec 2007)\nNew Revision: 39325\n\nModified:\ngradebook/branches/oncourse_opc_122007/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java\nLog:\nsak-12433\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Sat Dec 15 17:56:27 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 15 Dec 2007 17:56:27 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 15 Dec 2007 17:56:27 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby panther.mail.umich.edu () with ESMTP id lBFMuRMj028179;\n\tSat, 15 Dec 2007 17:56:27 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 47645B94.50D4C.12916 ; \n\t15 Dec 2007 17:56:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 032219F549;\n\tSat, 15 Dec 2007 22:56:18 +0000 (GMT)\nMessage-ID: <200712152248.lBFMmBvX015481@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 473\n          for <source@collab.sakaiproject.org>;\n          Sat, 15 Dec 2007 22:56:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 29F2824EB8\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 22:56:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFMmB1w015483\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 17:48:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFMmBvX015481\n\tfor source@collab.sakaiproject.org; Sat, 15 Dec 2007 17:48:11 -0500\nDate: Sat, 15 Dec 2007 17:48:11 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39324 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec 15 17:56:27 2007\nX-DSPAM-Confidence: 0.9814\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39324\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-15 17:48:07 -0500 (Sat, 15 Dec 2007)\nNew Revision: 39324\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdate external for gb.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Sat Dec 15 17:54:27 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 15 Dec 2007 17:54:27 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 15 Dec 2007 17:54:27 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby fan.mail.umich.edu () with ESMTP id lBFMsQuv004768;\n\tSat, 15 Dec 2007 17:54:26 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 47645B1C.830CA.20096 ; \n\t15 Dec 2007 17:54:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8F0989FFF8;\n\tSat, 15 Dec 2007 22:54:13 +0000 (GMT)\nMessage-ID: <200712152246.lBFMk0kC015469@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 751\n          for <source@collab.sakaiproject.org>;\n          Sat, 15 Dec 2007 22:53:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E82A824EB8\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 22:53:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFMk0pF015471\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 17:46:00 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFMk0kC015469\n\tfor source@collab.sakaiproject.org; Sat, 15 Dec 2007 17:46:00 -0500\nDate: Sat, 15 Dec 2007 17:46:00 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39323 - gradebook/branches/oncourse_opc_122007/service/api/src/java/org/sakaiproject/service/gradebook/shared\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec 15 17:54:27 2007\nX-DSPAM-Confidence: 0.9817\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39323\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-15 17:45:57 -0500 (Sat, 15 Dec 2007)\nNew Revision: 39323\n\nModified:\ngradebook/branches/oncourse_opc_122007/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java\nLog:\nSAK-12433\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Sat Dec 15 17:19:55 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 15 Dec 2007 17:19:55 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 15 Dec 2007 17:19:55 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby faithful.mail.umich.edu () with ESMTP id lBFMJsPa025635;\n\tSat, 15 Dec 2007 17:19:54 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 47645303.FAC8.13788 ; \n\t15 Dec 2007 17:19:49 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A5736A00AA;\n\tSat, 15 Dec 2007 22:19:45 +0000 (GMT)\nMessage-ID: <200712152211.lBFMBdeM015372@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 322\n          for <source@collab.sakaiproject.org>;\n          Sat, 15 Dec 2007 22:19:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DC8A93446C\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 22:19:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFMBd6X015374\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 17:11:39 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFMBdeM015372\n\tfor source@collab.sakaiproject.org; Sat, 15 Dec 2007 17:11:39 -0500\nDate: Sat, 15 Dec 2007 17:11:39 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39322 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec 15 17:19:55 2007\nX-DSPAM-Confidence: 0.9821\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39322\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-15 17:11:36 -0500 (Sat, 15 Dec 2007)\nNew Revision: 39322\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdate external for GB. SAK-12433.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Sat Dec 15 17:18:57 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 15 Dec 2007 17:18:57 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 15 Dec 2007 17:18:57 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby jacknife.mail.umich.edu () with ESMTP id lBFMIvLE025465;\n\tSat, 15 Dec 2007 17:18:57 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 476452C1.E9C8C.10701 ; \n\t15 Dec 2007 17:18:54 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5C57AA0091;\n\tSat, 15 Dec 2007 22:18:37 +0000 (GMT)\nMessage-ID: <200712152210.lBFMASRX015360@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 619\n          for <source@collab.sakaiproject.org>;\n          Sat, 15 Dec 2007 22:18:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 588C93446C\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 22:18:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFMAT6X015362\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 17:10:29 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFMASRX015360\n\tfor source@collab.sakaiproject.org; Sat, 15 Dec 2007 17:10:28 -0500\nDate: Sat, 15 Dec 2007 17:10:28 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39321 - gradebook/branches/oncourse_opc_122007/service/impl/src/java/org/sakaiproject/component/gradebook\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec 15 17:18:57 2007\nX-DSPAM-Confidence: 0.9781\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39321\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-15 17:10:25 -0500 (Sat, 15 Dec 2007)\nNew Revision: 39321\n\nModified:\ngradebook/branches/oncourse_opc_122007/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java\nLog:\nSAK-12433\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Sat Dec 15 15:02:52 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 15 Dec 2007 15:02:52 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 15 Dec 2007 15:02:52 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby flawless.mail.umich.edu () with ESMTP id lBFK2pnN008254;\n\tSat, 15 Dec 2007 15:02:51 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 476432D8.9A773.30371 ; \n\t15 Dec 2007 15:02:36 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D49A59F694;\n\tSat, 15 Dec 2007 20:02:33 +0000 (GMT)\nMessage-ID: <200712151954.lBFJsJ4M015175@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 281\n          for <source@collab.sakaiproject.org>;\n          Sat, 15 Dec 2007 20:02:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 129613429E\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 20:02:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFJsJkI015177\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 14:54:19 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFJsJ4M015175\n\tfor source@collab.sakaiproject.org; Sat, 15 Dec 2007 14:54:19 -0500\nDate: Sat, 15 Dec 2007 14:54:19 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39320 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec 15 15:02:52 2007\nX-DSPAM-Confidence: 0.9801\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39320\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-15 14:54:15 -0500 (Sat, 15 Dec 2007)\nNew Revision: 39320\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nSAK-12433 for gradebook.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Sat Dec 15 14:59:52 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 15 Dec 2007 14:59:52 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 15 Dec 2007 14:59:52 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby awakenings.mail.umich.edu () with ESMTP id lBFJxpje031211;\n\tSat, 15 Dec 2007 14:59:51 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 47643232.7B7D.18342 ; \n\t15 Dec 2007 14:59:48 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 56F949F694;\n\tSat, 15 Dec 2007 19:59:48 +0000 (GMT)\nMessage-ID: <200712151951.lBFJpTtd015163@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 942\n          for <source@collab.sakaiproject.org>;\n          Sat, 15 Dec 2007 19:59:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DA26538733\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 19:59:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFJpT7x015165\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 14:51:29 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFJpTtd015163\n\tfor source@collab.sakaiproject.org; Sat, 15 Dec 2007 14:51:29 -0500\nDate: Sat, 15 Dec 2007 14:51:29 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec 15 14:59:52 2007\nX-DSPAM-Confidence: 0.9813\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39319\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-15 14:51:16 -0500 (Sat, 15 Dec 2007)\nNew Revision: 39319\n\nModified:\ngradebook/branches/oncourse_opc_122007/service/api/src/java/org/sakaiproject/service/gradebook/shared/Assignment.java\ngradebook/branches/oncourse_opc_122007/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java\ngradebook/branches/oncourse_opc_122007/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookDefinition.java\ngradebook/branches/oncourse_opc_122007/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java\ngradebook/branches/oncourse_opc_122007/service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sakai2impl/GradebookEntityProducer.java\nLog:\nSAK-12433 => svn merge -r39311:39312 https://source.sakaiproject.org/svn/gradebook/trunk\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Sat Dec 15 14:30:24 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 15 Dec 2007 14:30:24 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 15 Dec 2007 14:30:24 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby mission.mail.umich.edu () with ESMTP id lBFJUOu1024708;\n\tSat, 15 Dec 2007 14:30:24 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 47642B4A.513AD.839 ; \n\t15 Dec 2007 14:30:21 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6569F9F201;\n\tSat, 15 Dec 2007 19:30:22 +0000 (GMT)\nMessage-ID: <200712151922.lBFJM3FK015126@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 885\n          for <source@collab.sakaiproject.org>;\n          Sat, 15 Dec 2007 19:30:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7F9DFB2AD\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 19:29:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFJM3kQ015128\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 14:22:03 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFJM3FK015126\n\tfor source@collab.sakaiproject.org; Sat, 15 Dec 2007 14:22:03 -0500\nDate: Sat, 15 Dec 2007 14:22:03 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39318 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec 15 14:30:24 2007\nX-DSPAM-Confidence: 0.9822\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39318\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-15 14:21:59 -0500 (Sat, 15 Dec 2007)\nNew Revision: 39318\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nSAK-12433 for samigo.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Sat Dec 15 14:23:15 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 15 Dec 2007 14:23:15 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 15 Dec 2007 14:23:15 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby mission.mail.umich.edu () with ESMTP id lBFJNEmW022549;\n\tSat, 15 Dec 2007 14:23:14 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 4764299D.A7C4F.21860 ; \n\t15 Dec 2007 14:23:12 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 909E69F201;\n\tSat, 15 Dec 2007 19:23:12 +0000 (GMT)\nMessage-ID: <200712151914.lBFJErCP015098@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 579\n          for <source@collab.sakaiproject.org>;\n          Sat, 15 Dec 2007 19:22:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A80E8B15A\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 19:22:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFJEsmL015100\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 14:14:54 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFJErCP015098\n\tfor source@collab.sakaiproject.org; Sat, 15 Dec 2007 14:14:53 -0500\nDate: Sat, 15 Dec 2007 14:14:53 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39317 - sam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec 15 14:23:15 2007\nX-DSPAM-Confidence: 0.8424\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39317\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-15 14:14:50 -0500 (Sat, 15 Dec 2007)\nNew Revision: 39317\n\nModified:\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/AssessmentEntityProducer.java\nLog:\nSAK-12433.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Sat Dec 15 14:04:44 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 15 Dec 2007 14:04:44 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 15 Dec 2007 14:04:44 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby brazil.mail.umich.edu () with ESMTP id lBFJ4hTw012812;\n\tSat, 15 Dec 2007 14:04:43 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 47642546.28AF5.30736 ; \n\t15 Dec 2007 14:04:40 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B4ADF9E612;\n\tSat, 15 Dec 2007 19:04:23 +0000 (GMT)\nMessage-ID: <200712151856.lBFIu54f015084@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 464\n          for <source@collab.sakaiproject.org>;\n          Sat, 15 Dec 2007 19:03:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 01F7A37284\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 19:04:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFIuA1J015086\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 13:56:10 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFIu54f015084\n\tfor source@collab.sakaiproject.org; Sat, 15 Dec 2007 13:56:05 -0500\nDate: Sat, 15 Dec 2007 13:56:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39316 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec 15 14:04:44 2007\nX-DSPAM-Confidence: 0.8444\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39316\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-15 13:56:01 -0500 (Sat, 15 Dec 2007)\nNew Revision: 39316\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdate externals for SAK-12433.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Sat Dec 15 13:18:12 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 15 Dec 2007 13:18:12 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 15 Dec 2007 13:18:12 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby flawless.mail.umich.edu () with ESMTP id lBFIIBRp007907;\n\tSat, 15 Dec 2007 13:18:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 47641A5D.DBB87.8490 ; \n\t15 Dec 2007 13:18:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3FD4F9FA27;\n\tSat, 15 Dec 2007 18:13:58 +0000 (GMT)\nMessage-ID: <200712151808.lBFI8lkD015062@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 629\n          for <source@collab.sakaiproject.org>;\n          Sat, 15 Dec 2007 18:12:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2683038FB9\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 18:16:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFI8lot015064\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 13:08:47 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFI8lkD015062\n\tfor source@collab.sakaiproject.org; Sat, 15 Dec 2007 13:08:47 -0500\nDate: Sat, 15 Dec 2007 13:08:47 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec 15 13:18:12 2007\nX-DSPAM-Confidence: 0.8467\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39315\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-15 13:08:26 -0500 (Sat, 15 Dec 2007)\nNew Revision: 39315\n\nAdded:\noncourse/trunk/src/web/news-impl/\noncourse/trunk/src/web/news-impl/impl/\noncourse/trunk/src/web/news-impl/impl/src/\noncourse/trunk/src/web/news-impl/impl/src/java/\noncourse/trunk/src/web/news-impl/impl/src/java/org/\noncourse/trunk/src/web/news-impl/impl/src/java/org/sakaiproject/\noncourse/trunk/src/web/news-impl/impl/src/java/org/sakaiproject/news/\noncourse/trunk/src/web/news-impl/impl/src/java/org/sakaiproject/news/impl/\noncourse/trunk/src/web/news-impl/impl/src/java/org/sakaiproject/news/impl/BasicNewsService.java\noncourse/trunk/src/web/web-impl/\noncourse/trunk/src/web/web-impl/impl/\noncourse/trunk/src/web/web-impl/impl/src/\noncourse/trunk/src/web/web-impl/impl/src/java/\noncourse/trunk/src/web/web-impl/impl/src/java/org/\noncourse/trunk/src/web/web-impl/impl/src/java/org/sakaiproject/\noncourse/trunk/src/web/web-impl/impl/src/java/org/sakaiproject/web/\noncourse/trunk/src/web/web-impl/impl/src/java/org/sakaiproject/web/impl/\noncourse/trunk/src/web/web-impl/impl/src/java/org/sakaiproject/web/impl/WebServiceImpl.java\nLog:\nSAK-12433 => merge in r39256, r39258 for web from sakai_2-4-x of r31545.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Sat Dec 15 12:29:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 15 Dec 2007 12:29:53 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 15 Dec 2007 12:29:53 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby panther.mail.umich.edu () with ESMTP id lBFHTqmc018393;\n\tSat, 15 Dec 2007 12:29:52 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 47640F0B.6BD67.19634 ; \n\t15 Dec 2007 12:29:50 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 90D779E11E;\n\tSat, 15 Dec 2007 17:29:08 +0000 (GMT)\nMessage-ID: <200712151720.lBFHKurr014956@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 442\n          for <source@collab.sakaiproject.org>;\n          Sat, 15 Dec 2007 17:28:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3F16D3868D\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 17:28:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFHKuo7014958\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 12:20:56 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFHKurr014956\n\tfor source@collab.sakaiproject.org; Sat, 15 Dec 2007 12:20:56 -0500\nDate: Sat, 15 Dec 2007 12:20:56 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39314 - alias/trunk/alias-impl/impl/src/java/org/sakaiproject/alias/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec 15 12:29:53 2007\nX-DSPAM-Confidence: 0.7544\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39314\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-15 12:20:51 -0500 (Sat, 15 Dec 2007)\nNew Revision: 39314\n\nModified:\nalias/trunk/alias-impl/impl/src/java/org/sakaiproject/alias/impl/BaseAliasService.java\nLog:\nSAK-12447\nAdded A check for null entries going into the cache \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Sat Dec 15 12:11:18 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 15 Dec 2007 12:11:18 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 15 Dec 2007 12:11:18 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby faithful.mail.umich.edu () with ESMTP id lBFHBHIE004854;\n\tSat, 15 Dec 2007 12:11:17 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 47640A9A.1E5F0.28760 ; \n\t15 Dec 2007 12:11:04 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 876CC9F721;\n\tSat, 15 Dec 2007 17:10:43 +0000 (GMT)\nMessage-ID: <200712151702.lBFH2Yji014935@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 949\n          for <source@collab.sakaiproject.org>;\n          Sat, 15 Dec 2007 17:10:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E89F9378DA\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 17:10:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFH2Y6Q014937\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 12:02:34 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFH2Yji014935\n\tfor source@collab.sakaiproject.org; Sat, 15 Dec 2007 12:02:34 -0500\nDate: Sat, 15 Dec 2007 12:02:34 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39313 - calendar/branches/oncourse_opc_122007/calendar-impl/impl/src/java/org/sakaiproject/calendar/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec 15 12:11:18 2007\nX-DSPAM-Confidence: 0.9826\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39313\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-15 12:02:27 -0500 (Sat, 15 Dec 2007)\nNew Revision: 39313\n\nModified:\ncalendar/branches/oncourse_opc_122007/calendar-impl/impl/src/java/org/sakaiproject/calendar/impl/BaseCalendarService.java\nLog:\nSAK-12433 => apply patch for calendar.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom tnguyen@iupui.edu Sat Dec 15 08:54:18 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 15 Dec 2007 08:54:18 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 15 Dec 2007 08:54:18 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby brazil.mail.umich.edu () with ESMTP id lBFDsHwr023794;\n\tSat, 15 Dec 2007 08:54:17 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 4763DC83.ECE9D.23993 ; \n\t15 Dec 2007 08:54:14 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 130A550347;\n\tSat, 15 Dec 2007 13:54:46 +0000 (GMT)\nMessage-ID: <200712151345.lBFDjlsX014891@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 694\n          for <source@collab.sakaiproject.org>;\n          Sat, 15 Dec 2007 13:54:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 305FF341FC\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 13:53:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBFDjlFi014893\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 08:45:47 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBFDjlsX014891\n\tfor source@collab.sakaiproject.org; Sat, 15 Dec 2007 08:45:47 -0500\nDate: Sat, 15 Dec 2007 08:45:47 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to tnguyen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: tnguyen@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec 15 08:54:18 2007\nX-DSPAM-Confidence: 0.9784\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39312\n\nAuthor: tnguyen@iupui.edu\nDate: 2007-12-15 08:45:40 -0500 (Sat, 15 Dec 2007)\nNew Revision: 39312\n\nModified:\ngradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/Assignment.java\ngradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java\ngradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookDefinition.java\ngradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java\ngradebook/trunk/service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sakai2impl/GradebookEntityProducer.java\nLog:\nsak-12433.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Sat Dec 15 01:32:11 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 15 Dec 2007 01:32:11 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 15 Dec 2007 01:32:11 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby flawless.mail.umich.edu () with ESMTP id lBF6WAom005893;\n\tSat, 15 Dec 2007 01:32:10 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 476374E5.55133.12410 ; \n\t15 Dec 2007 01:32:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CFB1B8DD71;\n\tSat, 15 Dec 2007 06:26:03 +0000 (GMT)\nMessage-ID: <200712150623.lBF6NmRu014311@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 581\n          for <source@collab.sakaiproject.org>;\n          Sat, 15 Dec 2007 06:25:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1435B3956A\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 06:31:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBF6NmsX014313\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 01:23:48 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBF6NmRu014311\n\tfor source@collab.sakaiproject.org; Sat, 15 Dec 2007 01:23:48 -0500\nDate: Sat, 15 Dec 2007 01:23:48 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39311 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec 15 01:32:11 2007\nX-DSPAM-Confidence: 0.9821\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39311\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-15 01:23:44 -0500 (Sat, 15 Dec 2007)\nNew Revision: 39311\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdate external for SAK-12461\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Sat Dec 15 01:28:22 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 15 Dec 2007 01:28:22 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 15 Dec 2007 01:28:23 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby godsend.mail.umich.edu () with ESMTP id lBF6SM4E004782;\n\tSat, 15 Dec 2007 01:28:22 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 47637401.9F78E.10376 ; \n\t15 Dec 2007 01:28:20 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A62EB5A7E6;\n\tSat, 15 Dec 2007 06:22:14 +0000 (GMT)\nMessage-ID: <200712150620.lBF6K8wX014291@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 941\n          for <source@collab.sakaiproject.org>;\n          Sat, 15 Dec 2007 06:21:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A05313956A\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 06:28:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBF6K8oA014294\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 01:20:08 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBF6K8wX014291\n\tfor source@collab.sakaiproject.org; Sat, 15 Dec 2007 01:20:08 -0500\nDate: Sat, 15 Dec 2007 01:20:08 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec 15 01:28:23 2007\nX-DSPAM-Confidence: 0.8475\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39310\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-15 01:19:59 -0500 (Sat, 15 Dec 2007)\nNew Revision: 39310\n\nModified:\ngradebook/branches/oncourse_opc_122007/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties\ngradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java\ngradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/BulkAssignmentDecoratedBean.java\ngradebook/branches/oncourse_opc_122007/app/ui/src/webapp/inc/assignmentEditing.jspf\ngradebook/branches/oncourse_opc_122007/app/ui/src/webapp/inc/bulkNewItems.jspf\nLog:\nSAK-12461 => svn merge -r39308:39309 https://source.sakaiproject.org/svn/gradebook/trunk\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Sat Dec 15 01:21:59 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 15 Dec 2007 01:21:59 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 15 Dec 2007 01:21:59 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby godsend.mail.umich.edu () with ESMTP id lBF6LwNW003555;\n\tSat, 15 Dec 2007 01:21:58 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 47637281.11776.31544 ; \n\t15 Dec 2007 01:21:56 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 76A705A7E6;\n\tSat, 15 Dec 2007 06:15:19 +0000 (GMT)\nMessage-ID: <200712150611.lBF6BoSB014274@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 984\n          for <source@collab.sakaiproject.org>;\n          Sat, 15 Dec 2007 06:13:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C426F39582\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 06:19:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBF6BonY014276\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 01:11:50 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBF6BoSB014274\n\tfor source@collab.sakaiproject.org; Sat, 15 Dec 2007 01:11:50 -0500\nDate: Sat, 15 Dec 2007 01:11:50 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39309 - in gradebook/trunk/app/ui/src: bundle/org/sakaiproject/tool/gradebook/bundle java/org/sakaiproject/tool/gradebook/ui webapp/inc\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec 15 01:21:59 2007\nX-DSPAM-Confidence: 0.9830\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39309\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-15 01:11:33 -0500 (Sat, 15 Dec 2007)\nNew Revision: 39309\n\nModified:\ngradebook/trunk/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/BulkAssignmentDecoratedBean.java\ngradebook/trunk/app/ui/src/webapp/inc/assignmentEditing.jspf\ngradebook/trunk/app/ui/src/webapp/inc/bulkNewItems.jspf\nLog:\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12461\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Fri Dec 14 20:12:54 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 20:12:54 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 20:12:54 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby chaos.mail.umich.edu () with ESMTP id lBF1CrHf027650;\n\tFri, 14 Dec 2007 20:12:53 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 47632A0F.BB794.10862 ; \n\t14 Dec 2007 20:12:50 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2AE439EFD4;\n\tSat, 15 Dec 2007 00:43:49 +0000 (GMT)\nMessage-ID: <200712150100.lBF10wY5014044@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 616\n          for <source@collab.sakaiproject.org>;\n          Sat, 15 Dec 2007 00:43:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D27A7BE30\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 01:08:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBF10wcP014046\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 20:00:58 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBF10wY5014044\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 20:00:58 -0500\nDate: Fri, 14 Dec 2007 20:00:58 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39308 - alias/trunk/alias-impl/impl/src/java/org/sakaiproject/alias/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 20:12:54 2007\nX-DSPAM-Confidence: 0.9836\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39308\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-14 20:00:54 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39308\n\nModified:\nalias/trunk/alias-impl/impl/src/java/org/sakaiproject/alias/impl/BaseAliasService.java\nLog:\nSAK-12447\n\nAdded a check not to return null aliases.\n\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 19:51:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 19:51:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 19:51:25 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby casino.mail.umich.edu () with ESMTP id lBF0pOc3010179;\n\tFri, 14 Dec 2007 19:51:24 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 47632507.5E100.8608 ; \n\t14 Dec 2007 19:51:22 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 83EC29EFAE;\n\tSat, 15 Dec 2007 00:22:24 +0000 (GMT)\nMessage-ID: <200712150023.lBF0Nh6M013976@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 90\n          for <source@collab.sakaiproject.org>;\n          Sat, 15 Dec 2007 00:22:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 777A8395E3\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 00:31:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBF0NhiL013978\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 19:23:43 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBF0Nh6M013976\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 19:23:43 -0500\nDate: Fri, 14 Dec 2007 19:23:43 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39305 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 19:51:25 2007\nX-DSPAM-Confidence: 0.9840\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39305\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 19:23:41 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39305\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdate external for get assignment back to oncourse_2-4-x.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Fri Dec 14 19:47:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 19:47:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 19:47:25 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby chaos.mail.umich.edu () with ESMTP id lBF0lOa3019264;\n\tFri, 14 Dec 2007 19:47:24 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 47632417.28568.1005 ; \n\t14 Dec 2007 19:47:21 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8A5539EF8A;\n\tSat, 15 Dec 2007 00:18:23 +0000 (GMT)\nMessage-ID: <200712150039.lBF0dAMS014002@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 80\n          for <source@collab.sakaiproject.org>;\n          Sat, 15 Dec 2007 00:18:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 62655395ED\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 00:47:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBF0dAPV014004\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 19:39:10 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBF0dAMS014002\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 19:39:10 -0500\nDate: Fri, 14 Dec 2007 19:39:10 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39307 - search/trunk/search-impl/impl/src/java/org/sakaiproject/search/indexer/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 19:47:25 2007\nX-DSPAM-Confidence: 0.9850\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39307\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-14 19:39:06 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39307\n\nModified:\nsearch/trunk/search-impl/impl/src/java/org/sakaiproject/search/indexer/impl/TransactionalIndexWorker.java\nLog:\nSAK-12459\n\nAdded a pre clear to make certain the thread local cache is empty.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Fri Dec 14 19:45:16 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 19:45:16 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 19:45:16 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby flawless.mail.umich.edu () with ESMTP id lBF0jF3A009609;\n\tFri, 14 Dec 2007 19:45:15 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 47632395.55305.22306 ; \n\t14 Dec 2007 19:45:12 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 22F7B9EF8A;\n\tSat, 15 Dec 2007 00:16:15 +0000 (GMT)\nMessage-ID: <200712150037.lBF0axWs013990@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 750\n          for <source@collab.sakaiproject.org>;\n          Sat, 15 Dec 2007 00:16:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 69FDC395ED\n\tfor <source@collab.sakaiproject.org>; Sat, 15 Dec 2007 00:44:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBF0b0P8013992\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 19:37:00 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBF0axWs013990\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 19:37:00 -0500\nDate: Fri, 14 Dec 2007 19:37:00 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 19:45:16 2007\nX-DSPAM-Confidence: 0.9830\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39306\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-14 19:36:42 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39306\n\nModified:\nsearch/trunk/search-impl/impl/src/java/org/sakaiproject/search/indexer/impl/TransactionalIndexWorker.java\nsearch/trunk/search-impl/impl/src/test/org/sakaiproject/search/index/soaktest/SearchIndexerNode.java\nsearch/trunk/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/JournalOptimzationOperationTest.java\nsearch/trunk/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/MergeUpdateOperationTest.java\nsearch/trunk/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/OptimizeOperationTest.java\nsearch/trunk/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/TransactionalIndexWorkerTest.java\nsearch/trunk/search-impl/pack/src/webapp/WEB-INF/parallelIndexComponents.xml\nLog:\nSAK-12459\n\nPossible Fix,\nClearing the thread local cache in the indexer loop, just in case there is stale content.\n\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Fri Dec 14 18:50:15 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 18:50:15 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 18:50:15 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby mission.mail.umich.edu () with ESMTP id lBENoDiD020569;\n\tFri, 14 Dec 2007 18:50:13 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 476316AF.88541.31709 ; \n\t14 Dec 2007 18:50:10 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9B26A94C56;\n\tFri, 14 Dec 2007 23:50:00 +0000 (GMT)\nMessage-ID: <200712142341.lBENfpSa013962@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1013\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 23:49:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B173D3721C\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 23:49:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBENfpNS013964\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 18:41:51 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBENfpSa013962\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 18:41:51 -0500\nDate: Fri, 14 Dec 2007 18:41:51 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r39304 - gradebook/branches/sakai_2-5-x/service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sections\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 18:50:15 2007\nX-DSPAM-Confidence: 0.7008\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39304\n\nAuthor: mmmay@indiana.edu\nDate: 2007-12-14 18:41:49 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39304\n\nModified:\ngradebook/branches/sakai_2-5-x/service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sections/AuthzSectionsImpl.java\nLog:\nBacking out merge in 2.5.x\n\nsvn merge -r 39184:39185 https://source.sakaiproject.org/svn/gradebook/trunk\nU    service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sections/AuthzSectionsImpl.java\nin-143-196:~/java/2-5/sakai_2-5-x/gradebook mmmay$ svn log -r 39184:39185 https://source.sakaiproject.org/svn/gradebook/trunk\n------------------------------------------------------------------------\nr39185 | wagnermr@iupui.edu | 2007-12-13 09:29:44 -0500 (Thu, 13 Dec 2007) | 4 lines\n\nSAK-12432\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12432\nCircular dependency between GradebookService and facade Authz\nfixed class cast exception\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom louis@media.berkeley.edu Fri Dec 14 18:18:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 18:18:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 18:18:19 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby mission.mail.umich.edu () with ESMTP id lBENIIZU004766;\n\tFri, 14 Dec 2007 18:18:18 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 47630F34.B4739.24604 ; \n\t14 Dec 2007 18:18:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 48D409EE3F;\n\tFri, 14 Dec 2007 23:18:10 +0000 (GMT)\nMessage-ID: <200712142309.lBEN9wlk013921@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 828\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 23:17:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 53A7433F66\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 23:17:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEN9wgo013923\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 18:09:58 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEN9wlk013921\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 18:09:58 -0500\nDate: Fri, 14 Dec 2007 18:09:58 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: louis@media.berkeley.edu\nSubject: [sakai] svn commit: r39303 - bspace/osp/sakai_2-4-x/warehouse/api-impl/src/java/org/theospi/portfolio/warehouse/sakai/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 18:18:19 2007\nX-DSPAM-Confidence: 0.6950\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39303\n\nAuthor: louis@media.berkeley.edu\nDate: 2007-12-14 18:09:54 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39303\n\nModified:\nbspace/osp/sakai_2-4-x/warehouse/api-impl/src/java/org/theospi/portfolio/warehouse/sakai/assignment/AssignmentWarehouseService.java\nLog:\nBSP-1376 Update Bspace trunk with latest updates from 2.4-x trunk applied patch to osp \n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom louis@media.berkeley.edu Fri Dec 14 18:12:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 18:12:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 18:12:25 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby jacknife.mail.umich.edu () with ESMTP id lBENCPR5004788;\n\tFri, 14 Dec 2007 18:12:25 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 47630DD2.753F0.9443 ; \n\t14 Dec 2007 18:12:21 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 943EE9EF23;\n\tFri, 14 Dec 2007 23:12:13 +0000 (GMT)\nMessage-ID: <200712142231.lBEMVx2x013704@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 516\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 23:11:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 60B723940B\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 22:39:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEMVxiT013706\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 17:31:59 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEMVx2x013704\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 17:31:59 -0500\nDate: Fri, 14 Dec 2007 17:31:59 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: louis@media.berkeley.edu\nSubject: [sakai] svn commit: r39293 - bspace/osp\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 18:12:25 2007\nX-DSPAM-Confidence: 0.6944\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39293\n\nAuthor: louis@media.berkeley.edu\nDate: 2007-12-14 17:31:56 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39293\n\nRemoved:\nbspace/osp/warehouse/\nLog:\nRemoved file/folder\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom louis@media.berkeley.edu Fri Dec 14 18:12:22 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 18:12:22 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 18:12:22 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby fan.mail.umich.edu () with ESMTP id lBENCLZK016004;\n\tFri, 14 Dec 2007 18:12:21 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 47630DD0.299A6.6635 ; \n\t14 Dec 2007 18:12:18 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EB03C9EF22;\n\tFri, 14 Dec 2007 23:12:12 +0000 (GMT)\nMessage-ID: <200712142234.lBEMY7i9013752@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 214\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 23:11:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 65E8039516\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 22:41:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEMY7Km013754\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 17:34:07 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEMY7i9013752\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 17:34:07 -0500\nDate: Fri, 14 Dec 2007 17:34:07 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: louis@media.berkeley.edu\nSubject: [sakai] svn commit: r39297 - bspace/osp/sakai_2-4x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 18:12:22 2007\nX-DSPAM-Confidence: 0.6953\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39297\n\nAuthor: louis@media.berkeley.edu\nDate: 2007-12-14 17:34:02 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39297\n\nAdded:\nbspace/osp/sakai_2-4x/sakai_2-4-x/\nLog:\nBSP-1376 Update Bspace trunk with latest updates from 2.4-x trunk\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 18:12:21 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 18:12:21 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 18:12:21 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby chaos.mail.umich.edu () with ESMTP id lBENCJxT017964;\n\tFri, 14 Dec 2007 18:12:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 47630DCB.CCCB5.26249 ; \n\t14 Dec 2007 18:12:14 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BA4F39EF1E;\n\tFri, 14 Dec 2007 23:12:11 +0000 (GMT)\nMessage-ID: <200712142233.lBEMXnLP013740@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 759\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 23:11:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 89C4439509\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 22:41:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEMXn9d013742\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 17:33:49 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEMXnLP013740\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 17:33:49 -0500\nDate: Fri, 14 Dec 2007 17:33:49 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39296 - discussion/branches/SAK-12433/discussion-impl/impl/src/java/org/sakaiproject/discussion/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 18:12:21 2007\nX-DSPAM-Confidence: 0.9810\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39296\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 17:33:48 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39296\n\nModified:\ndiscussion/branches/SAK-12433/discussion-impl/impl/src/java/org/sakaiproject/discussion/impl/BaseDiscussionService.java\nLog:\nsak-12433.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom louis@media.berkeley.edu Fri Dec 14 18:12:20 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 18:12:20 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 18:12:20 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby casino.mail.umich.edu () with ESMTP id lBENCJth006011;\n\tFri, 14 Dec 2007 18:12:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 47630DCE.523A1.19407 ; \n\t14 Dec 2007 18:12:17 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 70EC89EF20;\n\tFri, 14 Dec 2007 23:12:12 +0000 (GMT)\nMessage-ID: <200712142233.lBEMX2hh013728@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 162\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 23:11:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EEAFD394A5\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 22:40:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEMX2sc013730\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 17:33:02 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEMX2hh013728\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 17:33:02 -0500\nDate: Fri, 14 Dec 2007 17:33:02 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: louis@media.berkeley.edu\nSubject: [sakai] svn commit: r39295 - bspace/osp\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 18:12:20 2007\nX-DSPAM-Confidence: 0.6946\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39295\n\nAuthor: louis@media.berkeley.edu\nDate: 2007-12-14 17:32:59 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39295\n\nAdded:\nbspace/osp/sakai_2-4x/\nLog:\nCreated folder remotely\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom louis@media.berkeley.edu Fri Dec 14 18:11:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 18:11:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 18:11:25 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby faithful.mail.umich.edu () with ESMTP id lBENBOdQ013062;\n\tFri, 14 Dec 2007 18:11:24 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 47630D8B.DD3B3.23884 ; \n\t14 Dec 2007 18:11:10 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 042B99EF1F;\n\tFri, 14 Dec 2007 23:11:07 +0000 (GMT)\nMessage-ID: <200712142232.lBEMWXlo013716@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 589\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 23:10:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4802C39497\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 22:40:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEMWXBB013718\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 17:32:33 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEMWXlo013716\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 17:32:33 -0500\nDate: Fri, 14 Dec 2007 17:32:33 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: louis@media.berkeley.edu\nSubject: [sakai] svn commit: r39294 - bspace/osp\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 18:11:25 2007\nX-DSPAM-Confidence: 0.6932\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39294\n\nAuthor: louis@media.berkeley.edu\nDate: 2007-12-14 17:32:30 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39294\n\nAdded:\nbspace/osp/old-sakai_2-4-x/\nRemoved:\nbspace/osp/sakai_2-4-x/\nLog:\nRenamed remotely\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 17:55:41 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 17:55:41 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 17:55:41 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby panther.mail.umich.edu () with ESMTP id lBEMtfZj005644;\n\tFri, 14 Dec 2007 17:55:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 476309E8.20615.18058 ; \n\t14 Dec 2007 17:55:38 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5156998946;\n\tFri, 14 Dec 2007 22:46:37 +0000 (GMT)\nMessage-ID: <200712142247.lBEMlIRa013868@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 608\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 22:46:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 36EBB39502\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 22:55:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEMlItO013870\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 17:47:18 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEMlIRa013868\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 17:47:18 -0500\nDate: Fri, 14 Dec 2007 17:47:18 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39302 - assignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 17:55:41 2007\nX-DSPAM-Confidence: 0.8428\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39302\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 17:47:16 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39302\n\nModified:\nassignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nsak-12433.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 17:54:57 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 17:54:57 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 17:54:57 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby fan.mail.umich.edu () with ESMTP id lBEMsuvF006796;\n\tFri, 14 Dec 2007 17:54:56 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 476309BA.4CF13.27348 ; \n\t14 Dec 2007 17:54:53 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4DBDD9EDA9;\n\tFri, 14 Dec 2007 22:45:50 +0000 (GMT)\nMessage-ID: <200712142212.lBEMCZBw013684@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 434\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 22:45:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E2E3639532\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 22:20:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEMCZq7013686\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 17:12:35 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEMCZBw013684\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 17:12:35 -0500\nDate: Fri, 14 Dec 2007 17:12:35 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39292 - rwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 17:54:57 2007\nX-DSPAM-Confidence: 0.9815\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39292\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 17:12:33 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39292\n\nModified:\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/RWikiObjectServiceImpl.java\nLog:\nsak-12433.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom louis@media.berkeley.edu Fri Dec 14 17:44:57 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 17:44:57 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 17:44:57 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby panther.mail.umich.edu () with ESMTP id lBEMiujJ032593;\n\tFri, 14 Dec 2007 17:44:56 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 4763075D.57B69.3575 ; \n\t14 Dec 2007 17:44:48 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A205C9ED89;\n\tFri, 14 Dec 2007 22:35:37 +0000 (GMT)\nMessage-ID: <200712142236.lBEMaL31013806@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 982\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 22:35:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5537B39526\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 22:44:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEMaL4u013808\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 17:36:21 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEMaL31013806\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 17:36:21 -0500\nDate: Fri, 14 Dec 2007 17:36:21 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: louis@media.berkeley.edu\nSubject: [sakai] svn commit: r39301 - bspace/osp\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 17:44:57 2007\nX-DSPAM-Confidence: 0.6933\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39301\n\nAuthor: louis@media.berkeley.edu\nDate: 2007-12-14 17:36:19 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39301\n\nRemoved:\nbspace/osp/sakai/\nLog:\nRemoved file/folder\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom louis@media.berkeley.edu Fri Dec 14 17:44:35 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 17:44:35 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 17:44:35 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby fan.mail.umich.edu () with ESMTP id lBEMiYE4002169;\n\tFri, 14 Dec 2007 17:44:34 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 4763074B.7DCE4.31101 ; \n\t14 Dec 2007 17:44:30 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 652129EC6A;\n\tFri, 14 Dec 2007 22:35:28 +0000 (GMT)\nMessage-ID: <200712142236.lBEMaD85013794@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 931\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 22:35:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E8ED439526\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 22:44:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEMaDCf013796\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 17:36:13 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEMaD85013794\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 17:36:13 -0500\nDate: Fri, 14 Dec 2007 17:36:13 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: louis@media.berkeley.edu\nSubject: [sakai] svn commit: r39300 - bspace/osp\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 17:44:35 2007\nX-DSPAM-Confidence: 0.6930\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39300\n\nAuthor: louis@media.berkeley.edu\nDate: 2007-12-14 17:36:10 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39300\n\nRemoved:\nbspace/osp/old-sakai_2-4-x/\nLog:\nRemoved file/folder\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom louis@media.berkeley.edu Fri Dec 14 17:44:10 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 17:44:10 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 17:44:10 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby brazil.mail.umich.edu () with ESMTP id lBEMiASl029764;\n\tFri, 14 Dec 2007 17:44:10 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4763072B.59507.13749 ; \n\t14 Dec 2007 17:44:02 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 554E198946;\n\tFri, 14 Dec 2007 22:34:54 +0000 (GMT)\nMessage-ID: <200712142235.lBEMZkdC013782@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 587\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 22:34:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6AA2039526\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 22:43:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEMZkYF013784\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 17:35:46 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEMZkdC013782\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 17:35:46 -0500\nDate: Fri, 14 Dec 2007 17:35:46 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: louis@media.berkeley.edu\nSubject: [sakai] svn commit: r39299 - in bspace/osp: . sakai\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 17:44:10 2007\nX-DSPAM-Confidence: 0.6945\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39299\n\nAuthor: louis@media.berkeley.edu\nDate: 2007-12-14 17:35:42 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39299\n\nAdded:\nbspace/osp/sakai_2-4-x/\nRemoved:\nbspace/osp/sakai/sakai_2-4-x/\nLog:\nMoved remotely\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom louis@media.berkeley.edu Fri Dec 14 17:43:59 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 17:43:59 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 17:43:59 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby sleepers.mail.umich.edu () with ESMTP id lBEMhwcA027067;\n\tFri, 14 Dec 2007 17:43:58 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 47630729.1B763.15491 ; \n\t14 Dec 2007 17:43:55 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7FD62778BC;\n\tFri, 14 Dec 2007 22:34:50 +0000 (GMT)\nMessage-ID: <200712142235.lBEMZYHW013770@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 654\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 22:34:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 56AD739526\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 22:43:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEMZYC5013772\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 17:35:34 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEMZYHW013770\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 17:35:34 -0500\nDate: Fri, 14 Dec 2007 17:35:34 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: louis@media.berkeley.edu\nSubject: [sakai] svn commit: r39298 - bspace/osp\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 17:43:59 2007\nX-DSPAM-Confidence: 0.6940\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39298\n\nAuthor: louis@media.berkeley.edu\nDate: 2007-12-14 17:35:31 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39298\n\nAdded:\nbspace/osp/sakai/\nRemoved:\nbspace/osp/sakai_2-4x/\nLog:\nRenamed remotely\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 16:50:38 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 16:50:38 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 16:50:38 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby awakenings.mail.umich.edu () with ESMTP id lBELobqp009441;\n\tFri, 14 Dec 2007 16:50:37 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4762FAA7.5CF9B.24274 ; \n\t14 Dec 2007 16:50:34 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EC47A9ED1F;\n\tFri, 14 Dec 2007 21:50:19 +0000 (GMT)\nMessage-ID: <200712142141.lBELfwlx013541@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 30\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 21:49:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E30CA39349\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 21:49:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBELfw44013543\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 16:41:58 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBELfwlx013541\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 16:41:58 -0500\nDate: Fri, 14 Dec 2007 16:41:58 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39291 - in site-manage/branches/SAK-12433/site-manage-tool/tool/src: bundle java/org/sakaiproject/site/tool webapp/vm/sitesetup\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 16:50:38 2007\nX-DSPAM-Confidence: 0.7558\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39291\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 16:41:56 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39291\n\nAdded:\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-importSitesMigrate.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-importMigrate.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-importSelection.vm\nModified:\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-import.vm\nLog:\nsak-12433.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom bkirschn@umich.edu Fri Dec 14 16:24:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 16:24:37 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 16:24:37 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby brazil.mail.umich.edu () with ESMTP id lBELOak0023796;\n\tFri, 14 Dec 2007 16:24:36 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 4762F48F.58D8.3346 ; \n\t14 Dec 2007 16:24:33 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C9D576DB5A;\n\tFri, 14 Dec 2007 21:24:30 +0000 (GMT)\nMessage-ID: <200712142116.lBELGAsi013474@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 13\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 21:24:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A5D283939A\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 21:24:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBELGAJk013476\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 16:16:11 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBELGAsi013474\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 16:16:10 -0500\nDate: Fri, 14 Dec 2007 16:16:10 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: bkirschn@umich.edu\nSubject: [sakai] svn commit: r39290 - calendar/trunk/calendar-impl/impl/src/java/org/sakaiproject/calendar/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 16:24:37 2007\nX-DSPAM-Confidence: 0.9834\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39290\n\nAuthor: bkirschn@umich.edu\nDate: 2007-12-14 16:16:09 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39290\n\nModified:\ncalendar/trunk/calendar-impl/impl/src/java/org/sakaiproject/calendar/impl/BaseCalendarService.java\nLog:\nSAK-12221 check for null range parm in getEvents()\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Fri Dec 14 16:13:52 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 16:13:52 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 16:13:52 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby panther.mail.umich.edu () with ESMTP id lBELDpO6013594;\n\tFri, 14 Dec 2007 16:13:51 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 4762F20A.884D8.29953 ; \n\t14 Dec 2007 16:13:49 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 30B0B9EC4D;\n\tFri, 14 Dec 2007 21:13:45 +0000 (GMT)\nMessage-ID: <200712142105.lBEL5SYj013460@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 83\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 21:13:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2F5793943D\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 21:13:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEL5S5c013462\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 16:05:28 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEL5SYj013460\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 16:05:28 -0500\nDate: Fri, 14 Dec 2007 16:05:28 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 16:13:52 2007\nX-DSPAM-Confidence: 0.8424\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39289\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-14 16:05:16 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39289\n\nAdded:\nuser/trunk/user-tool-prefs/tool/src/webapp/css/\nuser/trunk/user-tool-prefs/tool/src/webapp/css/useDHTMLMore.css\nuser/trunk/user-tool-prefs/tool/src/webapp/prefs/tab-dhtml-moresites.jsp\nModified:\nuser/trunk/user-tool-prefs/tool/src/bundle/user-tool-prefs.properties\nuser/trunk/user-tool-prefs/tool/src/java/org/sakaiproject/user/tool/UserPrefsTool.java\nuser/trunk/user-tool-prefs/tool/src/webapp/WEB-INF/faces-config.xml\nLog:\nSAK-11460\n\nPatch by Anastasia Cheetham & Joseph Scheuhammer applied, Thank you\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 16:07:40 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 16:07:40 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 16:07:40 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby casino.mail.umich.edu () with ESMTP id lBEL7dc2005894;\n\tFri, 14 Dec 2007 16:07:39 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4762F093.E61D8.26929 ; \n\t14 Dec 2007 16:07:34 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 705039EA4C;\n\tFri, 14 Dec 2007 21:07:31 +0000 (GMT)\nMessage-ID: <200712142059.lBEKx7nk013432@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 759\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 21:07:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8851D39409\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 21:06:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEKx8KK013434\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 15:59:08 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEKx7nk013432\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 15:59:07 -0500\nDate: Fri, 14 Dec 2007 15:59:07 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39288 - content/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 16:07:40 2007\nX-DSPAM-Confidence: 0.9822\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39288\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 15:59:06 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39288\n\nModified:\ncontent/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\nLog:\nsak-12433.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 16:02:35 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 16:02:35 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 16:02:35 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby chaos.mail.umich.edu () with ESMTP id lBEL2Y4c015060;\n\tFri, 14 Dec 2007 16:02:34 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 4762EF64.8F9A4.11891 ; \n\t14 Dec 2007 16:02:31 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BE3649EA6B;\n\tFri, 14 Dec 2007 21:02:25 +0000 (GMT)\nMessage-ID: <200712142054.lBEKsBU4013402@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 400\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 21:02:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D4CA039409\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 21:02:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEKsBKW013404\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 15:54:11 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEKsBU4013402\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 15:54:11 -0500\nDate: Fri, 14 Dec 2007 15:54:11 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39287 - entity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 16:02:35 2007\nX-DSPAM-Confidence: 0.9798\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39287\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 15:54:10 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39287\n\nModified:\nentity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/EntityTransferrer.java\nLog:\nSAK-12433.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 15:46:12 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 15:46:12 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 15:46:12 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby godsend.mail.umich.edu () with ESMTP id lBEKkB55032640;\n\tFri, 14 Dec 2007 15:46:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 4762EB81.C73B5.10044 ; \n\t14 Dec 2007 15:45:57 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 95E999EB99;\n\tFri, 14 Dec 2007 20:43:59 +0000 (GMT)\nMessage-ID: <200712142037.lBEKbhZ2013344@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1013\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 20:43:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3B44F393F3\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 20:45:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEKbh3T013346\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 15:37:43 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEKbhZ2013344\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 15:37:43 -0500\nDate: Fri, 14 Dec 2007 15:37:43 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [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!\n 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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 15:46:12 2007\nX-DSPAM-Confidence: 0.6941\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39285\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 15:37:38 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39285\n\nAdded:\ndiscussion/branches/SAK-12433/discussion-api/\ndiscussion/branches/SAK-12433/discussion-api/.classpath\ndiscussion/branches/SAK-12433/discussion-api/.project\ndiscussion/branches/SAK-12433/discussion-api/api/\ndiscussion/branches/SAK-12433/discussion-api/api/pom.xml\ndiscussion/branches/SAK-12433/discussion-api/api/project.xml\ndiscussion/branches/SAK-12433/discussion-api/api/src/\ndiscussion/branches/SAK-12433/discussion-api/api/src/java/\ndiscussion/branches/SAK-12433/discussion-api/api/src/java/org/\ndiscussion/branches/SAK-12433/discussion-api/api/src/java/org/sakaiproject/\ndiscussion/branches/SAK-12433/discussion-api/api/src/java/org/sakaiproject/discussion/\ndiscussion/branches/SAK-12433/discussion-api/api/src/java/org/sakaiproject/discussion/api/\ndiscussion/branches/SAK-12433/discussion-api/api/src/java/org/sakaiproject/discussion/api/DiscussionChannel.java\ndiscussion/branches/SAK-12433/discussion-api/api/src/java/org/sakaiproject/discussion/api/DiscussionChannelEdit.java\ndiscussion/branches/SAK-12433/discussion-api/api/src/java/org/sakaiproject/discussion/api/DiscussionMessage.java\ndiscussion/branches/SAK-12433/discussion-api/api/src/java/org/sakaiproject/discussion/api/DiscussionMessageEdit.java\ndiscussion/branches/SAK-12433/discussion-api/api/src/java/org/sakaiproject/discussion/api/DiscussionMessageHeader.java\ndiscussion/branches/SAK-12433/discussion-api/api/src/java/org/sakaiproject/discussion/api/DiscussionMessageHeaderEdit.java\ndiscussion/branches/SAK-12433/discussion-api/api/src/java/org/sakaiproject/discussion/api/DiscussionService.java\ndiscussion/branches/SAK-12433/discussion-api/api/src/java/org/sakaiproject/discussion/cover/\ndiscussion/branches/SAK-12433/discussion-api/api/src/java/org/sakaiproject/discussion/cover/DiscussionService.java\ndiscussion/branches/SAK-12433/discussion-help/\ndiscussion/branches/SAK-12433/discussion-help/pom.xml\ndiscussion/branches/SAK-12433/discussion-help/project.xml\ndiscussion/branches/SAK-12433/discussion-help/src/\ndiscussion/branches/SAK-12433/discussion-help/src/sakai_discussion/\ndiscussion/branches/SAK-12433/discussion-help/src/sakai_discussion/arau.html\ndiscussion/branches/SAK-12433/discussion-help/src/sakai_discussion/araz.html\ndiscussion/branches/SAK-12433/discussion-help/src/sakai_discussion/arbb.html\ndiscussion/branches/SAK-12433/discussion-help/src/sakai_discussion/arca.html\ndiscussion/branches/SAK-12433/discussion-help/src/sakai_discussion/ardo.html\ndiscussion/branches/SAK-12433/discussion-help/src/sakai_discussion/arfh.html\ndiscussion/branches/SAK-12433/discussion-help/src/sakai_discussion/help.xml\ndiscussion/branches/SAK-12433/discussion-impl/\ndiscussion/branches/SAK-12433/discussion-impl/.classpath\ndiscussion/branches/SAK-12433/discussion-impl/.project\ndiscussion/branches/SAK-12433/discussion-impl/impl/\ndiscussion/branches/SAK-12433/discussion-impl/impl/pom.xml\ndiscussion/branches/SAK-12433/discussion-impl/impl/project.xml\ndiscussion/branches/SAK-12433/discussion-impl/impl/src/\ndiscussion/branches/SAK-12433/discussion-impl/impl/src/java/\ndiscussion/branches/SAK-12433/discussion-impl/impl/src/java/org/\ndiscussion/branches/SAK-12433/discussion-impl/impl/src/java/org/sakaiproject/\ndiscussion/branches/SAK-12433/discussion-impl/impl/src/java/org/sakaiproject/discussion/\ndiscussion/branches/SAK-12433/discussion-impl/impl/src/java/org/sakaiproject/discussion/impl/\ndiscussion/branches/SAK-12433/discussion-impl/impl/src/java/org/sakaiproject/discussion/impl/BaseDiscussionService.java\ndiscussion/branches/SAK-12433/discussion-impl/impl/src/java/org/sakaiproject/discussion/impl/DbDiscussionService.java\ndiscussion/branches/SAK-12433/discussion-impl/impl/src/sql/\ndiscussion/branches/SAK-12433/discussion-impl/impl/src/sql/hsqldb/\ndiscussion/branches/SAK-12433/discussion-impl/impl/src/sql/hsqldb/sakai_discussion.sql\ndiscussion/branches/SAK-12433/discussion-impl/impl/src/sql/mysql/\ndiscussion/branches/SAK-12433/discussion-impl/impl/src/sql/mysql/sakai_discussion.sql\ndiscussion/branches/SAK-12433/discussion-impl/impl/src/sql/oracle/\ndiscussion/branches/SAK-12433/discussion-impl/impl/src/sql/oracle/sakai_discussion.sql\ndiscussion/branches/SAK-12433/discussion-impl/pack/\ndiscussion/branches/SAK-12433/discussion-impl/pack/pom.xml\ndiscussion/branches/SAK-12433/discussion-impl/pack/project.xml\ndiscussion/branches/SAK-12433/discussion-impl/pack/src/\ndiscussion/branches/SAK-12433/discussion-impl/pack/src/webapp/\ndiscussion/branches/SAK-12433/discussion-impl/pack/src/webapp/WEB-INF/\ndiscussion/branches/SAK-12433/discussion-impl/pack/src/webapp/WEB-INF/components.xml\ndiscussion/branches/SAK-12433/discussion-tool/\ndiscussion/branches/SAK-12433/discussion-tool/.classpath\ndiscussion/branches/SAK-12433/discussion-tool/.project\ndiscussion/branches/SAK-12433/discussion-tool/tool/\ndiscussion/branches/SAK-12433/discussion-tool/tool/pom.xml\ndiscussion/branches/SAK-12433/discussion-tool/tool/project.xml\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/bundle/\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion.metaprops\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion.properties\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_ar.properties\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_ca.metaprops\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_ca.properties\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_es.metaprops\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_es.properties\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_fr_CA.metaprops\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_fr_CA.properties\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_ja.metaprops\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_ja.properties\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_ko.metaprops\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_ko.properties\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_nl.metaprops\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_nl.properties\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_sv.properties\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_zh_CN.metaprops\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/bundle/discussion_zh_CN.properties\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/java/\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/java/org/\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/java/org/sakaiproject/\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/java/org/sakaiproject/discussion/\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/java/org/sakaiproject/discussion/tool/\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/java/org/sakaiproject/discussion/tool/DiscussionAction.java\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/webapp/\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/webapp/WEB-INF/\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/webapp/WEB-INF/web.xml\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/webapp/tools/\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/webapp/tools/sakai.discussion.xml\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/webapp/velocity.properties\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/webapp/vm/\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/webapp/vm/discussion/\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/webapp/vm/discussion/chef_threaded_discussionsII-Control.vm\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/webapp/vm/discussion/chef_threaded_discussionsII-DeleteCategoryConfirm.vm\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/webapp/vm/discussion/chef_threaded_discussionsII-DeleteTopicConfirm.vm\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/webapp/vm/discussion/chef_threaded_discussionsII-Layout.vm\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/webapp/vm/discussion/chef_threaded_discussionsII-List.vm\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/webapp/vm/discussion/chef_threaded_discussionsII-Newcategory.vm\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/webapp/vm/discussion/chef_threaded_discussionsII-Newtopic.vm\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/webapp/vm/discussion/chef_threaded_discussionsII-Reply.vm\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/webapp/vm/discussion/chef_threaded_discussionsII-Reply_Preview.vm\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/webapp/vm/discussion/chef_threaded_discussionsII-Toolbar.vm\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/webapp/vm/discussion/chef_threaded_discussionsII-customize.vm\ndiscussion/branches/SAK-12433/discussion-tool/tool/src/webapp/vm/discussion/chef_threaded_discussionsII-topic_content.vm\ndiscussion/branches/SAK-12433/pom.xml\nLog:\nSAK-12433 => from r31545 of sakai_2-4-x.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 15:43:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 15:43:53 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 15:43:53 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby fan.mail.umich.edu () with ESMTP id lBEKhqWK004376;\n\tFri, 14 Dec 2007 15:43:52 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4762EB02.64BA2.13765 ; \n\t14 Dec 2007 15:43:49 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2AC696DB5A;\n\tFri, 14 Dec 2007 20:41:52 +0000 (GMT)\nMessage-ID: <200712142035.lBEKZZLD013332@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 4\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 20:41:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B29AC39393\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 20:43:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEKZZaK013334\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 15:35:35 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEKZZLD013332\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 15:35:35 -0500\nDate: Fri, 14 Dec 2007 15:35:35 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39284 - discussion/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 15:43:53 2007\nX-DSPAM-Confidence: 0.9830\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39284\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 15:35:34 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39284\n\nAdded:\ndiscussion/branches/SAK-12433/\nLog:\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 15:35:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 15:35:13 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 15:35:13 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby godsend.mail.umich.edu () with ESMTP id lBEKZAfj026882;\n\tFri, 14 Dec 2007 15:35:10 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 4762E8F8.91D78.3373 ; \n\t14 Dec 2007 15:35:07 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E6CD59EB89;\n\tFri, 14 Dec 2007 20:35:02 +0000 (GMT)\nMessage-ID: <200712142026.lBEKQiBB013309@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 697\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 20:34:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0DE01393C6\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 20:34:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEKQi8G013311\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 15:26:44 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEKQiBB013309\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 15:26:44 -0500\nDate: Fri, 14 Dec 2007 15:26:44 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [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!\n 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!\n ject/tool/dummy samigo-api/src/java/org/sakaiproject/tool/dumm!\n y/ifc sa\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 15:35:13 2007\nX-DSPAM-Confidence: 0.5723\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39283\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 15:24:41 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39283\n\nAdded:\nsam/branches/SAK-12433/README.txt\nsam/branches/SAK-12433/build.xml\nsam/branches/SAK-12433/conf/\nsam/branches/SAK-12433/conf/opt/\nsam/branches/SAK-12433/conf/opt/j2ee/\nsam/branches/SAK-12433/conf/opt/j2ee/dev/\nsam/branches/SAK-12433/conf/opt/j2ee/dev/org/\nsam/branches/SAK-12433/conf/opt/j2ee/dev/org/sakaiproject/\nsam/branches/SAK-12433/conf/opt/j2ee/dev/org/sakaiproject/settings/\nsam/branches/SAK-12433/conf/opt/j2ee/dev/org/sakaiproject/settings/sam/\nsam/branches/SAK-12433/conf/opt/j2ee/dev/org/sakaiproject/settings/sam/OsidImplBindings.properties\nsam/branches/SAK-12433/conf/opt/j2ee/dev/org/sakaiproject/settings/sam/SAM.properties\nsam/branches/SAK-12433/conf/opt/j2ee/dev/org/sakaiproject/settings/sam/spring_contexts.properties\nsam/branches/SAK-12433/conf/opt/logs/\nsam/branches/SAK-12433/conf/opt/logs/dev/\nsam/branches/SAK-12433/conf/opt/logs/dev/Navigo/\nsam/branches/SAK-12433/conf/opt/logs/dev/Navigo/README.txt\nsam/branches/SAK-12433/conf/opt/readme.txt\nsam/branches/SAK-12433/conf/opt/sa_forms/\nsam/branches/SAK-12433/conf/opt/sa_forms/java/\nsam/branches/SAK-12433/conf/opt/sa_forms/java/dev/\nsam/branches/SAK-12433/conf/opt/sa_forms/java/dev/org/\nsam/branches/SAK-12433/conf/opt/sa_forms/java/dev/org/sakaiproject/\nsam/branches/SAK-12433/conf/opt/sa_forms/java/dev/org/sakaiproject/security/\nsam/branches/SAK-12433/conf/opt/sa_forms/java/dev/org/sakaiproject/security/sam/\nsam/branches/SAK-12433/conf/opt/sa_forms/java/dev/org/sakaiproject/security/sam/samigo.xml\nsam/branches/SAK-12433/docs/\nsam/branches/SAK-12433/docs/2_1_1_releaseNotes.txt\nsam/branches/SAK-12433/docs/2_1_releaseNotes.txt\nsam/branches/SAK-12433/docs/LICENSE.txt\nsam/branches/SAK-12433/docs/README.STANDALONE.txt\nsam/branches/SAK-12433/docs/README.import_export.txt\nsam/branches/SAK-12433/docs/README.txt\nsam/branches/SAK-12433/docs/delivery/\nsam/branches/SAK-12433/docs/delivery/implementation.txt\nsam/branches/SAK-12433/docs/facade_architecture_design.gif\nsam/branches/SAK-12433/docs/facade_design_decision.txt\nsam/branches/SAK-12433/docs/facade_html.zip\nsam/branches/SAK-12433/docs/license_1_0.html\nsam/branches/SAK-12433/docs/license_1_0.txt\nsam/branches/SAK-12433/docs/license_1_0_boilerplate.txt\nsam/branches/SAK-12433/docs/sam_js_licenses.txt\nsam/branches/SAK-12433/docs/service_api_design.txt\nsam/branches/SAK-12433/hibernate.properties\nsam/branches/SAK-12433/maven.xml\nsam/branches/SAK-12433/patched-src/\nsam/branches/SAK-12433/pom.xml\nsam/branches/SAK-12433/project.properties\nsam/branches/SAK-12433/project.xml\nsam/branches/SAK-12433/project.xml.standalone\nsam/branches/SAK-12433/samigo-api/\nsam/branches/SAK-12433/samigo-api/maven.xml\nsam/branches/SAK-12433/samigo-api/pom.xml\nsam/branches/SAK-12433/samigo-api/project.xml\nsam/branches/SAK-12433/samigo-api/readme.txt\nsam/branches/SAK-12433/samigo-api/src/\nsam/branches/SAK-12433/samigo-api/src/java/\nsam/branches/SAK-12433/samigo-api/src/java/org/\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/AnswerFeedbackIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/AnswerIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/AssessmentAccessControlIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/AssessmentAttachmentIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/AssessmentBaseIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/AssessmentFeedbackIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/AssessmentIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/AssessmentMetaDataIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/AssessmentTemplateIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/AttachmentIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/EvaluationModelIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/ItemAttachmentIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/ItemDataIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/ItemFeedbackIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/ItemMetaDataIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/ItemTextIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/PublishedAssessmentIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/SectionAttachmentIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/SectionDataIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/SectionMetaDataIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/assessment/SecuredIPAddressIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/authz/\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/authz/AuthorizationIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/authz/AuthorizationIteratorIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/authz/FunctionIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/authz/FunctionIteratorIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/authz/QualifierIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/authz/QualifierIteratorIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/grading/\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/grading/AssessmentGradingIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/grading/AssessmentGradingSummaryIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/grading/ItemGradingIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/grading/MediaIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/grading/StudentGradingSummaryIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/questionpool/\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/questionpool/QuestionPoolDataIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/questionpool/QuestionPoolItemIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/shared/\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/shared/AgentDataIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/shared/SiteTypeIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/ifc/shared/TypeIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/model/\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/data/model/Tree.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/samlite/\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/samlite/api/\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/samlite/api/Answer.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/samlite/api/Question.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/samlite/api/QuestionGroup.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/samlite/api/SamLiteService.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/assessment/\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/assessment/AssessmentServiceAPI.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/assessment/ItemServiceAPI.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/assessment/PublishedAssessmentServiceAPI.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/assessment/SectionServiceAPI.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/common/\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/common/MediaServiceAPI.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/common/TypeServiceAPI.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/grading/\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/grading/GradebookServiceAPI.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/grading/GradingSectionAwareServiceAPI.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/grading/GradingServiceAPI.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/qti/\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/qti/QTIServiceAPI.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/questionpool/\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/assessment/shared/api/questionpool/QuestionPoolServiceAPI.java\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/dummy/\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/dummy/ifc/\nsam/branches/SAK-12433/samigo-api/src/java/org/sakaiproject/tool/dummy/ifc/DummyIfc.java\nsam/branches/SAK-12433/samigo-api/src/java/xml/\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/assessmentTemplate.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/audioRecordingTemplate.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/essayTemplate.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/fibTemplate.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/fileUploadTemplate.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/finTemplate.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/matchTemplate.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/mcMCTemplate.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/mcSCTemplate.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/mcSurveyTemplate.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/sectionTemplate.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/survey/\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/survey/10.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/survey/5.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/survey/AGREE.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/survey/AVERAGE.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/survey/EXCELLENT.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/survey/STRONGLY_AGREE.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/survey/UNDECIDED.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/survey/YES.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v1p2/trueFalseTemplate.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/assessmentTemplate.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/audioRecordingTemplate.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/essayTemplate.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/fibTemplate.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/fileUploadTemplate.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/finTemplate.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/matchTemplate.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/mcMCTemplate.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/mcSCTemplate.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/sectionTemplate.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/survey/\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/survey/10.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/survey/5.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/survey/AGREE.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/survey/AVERAGE.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/survey/EXCELLENT.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/survey/STRONGLY_AGREE.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/survey/UNDECIDED.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/survey/YES.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/author/v2p0/trueFalseTemplate.xml\nsam/branches/SAK-12433/samigo-api/src/java/xml/xsl/\nsam/branches/SAK-12433/samigo-api/src/java/xml/xsl/dataTransform/\nsam/branches/SAK-12433/samigo-api/src/java/xml/xsl/dataTransform/README.txt\nsam/branches/SAK-12433/samigo-api/src/java/xml/xsl/dataTransform/import/\nsam/branches/SAK-12433/samigo-api/src/java/xml/xsl/dataTransform/import/v1p2/\nsam/branches/SAK-12433/samigo-api/src/java/xml/xsl/dataTransform/import/v1p2/extractAssessment.xsl\nsam/branches/SAK-12433/samigo-api/src/java/xml/xsl/dataTransform/import/v1p2/extractItem.xsl\nsam/branches/SAK-12433/samigo-api/src/java/xml/xsl/dataTransform/import/v1p2/extractSection.xsl\nsam/branches/SAK-12433/samigo-api/src/java/xml/xsl/dataTransform/import/v2p0/\nsam/branches/SAK-12433/samigo-api/src/java/xml/xsl/dataTransform/import/v2p0/extractAssessment.xsl\nsam/branches/SAK-12433/samigo-api/src/java/xml/xsl/dataTransform/import/v2p0/extractItem.xsl\nsam/branches/SAK-12433/samigo-api/src/java/xml/xsl/dataTransform/import/v2p0/extractSection.xsl\nsam/branches/SAK-12433/samigo-api/src/java/xml/xsl/dataTransform/result/\nsam/branches/SAK-12433/samigo-api/src/java/xml/xsl/dataTransform/result/extractGrades.xsl\nsam/branches/SAK-12433/samigo-app/\nsam/branches/SAK-12433/samigo-app/maven.xml\nsam/branches/SAK-12433/samigo-app/patched-src/\nsam/branches/SAK-12433/samigo-app/pom.xml\nsam/branches/SAK-12433/samigo-app/project.properties\nsam/branches/SAK-12433/samigo-app/project.xml\nsam/branches/SAK-12433/samigo-app/readme.txt\nsam/branches/SAK-12433/samigo-app/sakai-samigo/\nsam/branches/SAK-12433/samigo-app/sakai-samigo/webapp/\nsam/branches/SAK-12433/samigo-app/sakai-samigo/webapp/WEB-INF/\nsam/branches/SAK-12433/samigo-app/sakai-samigo/webapp/WEB-INF/web.xml\nsam/branches/SAK-12433/samigo-app/sakai-samigo/webapp/include/\nsam/branches/SAK-12433/samigo-app/sakai-samigo/webapp/include/header.inc\nsam/branches/SAK-12433/samigo-app/sakai-samigo/webapp/jsf/\nsam/branches/SAK-12433/samigo-app/sakai-samigo/webapp/jsf/delivery/\nsam/branches/SAK-12433/samigo-app/sakai-samigo/webapp/jsf/delivery/login.jsp\nsam/branches/SAK-12433/samigo-app/sakai-samigo/webapp/jsf/index/\nsam/branches/SAK-12433/samigo-app/sakai-samigo/webapp/jsf/index/index.jsp\nsam/branches/SAK-12433/samigo-app/sakai-samigo/webapp/jsf/index/mainIndex.jsp\nsam/branches/SAK-12433/samigo-app/sakai-samigo/webapp/jsf/security/\nsam/branches/SAK-12433/samigo-app/sakai-samigo/webapp/jsf/security/roleCheckStaticInclude.jsp\nsam/branches/SAK-12433/samigo-app/sakai-samigo/webapp/tools/\nsam/branches/SAK-12433/samigo-app/sakai-samigo/webapp/tools/sakai.samigo.tool.xml\nsam/branches/SAK-12433/samigo-app/src/\nsam/branches/SAK-12433/samigo-app/src/java/\nsam/branches/SAK-12433/samigo-app/src/java/com/\nsam/branches/SAK-12433/samigo-app/src/java/com/corejsf/\nsam/branches/SAK-12433/samigo-app/src/java/com/corejsf/UploadFilter.java\nsam/branches/SAK-12433/samigo-app/src/java/com/corejsf/UploadRenderer.java\nsam/branches/SAK-12433/samigo-app/src/java/com/corejsf/UploadTag.java\nsam/branches/SAK-12433/samigo-app/src/java/com/corejsf/util/\nsam/branches/SAK-12433/samigo-app/src/java/com/corejsf/util/Tags.java\nsam/branches/SAK-12433/samigo-app/src/java/log4j.properties\nsam/branches/SAK-12433/samigo-app/src/java/options.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/options.properties\nsam/branches/SAK-12433/samigo-app/src/java/options_ar.properties\nsam/branches/SAK-12433/samigo-app/src/java/options_ca.properties\nsam/branches/SAK-12433/samigo-app/src/java/options_es.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/options_es.properties\nsam/branches/SAK-12433/samigo-app/src/java/options_fr_CA.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/options_fr_CA.properties\nsam/branches/SAK-12433/samigo-app/src/java/options_sv.properties\nsam/branches/SAK-12433/samigo-app/src/java/options_zh_CN.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/options_zh_CN.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/jsf/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/jsf/component/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/jsf/component/RichTextEditArea.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/jsf/renderer/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/jsf/renderer/RichTextEditArea.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/jsf/tag/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/jsf/tag/RichTextEditArea.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/jsf/util/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/jsf/util/SamigoJsfTool.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/api/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/api/SamigoApiFactory.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/api/spring/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/api/spring/FactoryUtil.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/api/spring/SamigoApi.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_ar.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_ca.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_ca.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_es.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_es.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_fr_CA.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_fr_CA.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_ja.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_ja.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_nl.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_nl.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_sv.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_zh_CN.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages_zh_CN.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_ar.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_ca.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_ca.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_es.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_es.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_fr_CA.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_fr_CA.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_ja.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_ja.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_nl.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_nl.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_sv.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_zh_CN.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorFrontDoorMessages_zh_CN.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport_ar.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport_ca.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport_ca.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport_es.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport_es.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport_fr_CA.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport_fr_CA.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport_ja.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport_ja.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport_sv.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport_zh_CN.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorImportExport_zh_CN.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_ar.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_ca.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_ca.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_es.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_es.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_fr_CA.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_fr_CA.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_ja.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_ja.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_nl.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_nl.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_sv.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_zh_CN.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthorMessages_zh_CN.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthzPermissions.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AuthzPermissions_ca.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_ar.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_ca.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_ca.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_es.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_es.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_fr_CA.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_fr_CA.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_ja.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_ja.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_nl.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_nl.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_sv.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_zh_CN.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/DeliveryMessages_zh_CN.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_ar.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_ca.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_ca.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_es.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_es.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_fr_CA.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_fr_CA.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_ja.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_ja.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_nl.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_nl.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_sv.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_zh_CN.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages_zh_CN.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_ar.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_ca.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_ca.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_es.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_es.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_fr_CA.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_fr_CA.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_ja.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_ja.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_nl.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_nl.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_sv.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_zh_CN.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/GeneralMessages_zh_CN.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_ar.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_ca.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_ca.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_es.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_es.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_fr_CA.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_fr_CA.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_ja.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_ja.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_nl.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_nl.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_sv.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_zh_CN.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/MainIndexMessages_zh_CN.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages_ar.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages_ca.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages_ca.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages_es.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages_es.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages_fr_CA.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages_fr_CA.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages_ja.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages_ja.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages_nl.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages_nl.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages_sv.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages_zh_CN.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/QuestionPoolMessages_zh_CN.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SamLite.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SamLite_nl.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_ar.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_ca.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_ca.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_es.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_es.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_fr_CA.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_fr_CA.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_ja.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_ja.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_nl.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_nl.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_sv.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_zh_CN.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/SelectIndexMessages_zh_CN.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages_ar.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages_ca.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages_ca.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages_es.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages_es.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages_fr_CA.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages_fr_CA.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages_ja.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages_ja.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages_nl.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages_nl.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages_sv.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages_zh_CN.metaprops\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages_zh_CN.properties\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/business/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/business/questionpool/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/business/questionpool/QuestionPoolTreeImpl.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/devtools/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/devtools/GetTextFromXML.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/devtools/ManagedBeanUtil.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/devtools/RenderMaker.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/devtools/SubstituteProperties.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/AlphaIndexRenderer.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/ColorPickerPopupRenderer.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/ColorPickerRenderer.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/DataLineRenderer.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/DatePickerPopupRenderer.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/DatePickerRenderer.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/HideDivisionRenderer.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/NavigationMapRenderer.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/PagerButtonControlRenderer.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/PagerButtonRenderer.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/PagerRenderer.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/ScriptRenderer.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/StylesheetRenderer.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/TimerBarRenderer.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/util/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/renderer/util/RendererUtil.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/AlphaIndexTag.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/ColorPickerPopupTag.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/ColorPickerTag.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/DataLineTag.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/DatePickerPopupTag.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/DatePickerTag.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/HideDivisionTag.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/NavigationMapTag.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/PagerButtonControlTag.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/PagerButtonTag.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/PagerTag.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/ScriptTag.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/StylesheetTag.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/TagUtil.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/jsf/tag/TimerBarTag.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/osid/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/osid/assessment/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/osid/assessment/impl/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/osid/questionpool/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/osid/questionpool/impl/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/settings/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/settings/ApplicationContextLocatorConfigListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/settings/ApplicationEnvironment.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/settings/ApplicationSettings.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/settings/Constants.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/settings/OjbBootStrap.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/settings/OjbConfigListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/settings/OkiOsidConfigListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/settings/PathInfo.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/settings/PathInfoInitListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/shared/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/shared/impl/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/shared/impl/qti/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/shared/impl/qti/QTIServiceImpl.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/AnswerBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/AssessmentBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/AssessmentSettingsBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/AttachmentBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/AuthorBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/DeleteConfirmBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/FileUploadBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/IndexBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/ItemAuthorBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/ItemBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/ItemConfigBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/MatchItemBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/MetaDataBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/PublishedAssessmentBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/PublishedAssessmentBeanie.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/PublishedAssessmentSettingsBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/SectionBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/TemplateBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/authz/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/authz/AuthorizationBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/cms/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/cms/CourseManagementBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/ContentsDeliveryBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/DeliveryBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/DeliveryBeanie.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/DisplayAssetsBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/FeedbackComponent.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/FibBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/FinBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/ItemContentsBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/MatchingBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/SectionContentsBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/SelectionBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/SettingsDeliveryBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/resource/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/AgentResults.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/EvaluationResultBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramBarBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramQuestionScoresBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramScoresBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramSectionBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/PartData.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/QuestionScoresBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/RetakeAssessmentBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/StudentScoresBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/SubmissionStatusBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/TotalScoresBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/misc/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/misc/BuildInfoBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/qti/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/qti/XMLController.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/qti/XMLDisplay.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/qti/XMLImportBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/questionpool/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/questionpool/QuestionPoolBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/questionpool/QuestionPoolDataBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/questionpool/QuestionPoolDataModel.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/questionpool/TestPool.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/samlite/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/samlite/SamLiteBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/select/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/select/SelectAssessmentBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/shared/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/shared/BackingBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/shared/MediaBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/shared/PersonBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/shared/SubBackingBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/util/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/util/EmailBean.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/util/Validator.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/AssessmentListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/AuthorActionListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/AuthorAssessmentListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/AuthorPartListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/AuthorQuestionListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/AuthorSettingsListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ChooseExportTypeListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ConfirmDeleteTemplateListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ConfirmPublishAssessmentListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ConfirmRemoveAssessmentListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ConfirmRemoveAttachmentListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ConfirmRemovePartListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/DeleteTemplateListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/EditAssessmentListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/EditPartListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/EditPublishedSettingsListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/EditTemplateListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ExportAssessmentListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ExportItemListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ImportAssessmentListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ItemAddListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ItemModifyListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/PreviewAssessmentListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/PreviewPublishedAssessmentListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/PublishAssessmentListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/RemoveAssessmentListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/RemoveAssessmentThread.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/RemoveAttachmentListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/RemovePartListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/RemovePublishedAssessmentListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/RemovePublishedAssessmentThread.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/RemoveQuestionListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ReorderPartsListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ReorderQuestionsListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ResetAssessmentAttachmentListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ResetItemAttachmentListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ResetPartAttachmentListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SaveAssessmentAttachmentListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SaveAssessmentSettings.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SaveAssessmentSettingsListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SavePartAttachmentListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SavePartListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SavePublishedSettingsListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SortCoreAssessmentListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SortInactivePublishedAssessmentListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SortPublishedAssessmentListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/StartCreateItemListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/StartInsertItemListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/TemplateBaseListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/TemplateListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/TemplateLoadListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/TemplateUpdateListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/TimedAssessmentChangeListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/delivery/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/delivery/AudioUploadActionListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/delivery/BeginDeliveryActionListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/delivery/DeliveryActionListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/delivery/LinearAccessDeliveryActionListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/delivery/RedirectLoginListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/delivery/ResetDeliveryListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/delivery/ReviewActionListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/delivery/ShowFeedbackActionListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/delivery/SubmitToGradingActionListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/delivery/TableOfContentsActionListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/delivery/UpdateTimerFromTOCListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/delivery/UpdateTimerListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/ConfirmRetakeAssessmentListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/HistogramListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/QuestionScoreListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/QuestionScorePagerListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/QuestionScoreUpdateListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/ResetQuestionScoreListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/ResetTotalScoreListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/RetakeAssessmentListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/StudentScoreListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/StudentScoreUpdateListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/SubmissionStatusListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/TotalScoreListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/TotalScoreUpdateListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/util/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/util/EvaluationListenerUtil.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/questionpool/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/questionpool/CancelImportToAssessmentListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/questionpool/ImportQuestionsToAuthoring.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/questionpool/PoolSaveListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/questionpool/SortQuestionListListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/questionpool/StartRemoveItemsListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/samlite/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/samlite/AssessmentListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/samlite/NameListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/samlite/ParserListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/samlite/QuestionPoolListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/select/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/select/SelectActionListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/shared/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/shared/ConfirmRemoveMediaListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/shared/RemoveMediaListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/util/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/util/ContextUtil.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/util/EmailListener.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/util/TimeUtil.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/model/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/model/PagingModel.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/model/delivery/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/model/delivery/TimedAssessmentGradingModel.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/queue/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/queue/delivery/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/queue/delivery/SubmitTimedAssessmentThread.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/queue/delivery/TimedAssessmentQueue.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/InitMimeTypes.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/StoreApplicationContext.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/cp/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/cp/DownloadCPServlet.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/delivery/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/delivery/DownloadAllMediaServlet.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/delivery/LoginServlet.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/delivery/ShowMediaServlet.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/delivery/UploadAudioMediaServlet.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/qti/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/qti/ShowQTIServlet.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/web/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/web/action/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/web/action/InitAction.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/web/filter/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/web/filter/Log4jMdcFilter.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/web/filter/SetCharacterEncodingFilter.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/web/session/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/web/session/SessionUtil.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/util/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/util/BeanDateComparator.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/util/BeanFloatComparator.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/util/BeanIntegerComparator.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/util/BeanSort.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/util/BeanSortComparator.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/util/SamigoEmailAuthenticator.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/util/SamigoEmailService.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ws/\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ws/Item.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ws/SamigoTool.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ws/SamigoToolServiceSoapBindingImpl.java\nsam/branches/SAK-12433/samigo-app/src/java/org/sakaiproject/tool/assessment/ws/SamigoToolWebService.java\nsam/branches/SAK-12433/samigo-app/src/java/readme_packages.txt\nsam/branches/SAK-12433/samigo-app/src/java/reg/\nsam/branches/SAK-12433/samigo-app/src/java/reg/sakai.samigo.xml\nsam/branches/SAK-12433/samigo-app/src/java/repository-nav.xml\nsam/branches/SAK-12433/samigo-app/src/java/repository.dtd\nsam/branches/SAK-12433/samigo-app/src/java/repository.xml\nsam/branches/SAK-12433/samigo-app/src/java/test/\nsam/branches/SAK-12433/samigo-app/src/java/test/data/\nsam/branches/SAK-12433/samigo-app/src/java/test/data/imsmanifest.xml\nsam/branches/SAK-12433/samigo-app/src/java/test/data/realizedAssessment.xml\nsam/branches/SAK-12433/samigo-app/src/java/test/data/respondus_IMS_QTI_sample12Assessment.xml\nsam/branches/SAK-12433/samigo-app/src/java/test/data/sample12Assessment.xml\nsam/branches/SAK-12433/samigo-app/src/java/test/data/sample12Assessment2.xml\nsam/branches/SAK-12433/samigo-app/src/java/test/data/sample12Item.xml\nsam/branches/SAK-12433/samigo-app/src/java/test/data/sample12Item2.xml\nsam/branches/SAK-12433/samigo-app/src/java/test/data/sample12Section.xml\nsam/branches/SAK-12433/samigo-app/src/java/test/data/zip/\nsam/branches/SAK-12433/samigo-app/src/java/test/data/zip/firstfile.txt\nsam/branches/SAK-12433/samigo-app/src/java/test/data/zip/secondfile.txt\nsam/branches/SAK-12433/samigo-app/src/java/test/data/zip/thirdfile.txt\nsam/branches/SAK-12433/samigo-app/src/java/test/org/\nsam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/\nsam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/\nsam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/\nsam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/business/\nsam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/business/entity/\nsam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/business/entity/helper/\nsam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/business/entity/helper/AuthoringHelperTest.java\nsam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/business/entity/helper/QTITester.java\nsam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/jsf/\nsam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/jsf/LinksModelBean.java\nsam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/jsf/SubBackingBean.java\nsam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/jsf/TestBackingBean.java\nsam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/jsf/TestLink.java\nsam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/jsf/TestLinksBean.java\nsam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/jsf/TestWSBean.java\nsam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/ui/\nsam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/ui/listener/\nsam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/ui/listener/FakeBeginDeliveryActionListener.java\nsam/branches/SAK-12433/samigo-app/src/java/test/org/sakaiproject/tool/assessment/ui/listener/TestActionListener.java\nsam/branches/SAK-12433/samigo-app/src/webapp/\nsam/branches/SAK-12433/samigo-app/src/webapp/META-INF/\nsam/branches/SAK-12433/samigo-app/src/webapp/META-INF/MANIFEST.MF\nsam/branches/SAK-12433/samigo-app/src/webapp/WEB-INF/\nsam/branches/SAK-12433/samigo-app/src/webapp/WEB-INF/asi.tld\nsam/branches/SAK-12433/samigo-app/src/webapp/WEB-INF/faces-config.xml\nsam/branches/SAK-12433/samigo-app/src/webapp/WEB-INF/html_basic.tld\nsam/branches/SAK-12433/samigo-app/src/webapp/WEB-INF/jsf_core.tld\nsam/branches/SAK-12433/samigo-app/src/webapp/WEB-INF/mime.types\nsam/branches/SAK-12433/samigo-app/src/webapp/WEB-INF/samigo.tld\nsam/branches/SAK-12433/samigo-app/src/webapp/WEB-INF/upload.tld\nsam/branches/SAK-12433/samigo-app/src/webapp/WEB-INF/web.xml\nsam/branches/SAK-12433/samigo-app/src/webapp/crossdomain.xml\nsam/branches/SAK-12433/samigo-app/src/webapp/css/\nsam/branches/SAK-12433/samigo-app/src/webapp/css/tool.css\nsam/branches/SAK-12433/samigo-app/src/webapp/css/tool_base.css\nsam/branches/SAK-12433/samigo-app/src/webapp/css/tool_sam.css\nsam/branches/SAK-12433/samigo-app/src/webapp/html/\nsam/branches/SAK-12433/samigo-app/src/webapp/html/calendar.html\nsam/branches/SAK-12433/samigo-app/src/webapp/html/picker.html\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/_test.html\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/dialog.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/htmlarea.css\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/htmlarea.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_about.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_align_center.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_align_justify.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_align_left.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_align_right.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_blank.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_charmap.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_color_bg.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_color_fg.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_copy.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_custom.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_cut.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_delete.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_format_bold.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_format_italic.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_format_strike.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_format_sub.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_format_sup.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_format_underline.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_help.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_hr.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_html.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_image.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_indent_less.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_indent_more.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_link.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_list_bullet.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_list_num.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_paste.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_redo.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_show_border.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_splitcel.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/ed_undo.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/fullscreen_maximize.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/fullscreen_minimize.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/htmlarea_editor.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/insert_table.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/recordaudio.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/recording.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/recordresponse.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/regular_smile.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/sad_smile.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/images/toolbar.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/index.html\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/b5.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/da.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/de.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/en.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/es.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/fi.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/fr.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/gb.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/it.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/ja-euc.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/ja-jis.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/ja-sjis.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/ja-utf8.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/nb.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/nl.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/pl.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/pt_br.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/ro.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/ru.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/se.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/lang/vn.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/license.txt\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/navigo_js/\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/navigo_js/navigo_editor.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/navigo_js/spell-checker.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/navigo_popups/\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/navigo_popups/about.html\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/navigo_popups/editor_help.html\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/navigo_popups/file_upload.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/navigo_popups/insert_image.html\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/navigo_popups/insert_image.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/navigo_popups/insert_link.html\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/navigo_popups/insert_link.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/SpellChecker/\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/SpellChecker/blank.html\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/SpellChecker/img/\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/SpellChecker/img/spell-check.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/SpellChecker/lang/\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/SpellChecker/lang/en.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/SpellChecker/lang/ro.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/SpellChecker/readme-tech.html\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/SpellChecker/spell-check-logic.cgi\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/SpellChecker/spell-check-style.css\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/SpellChecker/spell-check-ui.html\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/SpellChecker/spell-check-ui.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/SpellChecker/spell-checker.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/cell-delete.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/cell-insert-after.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/cell-insert-before.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/cell-merge.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/cell-prop.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/cell-split.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/col-delete.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/col-insert-after.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/col-insert-before.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/col-split.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/row-delete.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/row-insert-above.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/row-insert-under.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/row-prop.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/row-split.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/img/table-prop.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/lang/\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/lang/en.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/lang/fi.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/lang/ro.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/plugins/TableOperations/table-operations.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/popupdiv.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/popups/\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/popups/about.html\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/popups/blank.html\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/popups/custom2.html\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/popups/editor_help.html\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/popups/fullscreen.html\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/popups/insert_image.html\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/popups/insert_table.html\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/popups/old-fullscreen.html\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/popups/old_insert_image.html\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/popups/popup.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/popups/select_color.html\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/popupwin.js\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/reference.html\nsam/branches/SAK-12433/samigo-app/src/webapp/htmlarea/release-notes.html\nsam/branches/SAK-12433/samigo-app/src/webapp/images/\nsam/branches/SAK-12433/samigo-app/src/webapp/images/Mp3.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/PlayDown.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/PlayNormal.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/PlayUp.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/Ppt.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/RecordDown.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/RecordNormal.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/RecordUp.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/StopDown.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/StopNormal.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/StopUp.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/SubmitDown.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/SubmitNormal.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/SubmitUp.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/admin.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/arrow-open.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/audio_play.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/audio_record.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/audio_stop.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/barrow.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/barrowsm.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/blackdot.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/blarrowsm.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/bluedot.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/bmp.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/cal.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/calendar/\nsam/branches/SAK-12433/samigo-app/src/webapp/images/calendar/cal.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/calendar/next.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/calendar/next_year.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/calendar/pixel.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/calendar/prev.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/calendar/prev_year.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/cancelled.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/check.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/checked.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/checkmark.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/circle.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/cleardot.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/click.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/crossmark.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/darrow.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/delivery/\nsam/branches/SAK-12433/samigo-app/src/webapp/images/delivery/checkmark.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/delivery/green.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/delivery/red.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/delivery/spacer.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/divider.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/divider1.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/divider2.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/djvu.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/doc.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/dot.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/down_arrow.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/exe.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/file.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/folder-closed.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/folder-open.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/gif.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/grarrowsm.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/graytriangle.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/header_background.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/helpSUbut-over.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/helpSUbut.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/hints/\nsam/branches/SAK-12433/samigo-app/src/webapp/images/hints/1.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/hints/1q.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/hints/2.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/hints/3.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/hints/4.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/hints/corner.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/html.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/importInfo.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/jpg.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/listen.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/loginBut-over.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/loginBut.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/mail.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/menudot.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/\nsam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/bmp.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/djvu.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/doc.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/exe.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/ghost64.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/gif.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/gsview2.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/hqx.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/html.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/jpg.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/mht.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/midi.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/mm.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/mov.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/mp3.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/mpg.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/pdf.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/ppt.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/ps.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/sit.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/spss.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/tif.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/txt.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/unknown.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/wav.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/xls.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/mimeicons/zip.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/mov.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/mpg.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/next.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/pdf.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/prev.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/printversion.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/printversion_over.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/progressbar.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/radiochecked.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/radiounchecked.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/rarrow.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/rarrowsm.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/recordresponse.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/reddot.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/right_arrow.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/sakai.jpg\nsam/branches/SAK-12433/samigo-app/src/webapp/images/sel.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/sortascending.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/sortdescending.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/sound.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/spacer.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/stopsign.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/tif.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/tinyArrowR.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/titleline.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/tree/\nsam/branches/SAK-12433/samigo-app/src/webapp/images/tree/blank.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/tree/closed.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/tree/doc.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/tree/marked.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/tree/open.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/treeMenu/\nsam/branches/SAK-12433/samigo-app/src/webapp/images/treeMenu/base.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/treeMenu/empty.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/treeMenu/folder.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/treeMenu/folderopen.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/treeMenu/join.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/treeMenu/joinbottom.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/treeMenu/line.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/treeMenu/minus.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/treeMenu/minusbottom.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/treeMenu/page.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/treeMenu/pixel.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/treeMenu/plus.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/treeMenu/plusbottom.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/treeMenu/ttm.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/txt.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/uarrow.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/unchecked.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/unknown.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/upload.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/view.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/wav.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/wizardtop.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/wizardtop_back.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/x.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/xls.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/images/zip.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/include/\nsam/branches/SAK-12433/samigo-app/src/webapp/include/header.inc\nsam/branches/SAK-12433/samigo-app/src/webapp/js/\nsam/branches/SAK-12433/samigo-app/src/webapp/js/authoring.js\nsam/branches/SAK-12433/samigo-app/src/webapp/js/browser.js\nsam/branches/SAK-12433/samigo-app/src/webapp/js/calendar1.js\nsam/branches/SAK-12433/samigo-app/src/webapp/js/calendar2.js\nsam/branches/SAK-12433/samigo-app/src/webapp/js/delivery.js\nsam/branches/SAK-12433/samigo-app/src/webapp/js/dueDate.js\nsam/branches/SAK-12433/samigo-app/src/webapp/js/dueDate2.js\nsam/branches/SAK-12433/samigo-app/src/webapp/js/hints.js\nsam/branches/SAK-12433/samigo-app/src/webapp/js/hints_cfg.js\nsam/branches/SAK-12433/samigo-app/src/webapp/js/navigo.js\nsam/branches/SAK-12433/samigo-app/src/webapp/js/picker.js\nsam/branches/SAK-12433/samigo-app/src/webapp/js/preview.js\nsam/branches/SAK-12433/samigo-app/src/webapp/js/progressBar.js\nsam/branches/SAK-12433/samigo-app/src/webapp/js/progressBar2.js\nsam/branches/SAK-12433/samigo-app/src/webapp/js/sakai_tool_headscripts.js\nsam/branches/SAK-12433/samigo-app/src/webapp/js/samigotree.js\nsam/branches/SAK-12433/samigo-app/src/webapp/js/selectbox.js\nsam/branches/SAK-12433/samigo-app/src/webapp/js/tigra_tables.js\nsam/branches/SAK-12433/samigo-app/src/webapp/js/tree.js\nsam/branches/SAK-12433/samigo-app/src/webapp/js/treeJavascript.js\nsam/branches/SAK-12433/samigo-app/src/webapp/js/tree_items.js\nsam/branches/SAK-12433/samigo-app/src/webapp/js/tree_tpl.js\nsam/branches/SAK-12433/samigo-app/src/webapp/js/xmlTree.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/allHeadings.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/assessmentHeadings.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/authorIndex.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/authorSettings.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/authorSettings_attachment.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/confirmAssessmentRetract.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/editAssessment.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/editPart.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/editPart_attachment.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/editQuestion.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/item/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/item/attachment.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/item/audioRecording.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/item/fileUpload.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/item/fillInNumeric.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/item/fillInTheBlank.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/item/itemHeadings.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/item/matching.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/item/multipleChoice.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/item/multipleChoiceSurvey.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/item/shortAnswer.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/item/trueFalse.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/part_attachment.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/previewAssessment.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/previewQuestion.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/preview_item/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/preview_item/AudioRecording.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/preview_item/FileUpload.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/preview_item/FillInNumeric.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/preview_item/FillInTheBlank.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/preview_item/Matching.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/preview_item/MultipleChoiceMultipleCorrect.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/preview_item/MultipleChoiceSingleCorrect.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/preview_item/MultipleChoiceSurvey.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/preview_item/ShortAnswer.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/preview_item/TrueFalse.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/preview_item/attachment.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/publishAssessment.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/publishedSettings.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/questionpreview/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/questionpreview/AudioRecording.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/questionpreview/FileUpload.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/questionpreview/FillInNumeric.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/questionpreview/FillInTheBlank.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/questionpreview/Matching.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/questionpreview/MultipleChoiceMultipleCorrect.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/questionpreview/MultipleChoiceSingleCorrect.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/questionpreview/MultipleChoiceSurvey.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/questionpreview/ShortAnswer.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/questionpreview/TrueFalse.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/removeAssessment.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/removeAssessmentAttachment.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/removeItemAttachment.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/removePart.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/removePartAttachment.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/author/removeQuestion.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/accessDenied.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/accessError.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/anonymousQuitMessage.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/anonymousThankyouMessage.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/assessmentDeliveryHeading.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/assessmentHasBeenSubmitted.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/assessmentNotAvailable.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/assessment_attachment.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/beginTakingAssessment.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/beginTakingAssessment_viaurl.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/deliverAssessment.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/discrepancyInData.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/invalidAssessment.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/ipAccessError.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/isRetracted.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/item/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/item/attachment.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/item/audioApplet.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/item/audioObject.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/item/audioSettings.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/item/deliverAudioRecording.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/item/deliverFileUpload.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/item/deliverFillInNumeric.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/item/deliverFillInTheBlank.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/item/deliverMatching.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/item/deliverMultipleChoiceMultipleCorrect.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/item/deliverMultipleChoiceSingleCorrect.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/item/deliverShortAnswer.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/item/deliverShortAnswerLink.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/item/deliverTrueFalse.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/login.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/mediaAccessDenied.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/noLateSubmission.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/noSubmissionLeft.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/part_attachment.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/passwordAccessError.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/popup/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/popup/autoSubmit.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/popup/sessionExpired.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/popup/sessionWillTimeout.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/reviewAssessment.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/stub.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/submitted.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/tableOfContents.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/timeExpired.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/timeout.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/delivery/welcome.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/confirmEmailSent.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/confirmRetake.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/createNewEmail.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/emailAttachment.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/emailError.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/evaluationHeadings.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/fullShortAnswer.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/gradeStudentResult.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/histogramScores.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/item/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/item/displayAudioRecording.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/item/displayAudioRecordingAnswer.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/item/displayAudioRecordingQuestion.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/item/displayFileUpload.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/item/displayFileUploadAnswer.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/item/displayFileUploadQuestion.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/item/displayFillInNumeric.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/item/displayFillInTheBlank.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/item/displayMatching.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/item/displayMultipleChoiceMultipleCorrect.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/item/displayMultipleChoiceSingleCorrect.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/item/displayShortAnswer.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/item/displayTrueFalse.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/modelShortAnswer.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/modelShortAnswerQS.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/questionScore.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/rationale.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/submissionStatus.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/evaluation/totalScores.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/index/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/index/exit.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/index/index.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/qti/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/qti/chooseExportType.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/qti/exportAssessment.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/qti/exportDenied.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/qti/exportItem.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/qti/importAssessment.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/qti/importPool.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/qti/xmlDisplay.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/qti/xmlDisplay.jsp.license.txt\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/addPool.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/addToAssessment.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/copyPool.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/copyPoolTree.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/copyQuestion.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/editPool.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/index_error.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/movePool.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/movePoolTree.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/newtestdt.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/pagertest.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/poolList.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/poolTree.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/poolTreeTable.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/questionTreeTable.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/questionpoolHeadings.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/removePool.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/removeQuestion.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/selectQuestionType.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/subpoolsTreeTable.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/questionpool/test.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/review/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/review/reviewAssessment.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/samlite/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/samlite/samLiteEntry.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/samlite/samLiteValidation.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/security/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/security/roleCheckStandaloneStaticInclude.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/select/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/select/selectIndex.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/shared/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/shared/mimeicon.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/shared/removeMedia.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/template/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/template/confirmTempRemove.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/template/templateEditor.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/template/templateHeadings.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/template/templateIndex.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/upload/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/upload/closeWindow.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/upload/uploadFile.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/colorpicker/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/colorpicker/colorpicker.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/colorpicker/colorpicker.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/datepicker/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/datepicker/calendar.html\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/datepicker/datepicker.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/datepicker/datepicker.jsp\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/hideDivision/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/hideDivision/hideDivision.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/timerBar/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/timerBar/timerbar.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/tree/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/tree/tree.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/ChangeLog\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/dialog.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/examples/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/examples/2-areas.cgi\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/examples/2-areas.html\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/examples/context-menu.html\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/examples/core.html\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/examples/css.html\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/examples/custom.css\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/examples/full-page.html\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/examples/fully-loaded.html\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/examples/index.html\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/examples/spell-checker.html\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/examples/table-operations.html\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/examples/test.cgi\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/htmlarea.css\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/htmlarea.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_about.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_align_center.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_align_justify.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_align_left.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_align_right.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_blank.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_charmap.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_color_bg.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_color_fg.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_copy.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_custom.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_cut.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_delete.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_format_bold.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_format_italic.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_format_strike.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_format_sub.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_format_sup.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_format_underline.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_help.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_hr.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_html.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_image.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_indent_less.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_indent_more.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_left_to_right.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_link.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_list_bullet.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_list_num.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_paste.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_redo.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_right_to_left.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_save.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_show_border.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_splitcel.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/ed_undo.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/fullscreen_maximize.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/fullscreen_minimize.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/images/insert_table.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/index.html\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/b5.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/ch.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/cz.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/da.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/de.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/ee.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/el.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/en.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/es.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/fi.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/fr.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/gb.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/he.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/hu.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/it.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/ja-euc.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/ja-jis.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/ja-sjis.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/ja-utf8.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/lt.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/lv.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/nb.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/nl.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/no.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/pl.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/pt_br.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/ro.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/ru.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/se.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/si.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/lang/vn.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/license.txt\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/CSS/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/CSS/css.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/CSS/lang/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/CSS/lang/en.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/ContextMenu/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/ContextMenu/context-menu.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/ContextMenu/lang/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/ContextMenu/lang/de.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/ContextMenu/lang/el.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/ContextMenu/lang/en.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/ContextMenu/lang/nl.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/ContextMenu/menu.css\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/FullPage/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/FullPage/full-page.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/FullPage/img/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/FullPage/img/docprop.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/FullPage/lang/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/FullPage/lang/en.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/FullPage/lang/he.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/FullPage/lang/ro.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/FullPage/popups/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/FullPage/popups/docprop.html\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/FullPage/test.html\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/ListType/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/ListType/list-type.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/img/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/img/spell-check.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/lang/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/lang/cz.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/lang/da.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/lang/de.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/lang/en.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/lang/hu.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/lang/it.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/lang/ro.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/readme-tech.html\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/spell-check-logic.cgi\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/spell-check-style.css\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/spell-check-ui.html\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/spell-check-ui.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/SpellChecker/spell-checker.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/cell-delete.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/cell-insert-after.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/cell-insert-before.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/cell-merge.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/cell-prop.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/cell-split.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/col-delete.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/col-insert-after.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/col-insert-before.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/col-split.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/row-delete.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/row-insert-above.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/row-insert-under.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/row-prop.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/row-split.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/img/table-prop.gif\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/lang/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/lang/cz.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/lang/da.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/lang/de.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/lang/el.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/lang/en.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/lang/fi.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/lang/hu.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/lang/it.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/lang/nl.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/lang/no.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/lang/ro.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/plugins/TableOperations/table-operations.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/popupdiv.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/popups/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/popups/about.html\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/popups/blank.html\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/popups/custom2.html\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/popups/editor_help.html\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/popups/fullscreen.html\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/popups/insert_image.html\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/popups/insert_table.html\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/popups/link.html\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/popups/old-fullscreen.html\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/popups/old_insert_image.html\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/popups/popup.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/popups/select_color.html\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/popupwin.js\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/reference.html\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/htmlarea/release-notes.html\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/samigo/\nsam/branches/SAK-12433/samigo-app/src/webapp/jsf/widget/wysiwyg/samigo/wysiwyg.js\nsam/branches/SAK-12433/samigo-app/src/webapp/title.jsp\nsam/branches/SAK-12433/samigo-archive/\nsam/branches/SAK-12433/samigo-archive/sam-handlers/\nsam/branches/SAK-12433/samigo-archive/sam-handlers/pom.xml\nsam/branches/SAK-12433/samigo-archive/sam-handlers/project.xml\nsam/branches/SAK-12433/samigo-archive/sam-handlers/src/\nsam/branches/SAK-12433/samigo-archive/sam-handlers/src/java/\nsam/branches/SAK-12433/samigo-archive/sam-handlers/src/java/org/\nsam/branches/SAK-12433/samigo-archive/sam-handlers/src/java/org/sakaiproject/\nsam/branches/SAK-12433/samigo-archive/sam-handlers/src/java/org/sakaiproject/importer/\nsam/branches/SAK-12433/samigo-archive/sam-handlers/src/java/org/sakaiproject/importer/impl/\nsam/branches/SAK-12433/samigo-archive/sam-handlers/src/java/org/sakaiproject/importer/impl/handlers/\nsam/branches/SAK-12433/samigo-archive/sam-handlers/src/java/org/sakaiproject/importer/impl/handlers/SamigoHandler.java\nsam/branches/SAK-12433/samigo-audio/\nsam/branches/SAK-12433/samigo-audio/example/\nsam/branches/SAK-12433/samigo-audio/example/audiorecordertest.html\nsam/branches/SAK-12433/samigo-audio/install_audio_1.3.sh\nsam/branches/SAK-12433/samigo-audio/maven.xml\nsam/branches/SAK-12433/samigo-audio/pom.xml\nsam/branches/SAK-12433/samigo-audio/project.xml\nsam/branches/SAK-12433/samigo-audio/src/\nsam/branches/SAK-12433/samigo-audio/src/java/\nsam/branches/SAK-12433/samigo-audio/src/java/org/\nsam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/\nsam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/\nsam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/\nsam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/\nsam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/AudioConfigHelp.java\nsam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/AudioControlContext.java\nsam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/AudioFormatPanel.java\nsam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/AudioPanel.java\nsam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/AudioRecorder.java\nsam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/AudioRecorderApplet.java\nsam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/AudioRecorderParams.java\nsam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/AudioResources.properties\nsam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/AudioResources_ar.properties\nsam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/AudioResources_ca.properties\nsam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/AudioResources_fr_CA.properties\nsam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/AudioResources_zh_CN.properties\nsam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/AudioSampleGraphPanel.java\nsam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/AudioSamplingData.java\nsam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/AudioUtil.java\nsam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/ColorBackgroundPanel.java\nsam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/ColorModel.java\nsam/branches/SAK-12433/samigo-audio/src/java/org/sakaiproject/tool/assessment/audio/colors.properties\nsam/branches/SAK-12433/samigo-cp/\nsam/branches/SAK-12433/samigo-cp/pom.xml\nsam/branches/SAK-12433/samigo-cp/project.xml\nsam/branches/SAK-12433/samigo-cp/src/\nsam/branches/SAK-12433/samigo-cp/src/java/\nsam/branches/SAK-12433/samigo-cp/src/java/org/\nsam/branches/SAK-12433/samigo-cp/src/java/org/sakaiproject/\nsam/branches/SAK-12433/samigo-cp/src/java/org/sakaiproject/tool/\nsam/branches/SAK-12433/samigo-cp/src/java/org/sakaiproject/tool/assessment/\nsam/branches/SAK-12433/samigo-cp/src/java/org/sakaiproject/tool/assessment/contentpackaging/\nsam/branches/SAK-12433/samigo-cp/src/java/org/sakaiproject/tool/assessment/contentpackaging/ExportService.java\nsam/branches/SAK-12433/samigo-cp/src/java/org/sakaiproject/tool/assessment/contentpackaging/ImportService.java\nsam/branches/SAK-12433/samigo-cp/src/java/org/sakaiproject/tool/assessment/contentpackaging/Manifest.java\nsam/branches/SAK-12433/samigo-cp/src/java/org/sakaiproject/tool/assessment/contentpackaging/ManifestGenerator.java\nsam/branches/SAK-12433/samigo-help/\nsam/branches/SAK-12433/samigo-help/pom.xml\nsam/branches/SAK-12433/samigo-help/project.xml\nsam/branches/SAK-12433/samigo-help/src/\nsam/branches/SAK-12433/samigo-help/src/sakai_samigo/\nsam/branches/SAK-12433/samigo-help/src/sakai_samigo/aqyr.html\nsam/branches/SAK-12433/samigo-help/src/sakai_samigo/aqys.html\nsam/branches/SAK-12433/samigo-help/src/sakai_samigo/arab.html\nsam/branches/SAK-12433/samigo-help/src/sakai_samigo/arag.html\nsam/branches/SAK-12433/samigo-help/src/sakai_samigo/arba.html\nsam/branches/SAK-12433/samigo-help/src/sakai_samigo/arbn.html\nsam/branches/SAK-12433/samigo-help/src/sakai_samigo/arbq.html\nsam/branches/SAK-12433/samigo-help/src/sakai_samigo/arbr.html\nsam/branches/SAK-12433/samigo-help/src/sakai_samigo/arbx.html\nsam/branches/SAK-12433/samigo-help/src/sakai_samigo/arbz.html\nsam/branches/SAK-12433/samigo-help/src/sakai_samigo/arcq.html\nsam/branches/SAK-12433/samigo-help/src/sakai_samigo/arcs.html\nsam/branches/SAK-12433/samigo-help/src/sakai_samigo/arcx.html\nsam/branches/SAK-12433/samigo-help/src/sakai_samigo/ardc.html\nsam/branches/SAK-12433/samigo-help/src/sakai_samigo/arde.html\nsam/branches/SAK-12433/samigo-help/src/sakai_samigo/ardf.html\nsam/branches/SAK-12433/samigo-help/src/sakai_samigo/ardi.html\nsam/branches/SAK-12433/samigo-help/src/sakai_samigo/ardm.html\nsam/branches/SAK-12433/samigo-help/src/sakai_samigo/ardr.html\nsam/branches/SAK-12433/samigo-help/src/sakai_samigo/arec.html\nsam/branches/SAK-12433/samigo-help/src/sakai_samigo/areg.html\nsam/branches/SAK-12433/samigo-help/src/sakai_samigo/arej.html\nsam/branches/SAK-12433/samigo-help/src/sakai_samigo/arek.html\nsam/branches/SAK-12433/samigo-help/src/sakai_samigo/arev.html\nsam/branches/SAK-12433/samigo-help/src/sakai_samigo/arfk.html\nsam/branches/SAK-12433/samigo-help/src/sakai_samigo/argy.html\nsam/branches/SAK-12433/samigo-help/src/sakai_samigo/aszx.html\nsam/branches/SAK-12433/samigo-help/src/sakai_samigo/help.xml\nsam/branches/SAK-12433/samigo-hibernate/\nsam/branches/SAK-12433/samigo-hibernate/maven.xml\nsam/branches/SAK-12433/samigo-hibernate/pom.xml\nsam/branches/SAK-12433/samigo-hibernate/project.xml\nsam/branches/SAK-12433/samigo-hibernate/readme.txt\nsam/branches/SAK-12433/samigo-hibernate/src/\nsam/branches/SAK-12433/samigo-hibernate/src/java/\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/Answer.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/AnswerFeedback.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/AssessmentAccessControl.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/AssessmentAttachment.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/AssessmentBase.hbm.xml\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/AssessmentBaseData.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/AssessmentData.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/AssessmentFeedback.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/AssessmentMetaData.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/AssessmentTemplateData.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/AttachmentData.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/EvaluationModel.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/ItemAttachment.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/ItemData.hbm.xml\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/ItemData.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/ItemFeedback.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/ItemMetaData.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/ItemText.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/ItemType.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedAccessControl.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedAnswer.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedAnswerFeedback.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedAssessment.hbm.xml\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedAssessmentAttachment.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedAssessmentData.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedAttachmentData.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedEvaluationModel.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedFeedback.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedItemAttachment.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedItemData.hbm.xml\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedItemData.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedItemFeedback.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedItemMetaData.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedItemText.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedMetaData.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedSectionAttachment.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedSectionData.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedSectionMetaData.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedSecuredIPAddress.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/SectionAttachment.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/SectionData.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/SectionMetaData.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/SecuredIPAddress.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/authz/\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/authz/AuthorizationData.hbm.xml\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/authz/AuthorizationData.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/authz/FunctionData.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/authz/QualifierData.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/authz/QualifierHierarchyData.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/grading/\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/grading/AssessmentGradingData.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/grading/AssessmentGradingSummaryData.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/grading/GradingData.hbm.xml\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/grading/ItemGradingData.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/grading/MediaData.hbm.xml\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/grading/MediaData.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/grading/StudentGradingSummaryData.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/questionpool/\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/questionpool/QuestionPoolAccessData.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/questionpool/QuestionPoolData.hbm.xml\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/questionpool/QuestionPoolData.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/questionpool/QuestionPoolItemData.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/shared/\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/shared/TypeD.java\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/shared/TypeData.hbm.xml\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/dummy/\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/dummy/impl/\nsam/branches/SAK-12433/samigo-hibernate/src/java/org/sakaiproject/tool/dummy/impl/DummyImpl.java\nsam/branches/SAK-12433/samigo-pack/\nsam/branches/SAK-12433/samigo-pack/hibernate.properties\nsam/branches/SAK-12433/samigo-pack/maven.xml\nsam/branches/SAK-12433/samigo-pack/pom.xml\nsam/branches/SAK-12433/samigo-pack/project.xml\nsam/branches/SAK-12433/samigo-pack/src/\nsam/branches/SAK-12433/samigo-pack/src/java/\nsam/branches/SAK-12433/samigo-pack/src/java/org/\nsam/branches/SAK-12433/samigo-pack/src/java/org/sakaiproject/\nsam/branches/SAK-12433/samigo-pack/src/java/org/sakaiproject/tool/\nsam/branches/SAK-12433/samigo-pack/src/java/org/sakaiproject/tool/assessment/\nsam/branches/SAK-12433/samigo-pack/src/java/org/sakaiproject/tool/assessment/shared/\nsam/branches/SAK-12433/samigo-pack/src/java/org/sakaiproject/tool/assessment/shared/SakaiBootStrap.java\nsam/branches/SAK-12433/samigo-pack/src/sql/\nsam/branches/SAK-12433/samigo-pack/src/sql/db_patches/\nsam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-1955/\nsam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-1955/FixAnswerScore.class\nsam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-1955/FixAnswerScore.java\nsam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-1955/README.txt\nsam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-1955/database.properties\nsam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-1955/lib/\nsam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-2211/\nsam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-2211/FixRealmPermission.class\nsam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-2211/FixRealmPermission.java\nsam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-2211/README.txt\nsam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-2211/database.properties\nsam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-2211/lib/\nsam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-3955/\nsam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-3955/FixAssessmentScore.java\nsam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-3955/README.txt\nsam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-3955/database.properties\nsam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-3955/lib/\nsam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-VIVIE/\nsam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-VIVIE/FixGradingScore.class\nsam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-VIVIE/FixGradingScore.java\nsam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-VIVIE/README.txt\nsam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-VIVIE/database.properties\nsam/branches/SAK-12433/samigo-pack/src/sql/db_patches/SAK-VIVIE/lib/\nsam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/\nsam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/patches/\nsam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/patches/SAK-1659.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/patches/SAK-1894.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/patches/SAK-2179.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/patches/SAK-2360.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/patches/SAK-2862.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/patches/SAK-4134.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/patches/SAK-4136.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/patches/SAK-4396.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/patches/SAK-4427.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/patches/SAK-5564.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/patches/SAK-5595.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/sakai_samigo.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/sakai_samigo_tables_v2_1_2.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/sakai_samigo_tables_v2_2.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/sakai_samigo_tables_v2_3.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/hsqldb/sakai_samigo_tables_v2_4.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/mysql/\nsam/branches/SAK-12433/samigo-pack/src/sql/mysql/patches/\nsam/branches/SAK-12433/samigo-pack/src/sql/mysql/patches/SAK-1659.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/mysql/patches/SAK-1894.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/mysql/patches/SAK-2179.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/mysql/patches/SAK-2360.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/mysql/patches/SAK-2753.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/mysql/patches/SAK-2862.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/mysql/patches/SAK-4134.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/mysql/patches/SAK-4136.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/mysql/patches/SAK-4396.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/mysql/patches/SAK-4427.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/mysql/patches/SAK-5564.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/mysql/patches/SAK-5595.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/mysql/patches/SAK-6790.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/mysql/patches/SAK-8727.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/mysql/sakai_samigo.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/mysql/sakai_samigo_tables_v2_1_2.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/mysql/sakai_samigo_tables_v2_2.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/mysql/sakai_samigo_tables_v2_3.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/mysql/sakai_samigo_tables_v2_4.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/mysql/samigo_er_mysql.pdf\nsam/branches/SAK-12433/samigo-pack/src/sql/oracle/\nsam/branches/SAK-12433/samigo-pack/src/sql/oracle/02_migrateData_v1_to_v1_5_oracle.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/oracle/patches/\nsam/branches/SAK-12433/samigo-pack/src/sql/oracle/patches/SAK-1659.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/oracle/patches/SAK-1894.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/oracle/patches/SAK-2179.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/oracle/patches/SAK-2360.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/oracle/patches/SAK-2862.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/oracle/patches/SAK-4134.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/oracle/patches/SAK-4136.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/oracle/patches/SAK-4396.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/oracle/patches/SAK-4427.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/oracle/patches/SAK-5564.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/oracle/patches/SAK-5595.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/oracle/patches/SAK-6790.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/oracle/patches/SAK-8727.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/oracle/sakai_samigo.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/oracle/sakai_samigo_tables_v2_1_2.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/oracle/sakai_samigo_tables_v2_2.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/oracle/sakai_samigo_tables_v2_3.sql\nsam/branches/SAK-12433/samigo-pack/src/sql/oracle/sakai_samigo_tables_v2_4.sql\nsam/branches/SAK-12433/samigo-pack/src/webapp/\nsam/branches/SAK-12433/samigo-pack/src/webapp/WEB-INF/\nsam/branches/SAK-12433/samigo-pack/src/webapp/WEB-INF/components.xml\nsam/branches/SAK-12433/samigo-pack/src/webapp/WEB-INF/testbeans.xml\nsam/branches/SAK-12433/samigo-qti/\nsam/branches/SAK-12433/samigo-qti/pom.xml\nsam/branches/SAK-12433/samigo-qti/project.xml\nsam/branches/SAK-12433/samigo-qti/src/\nsam/branches/SAK-12433/samigo-qti/src/java/\nsam/branches/SAK-12433/samigo-qti/src/java/org/\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/asi/\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/asi/ASIBaseClass.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/asi/Assessment.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/asi/Item.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/asi/Section.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/exception/\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/exception/FormatException.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/exception/Iso8601FormatException.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/AttachmentHelper.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/AuthoringHelper.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/AuthoringXml.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/ExtractionHelper.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/MetaDataList.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/QTIHelperFactory.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/assessment/\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/assessment/AssessmentHelper12Impl.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/assessment/AssessmentHelper20Impl.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/assessment/AssessmentHelperBase.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/assessment/AssessmentHelperIfc.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/item/\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/item/ItemHelper12Impl.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/item/ItemHelper20Impl.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/item/ItemHelperBase.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/item/ItemHelperIfc.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/item/ItemTypeExtractionStrategy.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/section/\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/section/SectionHelper12Impl.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/section/SectionHelper20Impl.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/section/SectionHelperBase.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/helper/section/SectionHelperIfc.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/util/\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/util/Iso8601DateFormat.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/util/Iso8601TimeInterval.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/util/PathInfo.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/util/URIResolver.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/util/XmlMapper.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/util/XmlStringBuffer.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/qti/util/XmlUtil.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/services/\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/services/qti/\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/services/qti/QTIService.java\nsam/branches/SAK-12433/samigo-qti/src/java/org/sakaiproject/tool/assessment/services/qti/QTIServiceException.java\nsam/branches/SAK-12433/samigo-services/\nsam/branches/SAK-12433/samigo-services/maven.xml.bak\nsam/branches/SAK-12433/samigo-services/pom.xml\nsam/branches/SAK-12433/samigo-services/project.xml\nsam/branches/SAK-12433/samigo-services/src/\nsam/branches/SAK-12433/samigo-services/src/java/\nsam/branches/SAK-12433/samigo-services/src/java/org/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/spring/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/spring/BeanDefinitions.xml\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/spring/BeanDefinitionsStandalone.xml\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/spring/DataSourceWrapperAutoCommit.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/spring/SpringBeanLocator.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/spring/applicationContext.xml\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/spring/applicationContextStandalone.xml\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/spring/integrationContext.xml\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/spring/integrationContextStandalone.xml\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/spring/samigoApi.xml\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/bundle/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/bundle/Messages.metaprops\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/bundle/Messages.properties\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/bundle/Messages_ar.properties\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/bundle/Messages_ca.metaprops\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/bundle/Messages_ca.properties\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/bundle/Messages_es.properties\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/bundle/Messages_fr_CA.metaprops\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/bundle/Messages_fr_CA.properties\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/bundle/Messages_nl.properties\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/entity/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/entity/FileNamer.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/entity/RecordingData.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/entity/SortableDate.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/entity/assessment/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/entity/assessment/model/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/entity/assessment/model/AccessGroup.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/entity/assessment/model/AllChoices.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/entity/assessment/model/FeedbackModel.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/entity/assessment/model/IPMaskData.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/entity/assessment/model/ScoringModel.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/entity/assessment/model/SubmissionModel.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/questionpool/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/questionpool/QuestionPool.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/questionpool/QuestionPoolException.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/business/questionpool/QuestionPoolIterator.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AgentFacade.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AgentIteratorFacade.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentBaseFacade.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentBaseIteratorFacade.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentFacade.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentFacadeQueries.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentFacadeQueriesAPI.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacade.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacadeQueries.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacadeQueriesAPI.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingSummaryFacade.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentIteratorFacade.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentTemplateFacade.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentTemplateIteratorFacade.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AuthorizationFacade.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AuthzQueriesFacadeAPI.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/DataFacadeException.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/GradebookFacade.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/ItemFacade.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/ItemFacadeQueries.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/ItemFacadeQueriesAPI.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/ItemGradingFacade.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/ItemIteratorFacade.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/ItemManager.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacade.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueriesAPI.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/QuestionPoolFacade.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/QuestionPoolFacadeQueries.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/QuestionPoolFacadeQueriesAPI.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/QuestionPoolIteratorFacade.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/SectionFacade.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/SectionFacadeQueries.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/SectionFacadeQueriesAPI.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/SectionIteratorFacade.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/TypeFacade.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/TypeFacadeQueries.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/TypeFacadeQueriesAPI.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/TypeIteratorFacade.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/AuthorizationFacade.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/AuthorizationFacadeQueries.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/AuthorizationFacadeQueriesAPI.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/AuthorizationIteratorFacade.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/FunctionFacade.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/FunctionIteratorFacade.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/QualifierFacade.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/QualifierIteratorFacade.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/integrated/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/integrated/AuthzQueriesFacade.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/resource/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/resource/AuthzResource.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/standalone/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/standalone/AuthzQueriesFacade.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/util/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/util/PagingUtilQueries.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/util/PagingUtilQueriesAPI.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/context/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/context/IntegrationContextFactory.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/context/spring/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/context/spring/FactoryUtil.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/context/spring/IntegrationContext.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/delivery/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/ifc/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/ifc/AgentHelper.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/ifc/GradebookHelper.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/ifc/GradebookServiceHelper.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/ifc/PublishingTargetHelper.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/ifc/SectionAwareServiceHelper.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/ifc/ServerConfigurationServiceHelper.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/integrated/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/integrated/AbstractSectionsImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/integrated/AgentHelperImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/integrated/FacadeUtils.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/integrated/GradebookHelperImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/integrated/GradebookServiceHelperImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/integrated/PublishingTargetHelperImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/integrated/SectionAwareServiceHelperImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/integrated/ServerConfigurationServiceHelperImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/sed\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/standalone/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/standalone/AbstractSectionsImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/standalone/AgentHelperImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/standalone/FacadeUtils.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/standalone/GradebookHelperImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/standalone/GradebookServiceHelperImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/standalone/PublishingTargetHelperImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/standalone/SectionAwareServiceHelperImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/standalone/ServerConfigurationServiceHelperImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/assessment/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/assessment/impl/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/assessment/impl/AssessmentImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/assessment/impl/AssessmentIteratorImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/assessment/impl/ItemImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/assessment/impl/ItemIteratorImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/assessment/impl/SectionImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/assessment/impl/SectionIteratorImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/authz/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/authz/impl/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/authz/impl/AuthorizationImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/authz/impl/AuthorizationIteratorImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/authz/impl/FunctionImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/authz/impl/FunctionIteratorImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/authz/impl/QualifierImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/authz/impl/QualifierIteratorImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/questionpool/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/questionpool/impl/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/questionpool/impl/QuestionPoolImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/questionpool/impl/QuestionPoolIteratorImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/shared/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/shared/extension/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/shared/extension/TypeExtension.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/shared/impl/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/shared/impl/AgentImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/shared/impl/IdImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/shared/impl/ObjectIteratorImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/shared/impl/PropertiesImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/osid/shared/impl/PropertiesIteratorImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/qti/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/qti/constants/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/qti/constants/AuthoringConstantStrings.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/qti/constants/QTIConstantStrings.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/qti/constants/QTIVersion.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/CommonServiceException.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/GradebookServiceException.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/GradingService.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/GradingServiceException.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/ItemService.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/PersistenceService.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/QuestionPoolService.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/QuestionPoolServiceException.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/SectionService.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/AssessmentEntityProducer.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/AssessmentService.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/AssessmentServiceException.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/PublishedAssessmentService.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/gradebook/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/gradebook/GradebookServiceHelper.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/shared/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/shared/MediaService.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/services/shared/TypeService.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/assessment/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/assessment/AssessmentServiceImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/assessment/ItemServiceImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/assessment/PublishedAssessmentServiceImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/assessment/SectionServiceImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/common/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/common/MediaServiceImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/common/TypeServiceImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/grading/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/grading/GradebookServiceImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/grading/GradingSectionAwareServiceImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/grading/GradingServiceImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/questionpool/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/shared/impl/questionpool/QuestionPoolServiceImpl.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/util/\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/util/DateHandlerWithNull.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/util/FormatException.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/util/HibernateUtil.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/util/Iso8601FormatException.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/util/LabelValue.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/util/MimeType.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/util/MimeTypesLocator.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/util/StringParseUtils.java\nsam/branches/SAK-12433/samigo-services/src/java/org/sakaiproject/tool/assessment/util/TextFormat.java\nsam/branches/SAK-12433/samlite-impl/\nsam/branches/SAK-12433/samlite-impl/pom.xml\nsam/branches/SAK-12433/samlite-impl/project.xml\nsam/branches/SAK-12433/samlite-impl/src/\nsam/branches/SAK-12433/samlite-impl/src/java/\nsam/branches/SAK-12433/samlite-impl/src/java/org/\nsam/branches/SAK-12433/samlite-impl/src/java/org/sakaiproject/\nsam/branches/SAK-12433/samlite-impl/src/java/org/sakaiproject/tool/\nsam/branches/SAK-12433/samlite-impl/src/java/org/sakaiproject/tool/assessment/\nsam/branches/SAK-12433/samlite-impl/src/java/org/sakaiproject/tool/assessment/samlite/\nsam/branches/SAK-12433/samlite-impl/src/java/org/sakaiproject/tool/assessment/samlite/impl/\nsam/branches/SAK-12433/samlite-impl/src/java/org/sakaiproject/tool/assessment/samlite/impl/SamLiteServiceImpl.java\nsam/branches/SAK-12433/testdata/\nsam/branches/SAK-12433/testdata/qti/\nsam/branches/SAK-12433/testdata/qti/respondus/\nsam/branches/SAK-12433/testdata/qti/respondus/RespondusEssayFeedback.xml\nsam/branches/SAK-12433/testdata/qti/respondus/RespondusEssayNoFeedback.xml\nsam/branches/SAK-12433/testdata/qti/respondus/RespondusFIB.xml\nsam/branches/SAK-12433/testdata/qti/respondus/RespondusMatch.xml\nsam/branches/SAK-12433/testdata/qti/respondus/RespondusMultipleChoice.xml\nsam/branches/SAK-12433/testdata/qti/respondus/RespondusTrueFalse.xml\nsam/branches/SAK-12433/testdata/qti/xsl/\nsam/branches/SAK-12433/tests/\nsam/branches/SAK-12433/tests/README.txt\nsam/branches/SAK-12433/tests/src/\nsam/branches/SAK-12433/tests/src/hibernate/\nsam/branches/SAK-12433/tests/src/hibernate/org/\nsam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/\nsam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/\nsam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/\nsam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/\nsam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/dao/\nsam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/dao/assessment/\nsam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/dao/assessment/AssessmentBase.hbm.xml\nsam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/dao/assessment/ItemData.hbm.xml\nsam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedAssessment.hbm.xml\nsam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/dao/assessment/PublishedItemData.hbm.xml\nsam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/dao/authz/\nsam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/dao/authz/AuthorizationData.hbm.xml\nsam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/dao/grading/\nsam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/dao/grading/GradingData.hbm.xml\nsam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/dao/grading/MediaData.hbm.xml\nsam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/dao/questionpool/\nsam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/dao/questionpool/QuestionPoolData.hbm.xml\nsam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/dao/shared/\nsam/branches/SAK-12433/tests/src/hibernate/org/sakaiproject/tool/assessment/data/dao/shared/TypeData.hbm.xml\nsam/branches/SAK-12433/tests/src/java/\nsam/branches/SAK-12433/tests/src/java/org/\nsam/branches/SAK-12433/tests/src/java/org/sakaiproject/\nsam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/\nsam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/\nsam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/integration/\nsam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/integration/helper/\nsam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/integration/helper/ifc/\nsam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/samlite/\nsam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/samlite/test/\nsam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/samlite/test/SamLiteServiceTest.java\nsam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/samlite/test/TestQuiz.txt\nsam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/test/\nsam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/test/integration/\nsam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/test/integration/context/\nsam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/test/integration/context/TestIntCtxtFactoryMethods.java\nsam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/test/integration/context/TestIntegrationContextFactory.java\nsam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/test/integration/context/spring/\nsam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/test/integration/context/spring/TestFactoryUtil.java\nsam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/test/integration/helper/\nsam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/test/integration/helper/ifc/\nsam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/test/integration/helper/ifc/TestAgentHelper.java\nsam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/test/integration/helper/ifc/TestAuthzHelper.java\nsam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/test/integration/helper/ifc/TestGradebookHelper.java\nsam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/test/integration/helper/ifc/TestGradebookServiceHelper.java\nsam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/test/integration/helper/ifc/TestPublishingTargetHelper.java\nsam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/tool/\nsam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/tool/integration/\nsam/branches/SAK-12433/tests/src/java/org/sakaiproject/tool/assessment/tool/integration/context/\nsam/branches/SAK-12433/tests/src/spring/\nsam/branches/SAK-12433/tests/src/spring/org/\nsam/branches/SAK-12433/tests/src/spring/org/sakaiproject/\nsam/branches/SAK-12433/tests/src/spring/org/sakaiproject/spring/\nsam/branches/SAK-12433/tests/src/spring/org/sakaiproject/spring/BeanDefinitions.xml\nsam/branches/SAK-12433/tests/src/spring/org/sakaiproject/spring/README.txt\nsam/branches/SAK-12433/tests/src/spring/org/sakaiproject/spring/applicationContext.xml.integrated\nsam/branches/SAK-12433/tests/src/spring/org/sakaiproject/spring/applicationContext.xml.standalone\nsam/branches/SAK-12433/tests/src/spring/org/sakaiproject/spring/integrationContext.xml.integrated\nsam/branches/SAK-12433/tests/src/spring/org/sakaiproject/spring/integrationContext.xml.standalone\nLog:\nSAK-12433 => from r31545 of sakai_2-4-x.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 15:22:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 15:22:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 15:22:19 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby awakenings.mail.umich.edu () with ESMTP id lBEKMIhX000375;\n\tFri, 14 Dec 2007 15:22:18 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4762E5F3.8AB78.23752 ; \n\t14 Dec 2007 15:22:14 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9017F9EB4A;\n\tFri, 14 Dec 2007 20:22:13 +0000 (GMT)\nMessage-ID: <200712142014.lBEKE2vZ013276@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 718\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 20:21:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0CF153939A\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 20:21:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEKE2PQ013278\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 15:14:02 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEKE2vZ013276\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 15:14:02 -0500\nDate: Fri, 14 Dec 2007 15:14:02 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39282 - sam/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 15:22:19 2007\nX-DSPAM-Confidence: 0.9805\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39282\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 15:14:01 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39282\n\nAdded:\nsam/branches/SAK-12433/\nLog:\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 15:13:05 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 15:13:05 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 15:13:05 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby chaos.mail.umich.edu () with ESMTP id lBEKD2qX024844;\n\tFri, 14 Dec 2007 15:13:02 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 4762E3B6.2725E.30735 ; \n\t14 Dec 2007 15:12:41 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D28D089BCA;\n\tFri, 14 Dec 2007 20:12:42 +0000 (GMT)\nMessage-ID: <200712142004.lBEK4RpU013237@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 554\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 20:12:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CB9D63937A\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 20:12:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEK4R23013239\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 15:04:27 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEK4RpU013237\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 15:04:27 -0500\nDate: Fri, 14 Dec 2007 15:04:27 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [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!\n 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!\n ki/component rwiki-impl/impl/src/bundle/uk/ac/cam/caret/sakai/!\n rwiki/co\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 15:13:05 2007\nX-DSPAM-Confidence: 0.6191\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39281\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 15:02:09 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39281\n\nAdded:\nrwiki/branches/SAK-12433/README\nrwiki/branches/SAK-12433/README.QA\nrwiki/branches/SAK-12433/maven.xml\nrwiki/branches/SAK-12433/pom.xml\nrwiki/branches/SAK-12433/project.properties\nrwiki/branches/SAK-12433/project.xml\nrwiki/branches/SAK-12433/readme.txt\nrwiki/branches/SAK-12433/rwiki-api/\nrwiki/branches/SAK-12433/rwiki-api/.classpath\nrwiki/branches/SAK-12433/rwiki-api/.cvsignore\nrwiki/branches/SAK-12433/rwiki-api/.project\nrwiki/branches/SAK-12433/rwiki-api/LICENSE.txt\nrwiki/branches/SAK-12433/rwiki-api/api/\nrwiki/branches/SAK-12433/rwiki-api/api/pom.xml\nrwiki/branches/SAK-12433/rwiki-api/api/project.properties\nrwiki/branches/SAK-12433/rwiki-api/api/project.xml\nrwiki/branches/SAK-12433/rwiki-api/api/src/\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/org/\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/org/radeox/\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/org/radeox/api/\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/org/radeox/api/engine/\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/org/radeox/api/engine/ImageRenderEngine.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/org/radeox/api/engine/IncludeRenderEngine.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/org/radeox/api/engine/RenderEngine.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/org/radeox/api/engine/WikiRenderEngine.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/org/radeox/api/engine/context/\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/org/radeox/api/engine/context/InitialRenderContext.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/org/radeox/api/engine/context/RenderContext.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/org/radeox/api/macro/\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/org/radeox/api/macro/Macro.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/org/radeox/api/macro/MacroParameter.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/DefaultRole.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/EntityHandler.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/PageLinkRenderer.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/RWikiObjectService.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/RWikiSecurityService.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/RenderService.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/dao/\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/dao/ObjectProxy.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/dao/RWikiCurrentObjectDao.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/dao/RWikiHistoryObjectDao.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/dao/RWikiObjectContentDao.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/dao/RWikiObjectDao.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/dao/RWikiPropertyDao.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/model/\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/model/DataMigrationAgent.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/model/DataMigrationController.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/model/RWikiCurrentObject.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/model/RWikiCurrentObjectContent.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/model/RWikiEntity.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/model/RWikiHistoryObject.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/model/RWikiHistoryObjectContent.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/model/RWikiObject.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/model/RWikiObjectContent.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/model/RWikiPermissions.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/model/RWikiProperty.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/radeox/\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/radeox/CachableRenderContext.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/radeox/RenderCache.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/radeox/RenderContextFactory.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/api/radeox/RenderEngineFactory.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/exception/\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/exception/CreatePermissionException.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/exception/PermissionException.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/exception/ReadPermissionException.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/exception/UpdatePermissionException.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/exception/VersionException.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/MessageService.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/PreferenceService.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/TriggerHandler.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/TriggerService.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/dao/\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/dao/MessageDao.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/dao/PagePresenceDao.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/dao/PreferenceDao.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/dao/TriggerDao.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/model/\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/model/Message.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/model/PagePresence.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/model/Preference.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/java/uk/ac/cam/caret/sakai/rwiki/service/message/api/model/Trigger.java\nrwiki/branches/SAK-12433/rwiki-api/api/src/test/\nrwiki/branches/SAK-12433/rwiki-api/api/src/test/uk/\nrwiki/branches/SAK-12433/rwiki-api/api/src/test/uk/ac/\nrwiki/branches/SAK-12433/rwiki-api/api/src/test/uk/ac/cam/\nrwiki/branches/SAK-12433/rwiki-api/api/src/test/uk/ac/cam/caret/\nrwiki/branches/SAK-12433/rwiki-api/api/src/test/uk/ac/cam/caret/sakai/\nrwiki/branches/SAK-12433/rwiki-api/api/src/test/uk/ac/cam/caret/sakai/rwiki/\nrwiki/branches/SAK-12433/rwiki-api/api/src/test/uk/ac/cam/caret/sakai/rwiki/model/\nrwiki/branches/SAK-12433/rwiki-api/api/xdocs/\nrwiki/branches/SAK-12433/rwiki-api/api/xdocs/navigation.xml\nrwiki/branches/SAK-12433/rwiki-help/\nrwiki/branches/SAK-12433/rwiki-help/.classpath\nrwiki/branches/SAK-12433/rwiki-help/.project\nrwiki/branches/SAK-12433/rwiki-help/pom.xml\nrwiki/branches/SAK-12433/rwiki-help/project.xml\nrwiki/branches/SAK-12433/rwiki-help/src/\nrwiki/branches/SAK-12433/rwiki-help/src/sakai_rwiki/\nrwiki/branches/SAK-12433/rwiki-help/src/sakai_rwiki/adding_images.htm\nrwiki/branches/SAK-12433/rwiki-help/src/sakai_rwiki/creating_pages.htm\nrwiki/branches/SAK-12433/rwiki-help/src/sakai_rwiki/editing_pages.htm\nrwiki/branches/SAK-12433/rwiki-help/src/sakai_rwiki/help.xml\nrwiki/branches/SAK-12433/rwiki-help/src/sakai_rwiki/overview.htm\nrwiki/branches/SAK-12433/rwiki-help/src/sakai_rwiki/setting_permissions.htm\nrwiki/branches/SAK-12433/rwiki-help/src/sakai_rwiki/viewing_history.htm\nrwiki/branches/SAK-12433/rwiki-help/src/sakai_rwiki/viewing_info.htm\nrwiki/branches/SAK-12433/rwiki-help/src/sakai_rwiki/viewing_pages.htm\nrwiki/branches/SAK-12433/rwiki-impl/\nrwiki/branches/SAK-12433/rwiki-impl/.classpath\nrwiki/branches/SAK-12433/rwiki-impl/.project\nrwiki/branches/SAK-12433/rwiki-impl/impl/\nrwiki/branches/SAK-12433/rwiki-impl/impl/pom.xml\nrwiki/branches/SAK-12433/rwiki-impl/impl/project.xml\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/bundle/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/bundle/uk/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/bundle/uk/ac/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/bundle/uk/ac/cam/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/bundle/uk/ac/cam/caret/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/bundle/uk/ac/cam/caret/sakai/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/bundle/uk/ac/cam/caret/sakai/rwiki/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/bundle/uk/ac/cam/caret/sakai/rwiki/component/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/bundle/uk/ac/cam/caret/sakai/rwiki/component/bundle/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/bundle/uk/ac/cam/caret/sakai/rwiki/component/bundle/Messages.properties\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/bundle/uk/ac/cam/caret/sakai/rwiki/component/bundle/Messages_ca.properties\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/bundle/uk/ac/cam/caret/sakai/rwiki/component/bundle/Messages_fr_CA.properties\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/bundle/uk/ac/cam/caret/sakai/rwiki/component/bundle/Messages_ja.properties\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/bundle/uk/ac/cam/caret/sakai/rwiki/component/bundle/Messages_nl.properties\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/Messages.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/dao/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/dao/impl/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/dao/impl/IteratorProxy.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/dao/impl/ListIteratorProxy.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/dao/impl/ListProxy.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/dao/impl/RWikiCurrentObjectContentDaoImpl.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/dao/impl/RWikiCurrentObjectDaoImpl.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/dao/impl/RWikiHistoryObjectContentDaoImpl.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/dao/impl/RWikiHistoryObjectDaoImpl.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/dao/impl/RWikiPropertyDaoImpl.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/macros/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/macros/AnchorMacro.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/macros/BackgroundColorMacro.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/macros/BlockMacro.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/macros/ColorMacro.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/macros/ImageMacro.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/macros/IndexMacro.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/macros/MathMacro.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/macros/RecentChangesMacro.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/macros/SakaiLinkMacro.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/macros/SectionsMacro.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/macros/SpanMacro.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/macros/WorksiteInfoMacro.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/message/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/message/MessageServiceImpl.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/message/PreferenceServiceImpl.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/message/TriggerServiceImpl.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/message/dao/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/message/dao/impl/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/message/dao/impl/MessageDaoImpl.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/message/dao/impl/PagePresenceDaoImpl.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/message/dao/impl/PreferenceDaoImpl.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/message/dao/impl/TriggerDaoImpl.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/model/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/model/impl/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/model/impl/DataMigrationSpecification.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/model/impl/RWikiEntityImpl.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/model/impl/SHAHashMigration.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/model/impl/SQLScriptMigration.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/radeox/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/radeox/service/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/radeox/service/impl/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/radeox/service/impl/RWikiBaseRenderEngine.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/radeox/service/impl/RenderCacheImpl.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/radeox/service/impl/RenderContextFactoryImpl.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/radeox/service/impl/RenderEngineFactoryImpl.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/radeox/service/impl/SpecializedRenderContext.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/radeox/service/impl/SpecializedRenderEngine.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/BaseEntityHandlerImpl.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/BaseFOPSerializer.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/ComponentPageLinkRenderImpl.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/Decoded.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/DefaultRoleImpl.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/FOP2PDFSerializer.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/FOP2RTFSerializer.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/PageVisits.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/RWikiObjectServiceImpl.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/RWikiSecurityServiceImpl.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/RenderServiceImpl.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/SiteEmailNotificationRWiki.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/XHTMLSerializer.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/XLSTChangesHandler.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/XSLTEntityHandler.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/XSLTTransform.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/fop.cfg.xml\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/null.xslt\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/toatom03.xslt\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/tohtml.xslt\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/torss091.xslt\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/torss10.xslt\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/torss20.xslt\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/xhtml2fo.xslt\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/test/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/test/uk/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/test/uk/ac/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/test/uk/ac/cam/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/test/uk/ac/cam/caret/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/test/uk/ac/cam/caret/sakai/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/test/uk/ac/cam/caret/sakai/rwiki/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/test/uk/ac/cam/caret/sakai/rwiki/component/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/test/uk/ac/cam/caret/sakai/rwiki/component/service/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/test/uk/ac/cam/caret/sakai/rwiki/component/service/impl/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/test/uk/ac/cam/caret/sakai/rwiki/component/service/impl/test/\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/test/uk/ac/cam/caret/sakai/rwiki/component/service/impl/test/XSLTEntityHandlerTest.java\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/test/uk/ac/cam/caret/sakai/rwiki/component/service/impl/test/testinput.xml\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/test/uk/ac/cam/caret/sakai/rwiki/component/service/impl/test/testpattern.xhtml\nrwiki/branches/SAK-12433/rwiki-impl/impl/src/test/uk/ac/cam/caret/sakai/rwiki/component/service/impl/testutil/\nrwiki/branches/SAK-12433/rwiki-impl/pack/\nrwiki/branches/SAK-12433/rwiki-impl/pack/pom.xml\nrwiki/branches/SAK-12433/rwiki-impl/pack/project.properties\nrwiki/branches/SAK-12433/rwiki-impl/pack/project.xml\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/META-INF/\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/META-INF/services/\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/META-INF/services/org.radeox.macro.Macro\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/ehcache.xml\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/rwiki/\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/hsqldb/\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/hsqldb/migrateTo20051017.sql\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/hsqldb/migrateTo20051026.sql\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/hsqldb/migrateTo20051107.sql\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/mysql/\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/mysql/migrateTo20051017.sql\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/mysql/migrateTo20051026.sql\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/mysql/migrateTo20051107.sql\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/oracle/\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/oracle/migrateTo20051017.sql\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/oracle/migrateTo20051026.sql\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/oracle/migrateTo20051107.sql\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/webapp/\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/webapp/WEB-INF/\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/webapp/WEB-INF/components.xml\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/webapp/WEB-INF/coreDaoComponents.xml\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/webapp/WEB-INF/coreServiceComponents.xml\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/webapp/WEB-INF/datamigrationComponents.xml\nrwiki/branches/SAK-12433/rwiki-impl/pack/src/webapp/WEB-INF/messagingComponents.xml\nrwiki/branches/SAK-12433/rwiki-integration-test/\nrwiki/branches/SAK-12433/rwiki-integration-test/.classpath\nrwiki/branches/SAK-12433/rwiki-integration-test/.project\nrwiki/branches/SAK-12433/rwiki-integration-test/pom.xml\nrwiki/branches/SAK-12433/rwiki-integration-test/project.properties\nrwiki/branches/SAK-12433/rwiki-integration-test/project.xml\nrwiki/branches/SAK-12433/rwiki-integration-test/src/\nrwiki/branches/SAK-12433/rwiki-integration-test/src/conf/\nrwiki/branches/SAK-12433/rwiki-integration-test/src/conf/log4j.properties\nrwiki/branches/SAK-12433/rwiki-integration-test/src/test/\nrwiki/branches/SAK-12433/rwiki-integration-test/src/test/uk/\nrwiki/branches/SAK-12433/rwiki-integration-test/src/test/uk/ac/\nrwiki/branches/SAK-12433/rwiki-integration-test/src/test/uk/ac/cam/\nrwiki/branches/SAK-12433/rwiki-integration-test/src/test/uk/ac/cam/caret/\nrwiki/branches/SAK-12433/rwiki-integration-test/src/test/uk/ac/cam/caret/sakai/\nrwiki/branches/SAK-12433/rwiki-integration-test/src/test/uk/ac/cam/caret/sakai/rwiki/\nrwiki/branches/SAK-12433/rwiki-integration-test/src/test/uk/ac/cam/caret/sakai/rwiki/component/\nrwiki/branches/SAK-12433/rwiki-integration-test/src/test/uk/ac/cam/caret/sakai/rwiki/component/test/\nrwiki/branches/SAK-12433/rwiki-integration-test/src/test/uk/ac/cam/caret/sakai/rwiki/component/test/ComponentIntegrationTest.java\nrwiki/branches/SAK-12433/rwiki-integration-test/src/test/uk/ac/cam/caret/sakai/rwiki/component/test/archive.xml\nrwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/\nrwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/META-INF/\nrwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/META-INF/services/\nrwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/META-INF/services/org.radeox.macro.Macro\nrwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/ehcache.xml\nrwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/\nrwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/\nrwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/\nrwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/\nrwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/\nrwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/rwiki/\nrwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/rwiki/model/\nrwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/\nrwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/hsqldb/\nrwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/hsqldb/migrateTo20051017.sql\nrwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/hsqldb/migrateTo20051026.sql\nrwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/hsqldb/migrateTo20051107.sql\nrwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/mysql/\nrwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/mysql/migrateTo20051017.sql\nrwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/mysql/migrateTo20051026.sql\nrwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/mysql/migrateTo20051107.sql\nrwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/oracle/\nrwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/oracle/migrateTo20051017.sql\nrwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/oracle/migrateTo20051026.sql\nrwiki/branches/SAK-12433/rwiki-integration-test/src/testBundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/oracle/migrateTo20051107.sql\nrwiki/branches/SAK-12433/rwiki-integration-test/wikitestdir/\nrwiki/branches/SAK-12433/rwiki-model/\nrwiki/branches/SAK-12433/rwiki-model/.classpath\nrwiki/branches/SAK-12433/rwiki-model/.project\nrwiki/branches/SAK-12433/rwiki-model/pom.xml\nrwiki/branches/SAK-12433/rwiki-model/project.properties\nrwiki/branches/SAK-12433/rwiki-model/project.xml\nrwiki/branches/SAK-12433/rwiki-model/schemabuild/\nrwiki/branches/SAK-12433/rwiki-model/schemabuild/hsqldb.properties\nrwiki/branches/SAK-12433/rwiki-model/schemabuild/mysql.properties\nrwiki/branches/SAK-12433/rwiki-model/schemabuild/oracle.properties\nrwiki/branches/SAK-12433/rwiki-model/src/\nrwiki/branches/SAK-12433/rwiki-model/src/java/\nrwiki/branches/SAK-12433/rwiki-model/src/java/uk/\nrwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/\nrwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/\nrwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/\nrwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/\nrwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/\nrwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/message/\nrwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/message/model/\nrwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/message/model/PagePresenceImpl.java\nrwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/message/model/PreferenceImpl.java\nrwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/message/model/RwikiMessageImpl.java\nrwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/message/model/RwikiTriggerImpl.java\nrwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/message/model/message.hbm.xml\nrwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/model/\nrwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/model/RWiki.hbm.xml\nrwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/model/RWikiCurrentObjectContentImpl.java\nrwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/model/RWikiCurrentObjectImpl.java\nrwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/model/RWikiHistoryObjectContentImpl.java\nrwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/model/RWikiHistoryObjectImpl.java\nrwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/model/RWikiObjectContentImpl.java\nrwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/model/RWikiObjectImpl.java\nrwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/model/RWikiPermissionsImpl.java\nrwiki/branches/SAK-12433/rwiki-model/src/java/uk/ac/cam/caret/sakai/rwiki/model/RWikiPropertyImpl.java\nrwiki/branches/SAK-12433/rwiki-model/src/test/\nrwiki/branches/SAK-12433/rwiki-model/src/test/uk/\nrwiki/branches/SAK-12433/rwiki-model/src/test/uk/ac/\nrwiki/branches/SAK-12433/rwiki-model/src/test/uk/ac/cam/\nrwiki/branches/SAK-12433/rwiki-model/src/test/uk/ac/cam/caret/\nrwiki/branches/SAK-12433/rwiki-model/src/test/uk/ac/cam/caret/sakai/\nrwiki/branches/SAK-12433/rwiki-model/src/test/uk/ac/cam/caret/sakai/rwiki/\nrwiki/branches/SAK-12433/rwiki-model/src/test/uk/ac/cam/caret/sakai/rwiki/model/\nrwiki/branches/SAK-12433/rwiki-model/src/test/uk/ac/cam/caret/sakai/rwiki/model/test/\nrwiki/branches/SAK-12433/rwiki-model/src/test/uk/ac/cam/caret/sakai/rwiki/model/test/RWikiObjectContentImplTest.java\nrwiki/branches/SAK-12433/rwiki-tool/\nrwiki/branches/SAK-12433/rwiki-tool/.checkclipse\nrwiki/branches/SAK-12433/rwiki-tool/.checkstyle\nrwiki/branches/SAK-12433/rwiki-tool/.classpath\nrwiki/branches/SAK-12433/rwiki-tool/.cvsignore\nrwiki/branches/SAK-12433/rwiki-tool/.project\nrwiki/branches/SAK-12433/rwiki-tool/.springBeans\nrwiki/branches/SAK-12433/rwiki-tool/.springBeansProject\nrwiki/branches/SAK-12433/rwiki-tool/LICENSE.txt\nrwiki/branches/SAK-12433/rwiki-tool/tool/\nrwiki/branches/SAK-12433/rwiki-tool/tool/checkstyle.xml\nrwiki/branches/SAK-12433/rwiki-tool/tool/pom.xml\nrwiki/branches/SAK-12433/rwiki-tool/tool/project.properties\nrwiki/branches/SAK-12433/rwiki-tool/tool/project.xml\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/META-INF/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/META-INF/services/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/model/bundle/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/Messages.properties\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/Messages_ca.properties\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/Messages_fr_CA.properties\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/Messages_ja.properties\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/Messages_nl.properties\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/PrepopulatePages.properties\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/PrepopulatePages_ca.properties\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/PrepopulatePages_fr_CA.properties\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/PrepopulatePages_ja.properties\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/PrepopulatePages_nl.properties\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/rwikivelocity.config\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/DefaultRequestDispatcher.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/ExcludeEscapeHtmlReference.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/MapDispatcher.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/ModelMigrationContextListener.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/RWikiServlet.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/RequestHelper.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/RequestScopeSuperBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/VelocityDispatchServlet.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/VelocityInlineDispatcher.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/WebappLoader.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/api/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/api/CommandService.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/api/HttpCommand.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/api/PopulateService.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/api/ToolRenderService.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/AuthZGroupBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/AuthZGroupCollectionBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/AuthZGroupEditBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/DiffBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/EditBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/ErrorBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/FullSearchBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/GenericDiffBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/HistoryBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/HomeBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/MultiRealmEditBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/PermissionsBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/PrePopulateBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/PreferencesBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/PresenceBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/RecentlyVisitedBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/ReferencesBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/RenderBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/ResourceLoaderBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/RoleBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/SearchBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/ToolConfigBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/UpdatePermissionsBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/ViewBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/helper/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/helper/AuthZGroupBeanHelper.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/helper/AuthZGroupCollectionBeanHelper.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/helper/AuthZGroupEditBeanHelper.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/helper/DiffHelperBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/helper/MultiRealmEditBeanHelper.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/helper/PreferencesBeanHelper.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/helper/PresenceBeanHelper.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/helper/RecentlyVisitedHelperBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/helper/ResourceLoaderHelperBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/helper/ReverseHistoryHelperBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/helper/ReviewHelperBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/helper/UpdatePermissionsBeanHelper.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/helper/UserHelperBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/bean/helper/ViewParamsHelperBean.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/AddAttachmentReturnCommand.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/BasicHttpCommand.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/CommentNewCommand.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/CommentSaveCommand.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/Dispatcher.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/EditAuthZGroupCommand.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/EditManyAuthZGroupCommand.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/HelperCommand.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/RevertCommand.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/SaveCommand.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/SimpleCommand.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/UpdatePermissionsCommand.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/UpdatePreferencesCommand.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/helper/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/helper/ErrorBeanHelper.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/service/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/service/impl/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/service/impl/CommandServiceImpl.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/service/impl/PageLinkRendererImpl.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/service/impl/PopulateServiceImpl.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/service/impl/PrintPageLinkRendererImpl.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/service/impl/PublicPageLinkRendererImpl.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/service/impl/ToolRenderServiceImpl.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/util/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/util/WikiPageAction.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/test/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/test/uk/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/test/uk/ac/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/test/uk/ac/cam/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/test/uk/ac/cam/caret/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/test/uk/ac/cam/caret/sakai/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/test/uk/ac/cam/caret/sakai/rwiki/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/test/uk/ac/cam/caret/sakai/rwiki/bean/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/test/uk/ac/cam/caret/sakai/rwiki/bean/test/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/test/uk/ac/cam/caret/sakai/rwiki/bean/test/GenericDiffBeanTest.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/test/uk/ac/cam/caret/sakai/rwiki/bean/test/RenderBeanTest.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/test/uk/ac/cam/caret/sakai/rwiki/bean/test/ViewBeanTest.java\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/test/uk/ac/cam/caret/sakai/rwiki/component/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/test/uk/ac/cam/caret/sakai/rwiki/component/model/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/test/uk/ac/cam/caret/sakai/rwiki/component/model/impl/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/test/uk/ac/cam/caret/sakai/rwiki/component/model/impl/test/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/testBundle/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/testBundle/uk/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/testBundle/uk/ac/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/testBundle/uk/ac/cam/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/testBundle/uk/ac/cam/caret/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/testBundle/uk/ac/cam/caret/sakai/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/testBundle/uk/ac/cam/caret/sakai/rwiki/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/testBundle/uk/ac/cam/caret/sakai/rwiki/component/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/testBundle/uk/ac/cam/caret/sakai/rwiki/component/model/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/testBundle/uk/ac/cam/caret/sakai/rwiki/component/model/impl/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/testBundle/uk/ac/cam/caret/sakai/rwiki/component/model/impl/test/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/Title.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/breadcrumb.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/commentedit.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/commenteditcomplete.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/commenteditconflict.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/commentnew.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/comments.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/commentslist.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/diff.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/edit.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/editRealm-many.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/editRealm-manyv2.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/editRealm.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/edittoolbar.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/errorpage.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/footer.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/fragmentpreview.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/fragmentview.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/full_search.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/header.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/history.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/info.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/permission.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/preferences.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/presencechat.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/presencechatlist.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/presencelist.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/preview.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/publicbreadcrumb.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/publicview.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/realmIdInUse.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/realmUnknown.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/review.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/search.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/sidebar-switcher.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/sidebar.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/test.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/view.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/command-pages/wikiStyle.jsp\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/commandComponents.xml\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/components.xml\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/prepopulateComponents.xml\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/rwiki.tld\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/tags/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/tags/CommandLinks.tag\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/tags/FormatDisplayName.tag\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/tags/InfoPageGranted.tag\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/toolComponents.xml\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/diff.vm\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/edit.vm\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/editRealm-many.vm\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/editRealm-manyv2.vm\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/editRealm.vm\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/fragmentpreview.vm\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/fragmentview.vm\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/full_search.vm\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/history.vm\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/info.vm\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/macros.vm\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/permission.vm\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/preferences.vm\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/preview.vm\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/printview.vm\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/publicview.vm\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/review.vm\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/search.vm\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/title.vm\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/vm/view.vm\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/WEB-INF/web.xml\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/ajaxload.gif\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/akaxload.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/atom03.gif\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/feed.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/i-bottom.gif\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/i-repeater.gif\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/icklearrow.gif\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/l.gif\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/minus.gif\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/page-file.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/page-foldericon.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/page-openfoldericon.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/plus.gif\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/printer.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/rss.gif\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/rss091.gif\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/rss10.gif\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/rss20.gif\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/accept.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/anchor.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_cascade.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_double.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_form.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_form_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_form_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_form_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_form_magnify.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_get.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_home.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_key.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_lightning.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_osx.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_osx_terminal.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_put.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_side_boxes.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_side_contract.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_side_expand.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_side_list.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_side_tree.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_split.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_tile_horizontal.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_tile_vertical.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_view_columns.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_view_detail.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_view_gallery.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_view_icons.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_view_list.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_view_tile.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_xp.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/application_xp_terminal.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_branch.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_divide.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_down.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_in.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_inout.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_join.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_left.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_merge.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_out.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_redo.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_refresh.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_refresh_small.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_right.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_rotate_anticlockwise.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_rotate_clockwise.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_switch.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_turn_left.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_turn_right.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_undo.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/arrow_up.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/asterisk_orange.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/asterisk_yellow.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/attach.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/award_star_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/award_star_bronze_1.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/award_star_bronze_2.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/award_star_bronze_3.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/award_star_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/award_star_gold_1.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/award_star_gold_2.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/award_star_gold_3.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/award_star_silver_1.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/award_star_silver_2.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/award_star_silver_3.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/basket.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/basket_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/basket_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/basket_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/basket_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/basket_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/basket_put.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/basket_remove.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bell.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bell_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bell_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bell_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bell_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bell_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bin.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bin_closed.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bin_empty.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bomb.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/book.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/book_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/book_addresses.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/book_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/book_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/book_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/book_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/book_key.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/book_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/book_next.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/book_open.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/book_previous.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/box.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/brick.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/brick_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/brick_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/brick_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/brick_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/brick_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/brick_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bricks.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/briefcase.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bug.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bug_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bug_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bug_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bug_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bug_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bug_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/building.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/building_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/building_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/building_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/building_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/building_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/building_key.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/building_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_arrow_bottom.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_arrow_down.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_arrow_top.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_arrow_up.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_black.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_blue.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_disk.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_feed.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_green.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_key.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_orange.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_picture.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_pink.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_purple.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_red.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_star.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_toggle_minus.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_toggle_plus.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_white.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_wrench.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/bullet_yellow.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cake.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/calculator.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/calculator_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/calculator_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/calculator_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/calculator_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/calculator_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/calendar.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/calendar_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/calendar_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/calendar_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/calendar_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/calendar_view_day.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/calendar_view_month.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/calendar_view_week.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/camera.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/camera_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/camera_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/camera_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/camera_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/camera_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/camera_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/camera_small.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cancel.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/car.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/car_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/car_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cart.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cart_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cart_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cart_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cart_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cart_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cart_put.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cart_remove.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cd.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cd_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cd_burn.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cd_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cd_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cd_eject.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cd_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_bar.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_bar_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_bar_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_bar_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_bar_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_bar_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_curve.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_curve_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_curve_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_curve_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_curve_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_curve_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_curve_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_line.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_line_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_line_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_line_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_line_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_line_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_organisation.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_organisation_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_organisation_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_pie.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_pie_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_pie_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_pie_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_pie_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/chart_pie_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/clock.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/clock_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/clock_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/clock_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/clock_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/clock_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/clock_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/clock_pause.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/clock_play.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/clock_red.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/clock_stop.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cog.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cog_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cog_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cog_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cog_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cog_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/coins.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/coins_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/coins_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/color_swatch.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/color_wheel.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/comment.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/comment_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/comment_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/comment_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/comments.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/comments_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/comments_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/compress.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/computer.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/computer_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/computer_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/computer_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/computer_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/computer_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/computer_key.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/computer_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/connect.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/contrast.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/contrast_decrease.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/contrast_high.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/contrast_increase.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/contrast_low.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_eject.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_eject_blue.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_end.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_end_blue.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_equalizer.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_equalizer_blue.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_fastforward.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_fastforward_blue.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_pause.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_pause_blue.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_play.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_play_blue.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_repeat.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_repeat_blue.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_rewind.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_rewind_blue.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_start.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_start_blue.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_stop.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/control_stop_blue.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/controller.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/controller_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/controller_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/controller_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/creditcards.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cross.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/css.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/css_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/css_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/css_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/css_valid.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cup.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cup_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cup_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cup_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cup_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cup_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cup_key.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cup_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cursor.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cut.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/cut_red.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/database.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/database_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/database_connect.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/database_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/database_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/database_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/database_gear.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/database_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/database_key.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/database_lightning.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/database_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/database_refresh.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/database_save.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/database_table.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/date.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/date_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/date_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/date_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/date_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/date_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/date_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/date_magnify.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/date_next.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/date_previous.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/disconnect.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/disk.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/disk_multiple.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/door.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/door_in.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/door_open.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/door_out.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drink.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drink_empty.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_burn.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_cd.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_cd_empty.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_disk.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_key.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_magnify.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_network.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_rename.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_user.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/drive_web.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/dvd.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/dvd_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/dvd_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/dvd_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/dvd_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/dvd_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/dvd_key.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/dvd_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/email.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/email_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/email_attach.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/email_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/email_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/email_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/email_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/email_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/email_open.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/email_open_image.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/emoticon_evilgrin.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/emoticon_grin.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/emoticon_happy.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/emoticon_smile.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/emoticon_surprised.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/emoticon_tongue.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/emoticon_unhappy.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/emoticon_waii.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/emoticon_wink.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/error_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/error_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/error_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/exclamation.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/eye.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/feed.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/feed_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/feed_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/feed_disk.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/feed_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/feed_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/feed_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/feed_key.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/feed_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/feed_magnify.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/female.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/film.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/film_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/film_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/film_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/film_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/film_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/film_key.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/film_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/film_save.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/find.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/flag_blue.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/flag_green.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/flag_orange.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/flag_pink.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/flag_purple.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/flag_red.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/flag_yellow.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_bell.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_brick.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_bug.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_camera.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_database.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_explore.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_feed.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_find.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_heart.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_image.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_key.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_lightbulb.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_magnify.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_page.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_page_white.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_palette.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_picture.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_star.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_table.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_user.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/folder_wrench.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/font.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/font_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/font_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/font_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/group.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/group_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/group_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/group_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/group_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/group_gear.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/group_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/group_key.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/group_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/heart.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/heart_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/heart_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/help.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/hourglass.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/hourglass_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/hourglass_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/hourglass_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/hourglass_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/house.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/house_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/house_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/html.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/html_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/html_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/html_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/html_valid.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/image.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/image_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/image_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/image_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/image_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/images.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/information.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/ipod.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/ipod_cast.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/ipod_cast_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/ipod_cast_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/ipod_sound.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/joystick.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/joystick_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/joystick_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/joystick_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/key.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/key_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/key_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/key_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/keyboard.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/keyboard_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/keyboard_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/keyboard_magnify.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/layers.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/layout.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/layout_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/layout_content.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/layout_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/layout_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/layout_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/layout_header.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/layout_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/layout_sidebar.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lightbulb.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lightbulb_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lightbulb_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lightbulb_off.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lightning.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lightning_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lightning_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lightning_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/link_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/link_break.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/link_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/link_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/link_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/link_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lock.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lock_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lock_break.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lock_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lock_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lock_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lock_open.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lorry.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lorry_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lorry_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lorry_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lorry_flatbed.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lorry_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/lorry_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/magifier_zoom_out.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/magnifier.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/magnifier_zoom_in.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/male.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/map.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/map_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/map_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/map_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/map_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/map_magnify.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/medal_bronze_1.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/medal_bronze_2.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/medal_bronze_3.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/medal_bronze_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/medal_bronze_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/medal_gold_1.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/medal_gold_2.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/medal_gold_3.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/medal_gold_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/medal_gold_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/medal_silver_1.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/medal_silver_2.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/medal_silver_3.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/medal_silver_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/medal_silver_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/money.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/money_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/money_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/money_dollar.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/money_euro.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/money_pound.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/money_yen.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/monitor.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/monitor_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/monitor_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/monitor_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/monitor_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/monitor_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/monitor_lightning.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/monitor_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/mouse.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/mouse_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/mouse_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/mouse_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/music.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/new.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/newspaper.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/newspaper_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/newspaper_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/newspaper_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/newspaper_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/note.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/note_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/note_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/note_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/note_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/note_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/overlays.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/package.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/package_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/package_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/package_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/package_green.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/package_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_attach.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_code.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_copy.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_excel.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_find.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_gear.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_green.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_key.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_lightning.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_paintbrush.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_paste.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_red.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_refresh.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_save.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_acrobat.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_actionscript.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_c.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_camera.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_cd.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_code.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_code_red.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_coldfusion.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_compressed.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_copy.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_cplusplus.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_csharp.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_cup.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_database.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_dvd.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_excel.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_find.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_flash.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_freehand.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_gear.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_get.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_h.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_horizontal.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_key.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_lightning.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_magnify.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_medal.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_office.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_paint.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_paintbrush.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_paste.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_php.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_picture.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_powerpoint.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_put.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_ruby.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_stack.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_star.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_swoosh.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_text.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_text_width.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_tux.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_vector.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_visualstudio.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_width.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_word.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_world.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_wrench.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_white_zip.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_word.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/page_world.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/paintbrush.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/paintcan.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/palette.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/paste_plain.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/paste_word.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/pencil.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/pencil_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/pencil_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/pencil_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/phone.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/phone_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/phone_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/phone_sound.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/photo.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/photo_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/photo_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/photo_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/photos.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/picture.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/picture_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/picture_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/picture_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/picture_empty.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/picture_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/picture_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/picture_key.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/picture_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/picture_save.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/pictures.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/pilcrow.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/pill.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/pill_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/pill_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/pill_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/plugin.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/plugin_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/plugin_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/plugin_disabled.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/plugin_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/plugin_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/plugin_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/plugin_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/printer.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/printer_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/printer_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/printer_empty.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/printer_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/rainbow.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/report.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/report_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/report_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/report_disk.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/report_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/report_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/report_key.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/report_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/report_magnify.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/report_picture.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/report_user.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/report_word.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/resultset_first.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/resultset_last.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/resultset_next.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/resultset_previous.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/rosette.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/rss.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/rss_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/rss_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/rss_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/rss_valid.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/ruby.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/ruby_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/ruby_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/ruby_gear.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/ruby_get.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/ruby_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/ruby_key.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/ruby_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/ruby_put.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/script.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/script_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/script_code.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/script_code_red.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/script_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/script_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/script_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/script_gear.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/script_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/script_key.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/script_lightning.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/script_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/script_palette.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/script_save.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/server.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/server_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/server_chart.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/server_compressed.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/server_connect.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/server_database.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/server_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/server_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/server_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/server_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/server_key.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/server_lightning.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/server_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/server_uncompressed.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shading.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_align_bottom.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_align_center.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_align_left.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_align_middle.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_align_right.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_align_top.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_flip_horizontal.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_flip_vertical.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_group.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_handles.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_move_back.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_move_backwards.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_move_forwards.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_move_front.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_rotate_anticlockwise.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_rotate_clockwise.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_square.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_square_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_square_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_square_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_square_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_square_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_square_key.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_square_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shape_ungroup.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shield.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shield_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shield_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/shield_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sitemap.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sitemap_color.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sound.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sound_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sound_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sound_low.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sound_mute.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sound_none.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/spellcheck.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sport_8ball.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sport_basketball.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sport_football.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sport_golf.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sport_raquet.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sport_shuttlecock.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sport_soccer.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sport_tennis.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/star.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/status_away.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/status_busy.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/status_offline.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/status_online.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/stop.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/style.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/style_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/style_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/style_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/style_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/sum.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tab.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tab_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tab_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tab_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tab_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_gear.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_key.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_lightning.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_multiple.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_refresh.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_relationship.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_row_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_row_insert.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_save.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/table_sort.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tag.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tag_blue.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tag_blue_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tag_blue_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tag_blue_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tag_green.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tag_orange.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tag_pink.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tag_purple.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tag_red.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tag_yellow.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/telephone.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/telephone_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/telephone_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/telephone_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/telephone_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/telephone_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/telephone_key.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/telephone_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/television.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/television_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/television_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_align_center.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_align_justify.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_align_left.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_align_right.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_allcaps.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_bold.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_columns.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_dropcaps.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_heading_1.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_heading_2.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_heading_3.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_heading_4.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_heading_5.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_heading_6.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_horizontalrule.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_indent.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_indent_remove.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_italic.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_kerning.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_letter_omega.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_letterspacing.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_linespacing.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_list_bullets.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_list_numbers.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_lowercase.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_padding_bottom.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_padding_left.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_padding_right.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_padding_top.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_replace.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_signature.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_smallcaps.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_strikethrough.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_subscript.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_superscript.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_underline.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/text_uppercase.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/textfield.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/textfield_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/textfield_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/textfield_key.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/textfield_rename.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/thumb_down.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/thumb_up.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tick.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/time.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/time_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/time_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/time_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/timeline_marker.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/transmit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/transmit_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/transmit_blue.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/transmit_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/transmit_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/transmit_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/transmit_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/tux.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/user.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/user_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/user_comment.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/user_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/user_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/user_female.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/user_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/user_gray.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/user_green.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/user_orange.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/user_red.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/user_suit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/vcard.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/vcard_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/vcard_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/vcard_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/vector.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/vector_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/vector_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/wand.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/weather_clouds.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/weather_cloudy.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/weather_lightning.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/weather_rain.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/weather_snow.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/weather_sun.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/webcam.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/webcam_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/webcam_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/webcam_error.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/world.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/world_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/world_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/world_edit.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/world_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/world_link.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/wrench.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/wrench_orange.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/xhtml.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/xhtml_add.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/xhtml_delete.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/xhtml_go.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/xhtml_valid.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/zoom.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/zoom_in.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/icons/zoom_out.png\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/readme.html\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/silk/readme.txt\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/images/t.gif\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/index.html\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/scripts/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/scripts/ajaxpopup.js\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/scripts/asyncload.js\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/scripts/autosave.js\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/scripts/flashbridge.js\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/scripts/localstore.fla\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/scripts/localstore.swd\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/scripts/localstore.swf\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/scripts/logger.js\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/scripts/stateswitcher.js\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/styles/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/styles/wikiStyle.css\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/styles/wikiStyleIE6.css\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/styles/wikiStyleIE7.css\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/tools/\nrwiki/branches/SAK-12433/rwiki-tool/tool/src/webapp/tools/sakai.rwiki.xml\nrwiki/branches/SAK-12433/rwiki-tool/tool/xdocs/\nrwiki/branches/SAK-12433/rwiki-tool/tool/xdocs/navigation.xml\nrwiki/branches/SAK-12433/rwiki-util/\nrwiki/branches/SAK-12433/rwiki-util/.classpath\nrwiki/branches/SAK-12433/rwiki-util/.project\nrwiki/branches/SAK-12433/rwiki-util/foppatch/\nrwiki/branches/SAK-12433/rwiki-util/foppatch/rtfgifpatch.patch\nrwiki/branches/SAK-12433/rwiki-util/jrcs/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/Jakarta ORO.library\nrwiki/branches/SAK-12433/rwiki-util/jrcs/LICENSE.txt\nrwiki/branches/SAK-12433/rwiki-util/jrcs/build.xml\nrwiki/branches/SAK-12433/rwiki-util/jrcs/doc/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/doc/default.css\nrwiki/branches/SAK-12433/rwiki-util/jrcs/doc/index.html\nrwiki/branches/SAK-12433/rwiki-util/jrcs/doc/jrcs.gif\nrwiki/branches/SAK-12433/rwiki-util/jrcs/pom.xml\nrwiki/branches/SAK-12433/rwiki-util/jrcs/project.xml\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/AddDelta.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/ChangeDelta.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/Chunk.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/DeleteDelta.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/Delta.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/Diff.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/DiffAlgorithm.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/DiffException.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/DifferentiationFailedException.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/PatchFailedException.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/Revision.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/RevisionVisitor.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/SimpleDiff.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/myers/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/myers/DiffNode.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/myers/MyersDiff.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/myers/PathNode.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/myers/Snake.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/myers/package.html\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/diff/package.html\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/overview.html\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/Archive.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/ArchiveParser.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/ArchiveParser.jj\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/ArchiveParserConstants.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/ArchiveParserTokenManager.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/BranchNode.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/BranchNotFoundException.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/HeadAlreadySetException.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/InvalidBranchVersionNumberException.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/InvalidFileFormatException.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/InvalidTrunkVersionNumberException.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/InvalidVersionNumberException.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/KeywordsFormat.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/Line.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/Lines.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/Node.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/NodeNotFoundException.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/ParseException.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/Path.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/Phrases.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/RCSException.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/SimpleCharStream.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/Token.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/TokenMgrError.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/TrunkNode.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/Version.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/rcs/package.html\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/tools/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/tools/JDiff.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/tools/JRCS.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/tools/package.html\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/util/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completejava/org/apache/commons/jrcs/util/ToString.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/commons/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/commons/jrcs/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/commons/jrcs/AllTests.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/commons/jrcs/diff/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/commons/jrcs/diff/DiffTest.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/commons/jrcs/diff/MyersDiffTests.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/commons/jrcs/diff/SimpleDiffTests.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/commons/jrcs/rcs/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/commons/jrcs/rcs/ArchiveTest.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/commons/jrcs/rcs/ChangeDeltaTest.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/commons/jrcs/rcs/KeywordsFormatTest.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/commons/jrcs/rcs/ParsingTest.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/commons/jrcs/rcs/idchar.testfile\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/commons/jrcs/rcs/make_idchar_test.sh\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/org/apache/commons/jrcs/test.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/completetest/test.txt\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/AddDelta.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/ChangeDelta.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/Chunk.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/DeleteDelta.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/Delta.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/Diff.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/DiffAlgorithm.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/DiffException.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/DifferentiationFailedException.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/PatchFailedException.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/Revision.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/RevisionVisitor.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/SimpleDiff.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/myers/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/myers/DiffNode.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/myers/MyersDiff.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/myers/PathNode.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/myers/Snake.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/myers/package.html\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/diff/package.html\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/overview.html\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/util/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/java/org/apache/commons/jrcs/util/ToString.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/test/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/test/org/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/test/org/apache/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/test/org/apache/commons/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/test/org/apache/commons/jrcs/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/test/org/apache/commons/jrcs/AllTests.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/test/org/apache/commons/jrcs/diff/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/test/org/apache/commons/jrcs/diff/DiffTest.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/test/org/apache/commons/jrcs/diff/MyersDiffTests.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/test/org/apache/commons/jrcs/diff/SimpleDiffTests.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/test/org/apache/commons/jrcs/test.java\nrwiki/branches/SAK-12433/rwiki-util/jrcs/src/test/test.txt\nrwiki/branches/SAK-12433/rwiki-util/jrcs/xdocs/\nrwiki/branches/SAK-12433/rwiki-util/jrcs/xdocs/index.xml\nrwiki/branches/SAK-12433/rwiki-util/radeox/\nrwiki/branches/SAK-12433/rwiki-util/radeox/.cvsignore\nrwiki/branches/SAK-12433/rwiki-util/radeox/Changes.txt\nrwiki/branches/SAK-12433/rwiki-util/radeox/README\nrwiki/branches/SAK-12433/rwiki-util/radeox/Radeox.version\nrwiki/branches/SAK-12433/rwiki-util/radeox/build.xml\nrwiki/branches/SAK-12433/rwiki-util/radeox/doc/\nrwiki/branches/SAK-12433/rwiki-util/radeox/doc/api/\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/Radeox_Developer.pdf\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/Radeox_Developer.tex\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/cut.rb\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/AllTests.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/ContentHelloWorldMacro.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/FilterExample.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/GroovyMacro.groovy\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/GroovyMacroCompiler.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/HelloWorldMacro.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/InitialRenderContextHelloWorldMacro.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/LocaleSmileyFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/MacroExample.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/MyInitialRenderContext.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/MyRenderEngine.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/MyRenderEngineExample.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/MyWikiRenderEngine.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/ParameterHelloWorldMacro.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/PicoContainerExample.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/RadeoxTestSupport.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/RenderEngineExample.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/SmileyFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/SquareFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/build.xml\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/radeox_markup_mywiki.properties\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/examples/radeox_markup_xml.properties\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/images/\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/images/Architecture.pdf\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/images/Filter.graffle\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/images/Filter.pdf\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/images/InitialRenderContextPicoContainer.graffle\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/images/InitialRenderContextPicoContainer.pdf\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/images/MacroParameter.graffle\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/images/MacroParameter.pdf\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/images/Radeox.graffle\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/images/SnipRadeox.pdf\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/images/WikiArchitecture.graffle\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/images/WikiArchitecture.pdf\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/images/WikiLand.graffle\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/images/WikiLand.pdf\nrwiki/branches/SAK-12433/rwiki-util/radeox/documentation/insert_source.sh\nrwiki/branches/SAK-12433/rwiki-util/radeox/license.txt\nrwiki/branches/SAK-12433/rwiki-util/radeox/maven.xml\nrwiki/branches/SAK-12433/rwiki-util/radeox/pom.xml\nrwiki/branches/SAK-12433/rwiki-util/radeox/project.properties\nrwiki/branches/SAK-12433/rwiki-util/radeox/project.xml\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/META-INF/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/META-INF/manifest.radeox\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/META-INF/manifest.radeox-api\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/META-INF/services/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/META-INF/services/org.radeox.filter.Filter\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/META-INF/services/org.radeox.macro.Macro\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/META-INF/services/org.radeox.macro.code.SourceCodeFormatter\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/META-INF/services/org.radeox.macro.list.ListFormatter\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/META-INF/services/org.radeox.macro.table.Function\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/conf/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/conf/apidocs.txt\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/conf/asinservices.txt\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/conf/bookservices.txt\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/conf/intermap.txt\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/conf/wiki.txt\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/conf/xref.txt\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/org/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/org/radeox/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/org/radeox/Messages.properties\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/org/radeox/Messages_ca.properties\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/org/radeox/Messages_ja.properties\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_markup.properties\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_markup_ja.properties\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_markup_otherwiki.properties\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_markup_otherwiki_ca.properties\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_markup_sv.properties\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_messages.metaprops\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_messages.properties\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_messages_ca.metaprops\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_messages_ca.properties\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_messages_es.metaprops\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_messages_es.properties\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_messages_fr_CA.metaprops\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_messages_fr_CA.properties\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_messages_ja.properties\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_messages_nl.properties\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/radeox_messages_sv.properties\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/simplelog.properties\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/simplelog_ar.properties\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/testpatterns/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/testpatterns/xhtmltest0_in.xml\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/testpatterns/xhtmltest1_in.xml\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/testpatterns/xhtmltest2_in.xml\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/testpatterns/xhtmltest3_in.xml\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/testpatterns/xhtmltest4_in.xml\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/testpatterns/xhtmltest5_in.xml\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/testpatterns/xhtmltest6_in.xml\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/testpatterns/xhtmltest7_in.xml\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/bundle/testpatterns/xhtmltest8_in.xml\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/EngineManager.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/Messages.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/api/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/api/engine/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/engine/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/engine/BaseRenderEngine.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/engine/context/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/engine/context/BaseInitialRenderContext.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/engine/context/BaseRenderContext.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/example/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/example/InteractiveExample.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/example/PicoExample.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/example/RadeoxTemplateEngine.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/example/RenderEngineExample.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/example/XSLTExtension.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/BalanceFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/BoldFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/CacheFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/EscapeFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/Filter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/FilterPipe.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/FilterSupport.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/HeadingFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/HtmlRemoveFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/ItalicFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/KeyFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/LineFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/LinkTestFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/LinkTester.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/ListFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/MacroFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/MarkFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/NewlineFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/ParagraphFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/ParamFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/SmileyFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/StrikeThroughFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/TypographyFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/UrlFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/WikiLinkFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/XHTMLFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/balance/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/balance/Balancer.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/context/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/context/BaseFilterContext.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/context/BaseInitialFilterContext.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/context/FilterContext.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/context/InitialFilterContext.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/interwiki/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/interwiki/InterWiki.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/regex/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/regex/LocaleRegexReplaceFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/regex/LocaleRegexTokenFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/regex/RegexFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/regex/RegexReplaceFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/filter/regex/RegexTokenFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/ApiDocMacro.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/ApiMacro.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/AsinMacro.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/BaseLocaleMacro.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/BaseMacro.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/CodeMacro.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/FilePathMacro.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/HelloWorldMacro.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/InterWikiMacro.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/IsbnMacro.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/LinkMacro.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/LocaleMacro.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/LocalePreserved.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/Macro.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/MacroListMacro.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/MacroLoader.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/MacroRepository.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/MailToMacro.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/PluginLoader.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/PluginRepository.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/Preserved.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/QuoteMacro.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/Repository.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/RfcMacro.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/TableMacro.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/XrefMacro.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/api/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/api/ApiConverter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/api/ApiDoc.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/api/BaseApiConverter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/api/JavaApiConverter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/api/RubyApiConverter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/book/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/book/AsinServices.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/book/BookServices.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/book/TextFileUrlMapper.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/book/UrlMapper.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/code/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/code/DefaultRegexCodeFormatter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/code/JavaCodeFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/code/NullCodeFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/code/SourceCodeFormatter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/code/SqlCodeFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/code/XmlCodeFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/list/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/list/AtoZListFormatter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/list/ExampleListFormatter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/list/ListFormatter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/list/SimpleList.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/parameter/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/parameter/BaseMacroParameter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/table/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/table/AvgFunction.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/table/Function.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/table/FunctionLoader.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/table/FunctionRepository.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/table/MaxFunction.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/table/MinFunction.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/table/SumFunction.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/table/Table.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/table/TableBuilder.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/xref/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/macro/xref/XrefMapper.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/regex/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/regex/Compiler.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/regex/JdkCompiler.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/regex/JdkMatchResult.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/regex/JdkMatcher.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/regex/JdkPattern.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/regex/MatchResult.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/regex/Matcher.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/regex/Pattern.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/regex/Substitution.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/AllTests.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/BaseRenderEngineTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/PerformanceTests.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/RegexpTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/RenderEnginePerformanceTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/AllFilterTests.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/BasicRegexTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/BoldFilterTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/EscapeFilterTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/FilterPipeTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/FilterTestSupport.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/HeadingFilterTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/HtmlRemoveFilterTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/InterWikiTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/ItalicFilterTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/KeyFilterTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/LineFilterTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/LinkTestFilterTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/ListFilterTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/NewlineFilterTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/ParagraphFilterTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/ParamFilterTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/SmileyFilterTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/StrikeThroughFilterTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/TypographyFilterTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/UrlFilterTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/WikiLinkFilterTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/XHTMLFilterTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/mock/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/mock/MockInterWikiRenderEngine.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/mock/MockOldWikiRenderEngine.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/mock/MockReplacedFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/mock/MockReplacesFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/filter/mock/MockWikiRenderEngine.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/groovy/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/groovy/AllGroovyTests.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/groovy/RadeoxTemplateEngineTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/AllMacroTests.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/ApiDocMacroTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/ApiMacroTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/AsinMacroTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/FilePathMacroTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/IsbnMacroTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/LinkMacroTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/MacroTestSupport.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/MailToMacroTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/ParamMacroTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/RfcMacroTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/TableMacroTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/XrefMacroTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/YipeeTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/code/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/code/AllCodeMacroTests.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/code/XmlCodeMacroTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/list/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/list/AllListTests.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/list/AtoZListFormatterTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/list/ExampleListFormatterTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/list/ListFormatterSupport.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/test/macro/list/SimpleListTest.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/util/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/util/Encoder.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/util/Linkable.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/util/Nameable.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/util/Service.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/util/StringBufferWriter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/util/logging/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/util/logging/LogHandler.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/util/logging/Logger.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/util/logging/NullLogger.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/util/logging/SystemErrLogger.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/org/radeox/util/logging/SystemOutLogger.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/uk/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/uk/ac/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/uk/ac/cam/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/uk/ac/cam/caret/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/uk/ac/cam/caret/sakai/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/uk/ac/cam/caret/sakai/rwiki/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/uk/ac/cam/caret/sakai/rwiki/component/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/uk/ac/cam/caret/sakai/rwiki/component/filter/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/uk/ac/cam/caret/sakai/rwiki/component/filter/PreEscapeMathFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/uk/ac/cam/caret/sakai/rwiki/component/filter/SubscriptFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/java/uk/ac/cam/caret/sakai/rwiki/component/filter/SuperscriptFilter.java\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/test/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/test/radeox/\nrwiki/branches/SAK-12433/rwiki-util/radeox/src/test/radeox/test/\nrwiki/branches/SAK-12433/rwiki-util/radeox/xdocs/\nrwiki/branches/SAK-12433/rwiki-util/radeox/xdocs/faq.fml\nrwiki/branches/SAK-12433/rwiki-util/radeox/xdocs/navigation.xml\nrwiki/branches/SAK-12433/rwiki-util/util/\nrwiki/branches/SAK-12433/rwiki-util/util/pom.xml\nrwiki/branches/SAK-12433/rwiki-util/util/project.xml\nrwiki/branches/SAK-12433/rwiki-util/util/src/\nrwiki/branches/SAK-12433/rwiki-util/util/src/bundle/\nrwiki/branches/SAK-12433/rwiki-util/util/src/bundle/uk/\nrwiki/branches/SAK-12433/rwiki-util/util/src/bundle/uk/ac/\nrwiki/branches/SAK-12433/rwiki-util/util/src/bundle/uk/ac/cam/\nrwiki/branches/SAK-12433/rwiki-util/util/src/bundle/uk/ac/cam/caret/\nrwiki/branches/SAK-12433/rwiki-util/util/src/bundle/uk/ac/cam/caret/sakai/\nrwiki/branches/SAK-12433/rwiki-util/util/src/bundle/uk/ac/cam/caret/sakai/rwiki/\nrwiki/branches/SAK-12433/rwiki-util/util/src/bundle/uk/ac/cam/caret/sakai/rwiki/utils/\nrwiki/branches/SAK-12433/rwiki-util/util/src/bundle/uk/ac/cam/caret/sakai/rwiki/utils/bundle/\nrwiki/branches/SAK-12433/rwiki-util/util/src/bundle/uk/ac/cam/caret/sakai/rwiki/utils/bundle/Messages.properties\nrwiki/branches/SAK-12433/rwiki-util/util/src/bundle/uk/ac/cam/caret/sakai/rwiki/utils/bundle/Messages_ar.properties\nrwiki/branches/SAK-12433/rwiki-util/util/src/bundle/uk/ac/cam/caret/sakai/rwiki/utils/bundle/Messages_ca.properties\nrwiki/branches/SAK-12433/rwiki-util/util/src/bundle/uk/ac/cam/caret/sakai/rwiki/utils/bundle/Messages_fr_CA.properties\nrwiki/branches/SAK-12433/rwiki-util/util/src/bundle/uk/ac/cam/caret/sakai/rwiki/utils/bundle/Messages_ja.properties\nrwiki/branches/SAK-12433/rwiki-util/util/src/java/\nrwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/\nrwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/\nrwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/cam/\nrwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/cam/caret/\nrwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/cam/caret/sakai/\nrwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/cam/caret/sakai/rwiki/\nrwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/cam/caret/sakai/rwiki/utils/\nrwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/cam/caret/sakai/rwiki/utils/DebugContentHandler.java\nrwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/cam/caret/sakai/rwiki/utils/DigestHtml.java\nrwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/cam/caret/sakai/rwiki/utils/Digester.java\nrwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/cam/caret/sakai/rwiki/utils/Messages.java\nrwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/cam/caret/sakai/rwiki/utils/NameHelper.java\nrwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/cam/caret/sakai/rwiki/utils/SchemaNames.java\nrwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/cam/caret/sakai/rwiki/utils/SimpleCoverage.java\nrwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/cam/caret/sakai/rwiki/utils/TimeLogger.java\nrwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/cam/caret/sakai/rwiki/utils/UserDisplayHelper.java\nrwiki/branches/SAK-12433/rwiki-util/util/src/java/uk/ac/cam/caret/sakai/rwiki/utils/XmlEscaper.java\nrwiki/branches/SAK-12433/rwiki-util/util/src/test/\nrwiki/branches/SAK-12433/rwiki-util/util/src/test/uk/\nrwiki/branches/SAK-12433/rwiki-util/util/src/test/uk/ac/\nrwiki/branches/SAK-12433/rwiki-util/util/src/test/uk/ac/cam/\nrwiki/branches/SAK-12433/rwiki-util/util/src/test/uk/ac/cam/caret/\nrwiki/branches/SAK-12433/rwiki-util/util/src/test/uk/ac/cam/caret/sakai/\nrwiki/branches/SAK-12433/rwiki-util/util/src/test/uk/ac/cam/caret/sakai/rwiki/\nrwiki/branches/SAK-12433/rwiki-util/util/src/test/uk/ac/cam/caret/sakai/rwiki/utils/\nrwiki/branches/SAK-12433/rwiki-util/util/src/test/uk/ac/cam/caret/sakai/rwiki/utils/test/\nrwiki/branches/SAK-12433/rwiki-util/util/src/test/uk/ac/cam/caret/sakai/rwiki/utils/test/NameHelperTest.java\nrwiki/branches/SAK-12433/rwiki-util/util/src/testBundle/\nrwiki/branches/SAK-12433/rwiki-util/util/src/testBundle/uk/\nrwiki/branches/SAK-12433/rwiki-util/util/src/testBundle/uk/ac/\nrwiki/branches/SAK-12433/rwiki-util/util/src/testBundle/uk/ac/cam/\nrwiki/branches/SAK-12433/rwiki-util/util/src/testBundle/uk/ac/cam/caret/\nrwiki/branches/SAK-12433/rwiki-util/util/src/testBundle/uk/ac/cam/caret/sakai/\nrwiki/branches/SAK-12433/rwiki-util/util/src/testBundle/uk/ac/cam/caret/sakai/rwiki/\nrwiki/branches/SAK-12433/rwiki-util/util/src/testBundle/uk/ac/cam/caret/sakai/rwiki/utils/\nrwiki/branches/SAK-12433/rwiki-util/util/src/testBundle/uk/ac/cam/caret/sakai/rwiki/utils/test/\nrwiki/branches/SAK-12433/rwiki-util/util/src/testBundle/uk/ac/cam/caret/sakai/rwiki/utils/test/NameHelperTest.test\nrwiki/branches/SAK-12433/xdocs/\nrwiki/branches/SAK-12433/xdocs/canadminaction.graffle\nrwiki/branches/SAK-12433/xdocs/canadminaction.pdf\nrwiki/branches/SAK-12433/xdocs/cancreateaction.graffle\nrwiki/branches/SAK-12433/xdocs/cancreateaction.pdf\nrwiki/branches/SAK-12433/xdocs/canreadaction.graffle\nrwiki/branches/SAK-12433/xdocs/canreadaction.pdf\nrwiki/branches/SAK-12433/xdocs/canwriteaction.graffle\nrwiki/branches/SAK-12433/xdocs/canwriteaction.pdf\nrwiki/branches/SAK-12433/xdocs/design.xml\nrwiki/branches/SAK-12433/xdocs/entitymodel.graffle\nrwiki/branches/SAK-12433/xdocs/entitymodel.pdf\nrwiki/branches/SAK-12433/xdocs/faq.fml\nrwiki/branches/SAK-12433/xdocs/frs.xml\nrwiki/branches/SAK-12433/xdocs/images/\nrwiki/branches/SAK-12433/xdocs/images/frs1.png\nrwiki/branches/SAK-12433/xdocs/images/frs2.png\nrwiki/branches/SAK-12433/xdocs/images/frs3.png\nrwiki/branches/SAK-12433/xdocs/images/frs4.png\nrwiki/branches/SAK-12433/xdocs/images/frs5.png\nrwiki/branches/SAK-12433/xdocs/images/frs6.png\nrwiki/branches/SAK-12433/xdocs/images/frs7.png\nrwiki/branches/SAK-12433/xdocs/images/frs8.png\nrwiki/branches/SAK-12433/xdocs/images/frs9.png\nrwiki/branches/SAK-12433/xdocs/infopage2.png\nrwiki/branches/SAK-12433/xdocs/infopagewireframe.graffle\nrwiki/branches/SAK-12433/xdocs/infopagewireframe.pdf\nrwiki/branches/SAK-12433/xdocs/navigation.xml\nrwiki/branches/SAK-12433/xdocs/requestprocessing.graffle\nrwiki/branches/SAK-12433/xdocs/requestprocessing.pdf\nrwiki/branches/SAK-12433/xdocs/srs.xml\nrwiki/branches/SAK-12433/xdocs/tc-matrix-rwiki.xls\nrwiki/branches/SAK-12433/xdocs/testing.xml\nrwiki/branches/SAK-12433/xdocs/usecase1.xml\nrwiki/branches/SAK-12433/xdocs/usecase2.xml\nrwiki/branches/SAK-12433/xdocs/usecase3.xml\nrwiki/branches/SAK-12433/xdocs/usecase4.xml\nrwiki/branches/SAK-12433/xdocs/usecases.xml\nLog:\nSAK-12433 => r31545 of sakai_2-4-x.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Fri Dec 14 15:05:16 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 15:05:16 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 15:05:16 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby awakenings.mail.umich.edu () with ESMTP id lBEK5FO4023380;\n\tFri, 14 Dec 2007 15:05:15 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 4762E1F4.AC412.27024 ; \n\t14 Dec 2007 15:05:11 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A1DD589BCA;\n\tFri, 14 Dec 2007 20:05:14 +0000 (GMT)\nMessage-ID: <200712141957.lBEJv0iR013058@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 848\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 20:04:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 24A2633B7C\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 20:04:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEJv0ic013061\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 14:57:00 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEJv0iR013058\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 14:57:00 -0500\nDate: Fri, 14 Dec 2007 14:57:00 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r39280 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 15:05:16 2007\nX-DSPAM-Confidence: 0.9870\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39280\n\nAuthor: dlhaines@umich.edu\nDate: 2007-12-14 14:56:59 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39280\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties\nLog:\nCTools: pick up sql string update fix for assignments conversion.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec 14 15:00:38 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 15:00:38 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 15:00:38 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby awakenings.mail.umich.edu () with ESMTP id lBEK0cdY020962;\n\tFri, 14 Dec 2007 15:00:38 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4762E0DA.96940.17799 ; \n\t14 Dec 2007 15:00:29 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2B6859CE78;\n\tFri, 14 Dec 2007 20:00:34 +0000 (GMT)\nMessage-ID: <200712141952.lBEJqK99012941@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 866\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 20:00:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E61F533264\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 20:00:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEJqKFd012943\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 14:52:20 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEJqK99012941\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 14:52:20 -0500\nDate: Fri, 14 Dec 2007 14:52:20 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39279 - assignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 15:00:38 2007\nX-DSPAM-Confidence: 0.9859\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39279\n\nAuthor: zqian@umich.edu\nDate: 2007-12-14 14:52:17 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39279\n\nModified:\nassignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/CombineDuplicateSubmissionsConversionHandler.java\nLog:\nuse 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'\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Fri Dec 14 14:58:54 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 14:58:54 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 14:58:55 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby fan.mail.umich.edu () with ESMTP id lBEJwstG014182;\n\tFri, 14 Dec 2007 14:58:54 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 4762E076.9A7.2327 ; \n\t14 Dec 2007 14:58:48 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 31D929EB19;\n\tFri, 14 Dec 2007 19:58:53 +0000 (GMT)\nMessage-ID: <200712141950.lBEJob9T012929@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 672\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 19:58:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5B1D533B5A\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 19:58:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEJobgB012931\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 14:50:37 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEJob9T012929\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 14:50:37 -0500\nDate: Fri, 14 Dec 2007 14:50:37 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r39278 - gradebook/branches/sakai_2-5-x/service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sections\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 14:58:55 2007\nX-DSPAM-Confidence: 0.7005\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39278\n\nAuthor: mmmay@indiana.edu\nDate: 2007-12-14 14:50:36 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39278\n\nModified:\ngradebook/branches/sakai_2-5-x/service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sections/AuthzSectionsImpl.java\nLog:\nsvn merge -r 39184:39185 https://source.sakaiproject.org/svn/gradebook/trunk\nU    service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sections/AuthzSectionsImpl.java\nin-143-196:~/java/2-5/sakai_2-5-x/gradebook mmmay$ svn log -r 39184:39185 https://source.sakaiproject.org/svn/gradebook/trunk\n------------------------------------------------------------------------\nr39185 | wagnermr@iupui.edu | 2007-12-13 09:29:44 -0500 (Thu, 13 Dec 2007) | 4 lines\n\nSAK-12432\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12432\nCircular dependency between GradebookService and facade Authz\nfixed class cast exception\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 14:58:35 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 14:58:35 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 14:58:35 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby casino.mail.umich.edu () with ESMTP id lBEJwYwB000572;\n\tFri, 14 Dec 2007 14:58:34 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 4762E065.39615.27132 ; \n\t14 Dec 2007 14:58:32 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 557579CE78;\n\tFri, 14 Dec 2007 19:58:28 +0000 (GMT)\nMessage-ID: <200712141950.lBEJoHiK012917@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 527\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 19:58:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BB4C833264\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 19:58:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEJoHng012919\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 14:50:17 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEJoHiK012917\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 14:50:17 -0500\nDate: Fri, 14 Dec 2007 14:50:17 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39277 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 14:58:35 2007\nX-DSPAM-Confidence: 0.8427\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39277\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 14:50:16 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39277\n\nModified:\noncourse/branches/oncourse_OPC_122007/\nLog:\nupdate externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Fri Dec 14 14:56:55 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 14:56:55 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 14:56:55 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby awakenings.mail.umich.edu () with ESMTP id lBEJuqq3018703;\n\tFri, 14 Dec 2007 14:56:52 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4762DFFA.45F8A.24108 ; \n\t14 Dec 2007 14:56:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4CE6A9EAFB;\n\tFri, 14 Dec 2007 19:56:43 +0000 (GMT)\nMessage-ID: <200712141948.lBEJmRj7012905@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 908\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 19:56:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BB5DB30291\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 19:56:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEJmRiG012907\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 14:48:27 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEJmRj7012905\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 14:48:27 -0500\nDate: Fri, 14 Dec 2007 14:48:27 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r39276 - assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 14:56:55 2007\nX-DSPAM-Confidence: 0.7621\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39276\n\nAuthor: mmmay@indiana.edu\nDate: 2007-12-14 14:48:25 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39276\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nsvn merge -r 39228:39229 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nin-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ export EDITOR=pico\nin-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 39228:39229 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr39229 | zqian@umich.edu | 2007-12-13 15:05:48 -0500 (Thu, 13 Dec 2007) | 1 line\n\nfix to SAK-12422: Assignments upload all (grades.csv) does not handle DOS line breaks correctly\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 14:44:08 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 14:44:08 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 14:44:08 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby fan.mail.umich.edu () with ESMTP id lBEJi7jW006050;\n\tFri, 14 Dec 2007 14:44:07 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4762DCFF.A7E53.3815 ; \n\t14 Dec 2007 14:44:04 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 179D59EACC;\n\tFri, 14 Dec 2007 19:44:01 +0000 (GMT)\nMessage-ID: <200712141935.lBEJZqgM012874@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 640\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 19:43:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9113D3938C\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 19:43:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEJZqZH012876\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 14:35:52 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEJZqgM012874\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 14:35:52 -0500\nDate: Fri, 14 Dec 2007 14:35:52 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39275 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 14:44:08 2007\nX-DSPAM-Confidence: 0.8442\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39275\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 14:35:51 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39275\n\nModified:\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdate externals for SAK-12305.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 14:38:56 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 14:38:56 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 14:38:56 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby panther.mail.umich.edu () with ESMTP id lBEJctXN022023;\n\tFri, 14 Dec 2007 14:38:55 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4762DBC3.DF0F.9539 ; \n\t14 Dec 2007 14:38:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E40069EA9E;\n\tFri, 14 Dec 2007 19:38:45 +0000 (GMT)\nMessage-ID: <200712141930.lBEJUdDd012862@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 500\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 19:38:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BFE383938C\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 19:38:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEJUd6x012864\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 14:30:39 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEJUdDd012862\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 14:30:39 -0500\nDate: Fri, 14 Dec 2007 14:30:39 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39274 - gradebook/branches/oncourse_opc_122007/app/ui/src/webapp\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 14:38:56 2007\nX-DSPAM-Confidence: 0.9822\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39274\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 14:30:38 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39274\n\nModified:\ngradebook/branches/oncourse_opc_122007/app/ui/src/webapp/gradebookSetup.jsp\nLog:\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12305 => svn merge -r38873:38874 https://source.sakaiproject.org/svn/gradebook/trunk\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom lance@indiana.edu Fri Dec 14 12:30:26 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 12:30:26 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 12:30:26 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby sleepers.mail.umich.edu () with ESMTP id lBEHUPON020544;\n\tFri, 14 Dec 2007 12:30:25 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 4762BD9C.261D7.19433 ; \n\t14 Dec 2007 12:30:06 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1034185D10;\n\tFri, 14 Dec 2007 17:28:23 +0000 (GMT)\nMessage-ID: <200712141721.lBEHLbPg012661@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 79\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 17:28:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AE58F3327E\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 17:29:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEHLb9b012663\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 12:21:37 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEHLbPg012661\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 12:21:37 -0500\nDate: Fri, 14 Dec 2007 12:21:37 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to lance@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: lance@indiana.edu\nSubject: [sakai] svn commit: r39273 - in courier/trunk: courier-impl/impl/src/java/org/sakaiproject/courier/impl courier-util/util/src/java/org/sakaiproject/util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 12:30:26 2007\nX-DSPAM-Confidence: 0.7554\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39273\n\nAuthor: lance@indiana.edu\nDate: 2007-12-14 12:21:34 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39273\n\nModified:\ncourier/trunk/courier-impl/impl/src/java/org/sakaiproject/courier/impl/BasicCourierService.java\ncourier/trunk/courier-util/util/src/java/org/sakaiproject/util/BaseDelivery.java\nLog:\nSAK-12446\nhttp://jira.sakaiproject.org/jira/browse/SAK-12446\nConvert HashMap m_addresses to ConcurrentHashMap in BasicCourierService\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 11:37:09 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 11:37:09 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 11:37:09 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby jacknife.mail.umich.edu () with ESMTP id lBEGb8Bs018742;\n\tFri, 14 Dec 2007 11:37:08 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 4762B12B.81F2C.14338 ; \n\t14 Dec 2007 11:37:03 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 37CC99E791;\n\tFri, 14 Dec 2007 16:36:01 +0000 (GMT)\nMessage-ID: <200712141628.lBEGSqtL012596@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 467\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 16:35:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A0C1C39281\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 16:36:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEGSqGd012598\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 11:28:52 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEGSqtL012596\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 11:28:52 -0500\nDate: Fri, 14 Dec 2007 11:28:52 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39272 - rwiki/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 11:37:09 2007\nX-DSPAM-Confidence: 0.8442\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39272\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 11:28:51 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39272\n\nAdded:\nrwiki/branches/SAK-12433/\nLog:\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 11:34:00 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 11:34:00 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 11:34:00 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby jacknife.mail.umich.edu () with ESMTP id lBEGXxGO016782;\n\tFri, 14 Dec 2007 11:33:59 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 4762B06F.AA1A2.6368 ; \n\t14 Dec 2007 11:33:55 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CC3EA9E774;\n\tFri, 14 Dec 2007 16:32:53 +0000 (GMT)\nMessage-ID: <200712141625.lBEGPfvv012584@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1016\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 16:32:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 793C139281\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 16:33:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEGPfLF012586\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 11:25:41 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEGPfvv012584\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 11:25:41 -0500\nDate: Fri, 14 Dec 2007 11:25:41 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [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!\n 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!\n c/java/org/sakaiproject content-util/util/src/java/org/sakaipr!\n oject/co\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 11:34:00 2007\nX-DSPAM-Confidence: 0.6935\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39271\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 11:25:21 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39271\n\nAdded:\ncontent/branches/SAK-12433/content-api/\ncontent/branches/SAK-12433/content-api/.classpath\ncontent/branches/SAK-12433/content-api/.project\ncontent/branches/SAK-12433/content-api/api/\ncontent/branches/SAK-12433/content-api/api/pom.xml\ncontent/branches/SAK-12433/content-api/api/project.xml\ncontent/branches/SAK-12433/content-api/api/src/\ncontent/branches/SAK-12433/content-api/api/src/java/\ncontent/branches/SAK-12433/content-api/api/src/java/org/\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ContentCollection.java\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ContentCollectionEdit.java\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ContentEntity.java\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingHandler.java\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingHandlerResolver.java\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingService.java\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ContentResource.java\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ContentResourceEdit.java\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ContentResourceFilter.java\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ContentTypeImageService.java\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/CustomToolAction.java\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/DavManager.java\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ExpandableResourceType.java\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/FilePickerHelper.java\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/GroupAwareEdit.java\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/GroupAwareEntity.java\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/InteractionAction.java\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/Lock.java\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/LockManager.java\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/MultiFileUploadPipe.java\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ResourceEditingHelper.java\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ResourceToolAction.java\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ResourceToolActionPipe.java\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ResourceType.java\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ResourceTypeRegistry.java\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/ServiceLevelAction.java\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/api/SiteSpecificResourceType.java\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/cover/\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/cover/ContentHostingService.java\ncontent/branches/SAK-12433/content-api/api/src/java/org/sakaiproject/content/cover/ContentTypeImageService.java\ncontent/branches/SAK-12433/content-bundles/\ncontent/branches/SAK-12433/content-bundles/.classpath\ncontent/branches/SAK-12433/content-bundles/.project\ncontent/branches/SAK-12433/content-bundles/content.metaprops\ncontent/branches/SAK-12433/content-bundles/content.properties\ncontent/branches/SAK-12433/content-bundles/content_ar.properties\ncontent/branches/SAK-12433/content-bundles/content_ca.metaprops\ncontent/branches/SAK-12433/content-bundles/content_ca.properties\ncontent/branches/SAK-12433/content-bundles/content_es.metaprops\ncontent/branches/SAK-12433/content-bundles/content_es.properties\ncontent/branches/SAK-12433/content-bundles/content_fr_CA.metaprops\ncontent/branches/SAK-12433/content-bundles/content_fr_CA.properties\ncontent/branches/SAK-12433/content-bundles/content_ja.metaprops\ncontent/branches/SAK-12433/content-bundles/content_ja.properties\ncontent/branches/SAK-12433/content-bundles/content_ko.metaprops\ncontent/branches/SAK-12433/content-bundles/content_ko.properties\ncontent/branches/SAK-12433/content-bundles/content_nl.metaprops\ncontent/branches/SAK-12433/content-bundles/content_nl.properties\ncontent/branches/SAK-12433/content-bundles/content_sv.properties\ncontent/branches/SAK-12433/content-bundles/content_zh_CN.metaprops\ncontent/branches/SAK-12433/content-bundles/content_zh_CN.properties\ncontent/branches/SAK-12433/content-bundles/types.properties\ncontent/branches/SAK-12433/content-bundles/types_ar.properties\ncontent/branches/SAK-12433/content-bundles/types_ca.properties\ncontent/branches/SAK-12433/content-bundles/types_es.properties\ncontent/branches/SAK-12433/content-bundles/types_fr_CA.properties\ncontent/branches/SAK-12433/content-bundles/types_ja.properties\ncontent/branches/SAK-12433/content-help/\ncontent/branches/SAK-12433/content-help/pom.xml\ncontent/branches/SAK-12433/content-help/project.xml\ncontent/branches/SAK-12433/content-help/src/\ncontent/branches/SAK-12433/content-help/src/sakai_dropbox/\ncontent/branches/SAK-12433/content-help/src/sakai_dropbox/aqyu.html\ncontent/branches/SAK-12433/content-help/src/sakai_dropbox/aqzb.html\ncontent/branches/SAK-12433/content-help/src/sakai_dropbox/aqzd.html\ncontent/branches/SAK-12433/content-help/src/sakai_dropbox/aqzl.html\ncontent/branches/SAK-12433/content-help/src/sakai_dropbox/ardv.html\ncontent/branches/SAK-12433/content-help/src/sakai_dropbox/arfc.html\ncontent/branches/SAK-12433/content-help/src/sakai_dropbox/help.xml\ncontent/branches/SAK-12433/content-help/src/sakai_resources/\ncontent/branches/SAK-12433/content-help/src/sakai_resources/aqyf.html\ncontent/branches/SAK-12433/content-help/src/sakai_resources/aqyi.html\ncontent/branches/SAK-12433/content-help/src/sakai_resources/aqyy.html\ncontent/branches/SAK-12433/content-help/src/sakai_resources/araf.html\ncontent/branches/SAK-12433/content-help/src/sakai_resources/arbe.html\ncontent/branches/SAK-12433/content-help/src/sakai_resources/area.html\ncontent/branches/SAK-12433/content-help/src/sakai_resources/arex.html\ncontent/branches/SAK-12433/content-help/src/sakai_resources/arfd.html\ncontent/branches/SAK-12433/content-help/src/sakai_resources/arsl.html\ncontent/branches/SAK-12433/content-help/src/sakai_resources/atkh.html\ncontent/branches/SAK-12433/content-help/src/sakai_resources/atla.html\ncontent/branches/SAK-12433/content-help/src/sakai_resources/aude.html\ncontent/branches/SAK-12433/content-help/src/sakai_resources/audh.html\ncontent/branches/SAK-12433/content-help/src/sakai_resources/auen.html\ncontent/branches/SAK-12433/content-help/src/sakai_resources/aukb.html\ncontent/branches/SAK-12433/content-help/src/sakai_resources/auta.html\ncontent/branches/SAK-12433/content-help/src/sakai_resources/auze.html\ncontent/branches/SAK-12433/content-help/src/sakai_resources/avbw.html\ncontent/branches/SAK-12433/content-help/src/sakai_resources/avby.html\ncontent/branches/SAK-12433/content-help/src/sakai_resources/avbz.html\ncontent/branches/SAK-12433/content-help/src/sakai_resources/avcb.html\ncontent/branches/SAK-12433/content-help/src/sakai_resources/avcc.html\ncontent/branches/SAK-12433/content-help/src/sakai_resources/avcd.html\ncontent/branches/SAK-12433/content-help/src/sakai_resources/avcg.html\ncontent/branches/SAK-12433/content-help/src/sakai_resources/help.xml\ncontent/branches/SAK-12433/content-impl/\ncontent/branches/SAK-12433/content-impl/.classpath\ncontent/branches/SAK-12433/content-impl/.project\ncontent/branches/SAK-12433/content-impl/hbm/\ncontent/branches/SAK-12433/content-impl/hbm/pom.xml\ncontent/branches/SAK-12433/content-impl/hbm/project.xml\ncontent/branches/SAK-12433/content-impl/hbm/src/\ncontent/branches/SAK-12433/content-impl/hbm/src/java/\ncontent/branches/SAK-12433/content-impl/hbm/src/java/org/\ncontent/branches/SAK-12433/content-impl/hbm/src/java/org/sakaiproject/\ncontent/branches/SAK-12433/content-impl/hbm/src/java/org/sakaiproject/content/\ncontent/branches/SAK-12433/content-impl/hbm/src/java/org/sakaiproject/content/hbm/\ncontent/branches/SAK-12433/content-impl/hbm/src/java/org/sakaiproject/content/hbm/Lock.java\ncontent/branches/SAK-12433/content-impl/hbm/src/java/org/sakaiproject/content/hbm/LockManager.hbm.xml\ncontent/branches/SAK-12433/content-impl/impl/\ncontent/branches/SAK-12433/content-impl/impl/pom.xml\ncontent/branches/SAK-12433/content-impl/impl/project.xml\ncontent/branches/SAK-12433/content-impl/impl/src/\ncontent/branches/SAK-12433/content-impl/impl/src/bundle/\ncontent/branches/SAK-12433/content-impl/impl/src/bundle/siteemacon.metaprops\ncontent/branches/SAK-12433/content-impl/impl/src/bundle/siteemacon.properties\ncontent/branches/SAK-12433/content-impl/impl/src/bundle/siteemacon_ar.properties\ncontent/branches/SAK-12433/content-impl/impl/src/bundle/siteemacon_ca.metaprops\ncontent/branches/SAK-12433/content-impl/impl/src/bundle/siteemacon_ca.properties\ncontent/branches/SAK-12433/content-impl/impl/src/bundle/siteemacon_fr_CA.metaprops\ncontent/branches/SAK-12433/content-impl/impl/src/bundle/siteemacon_fr_CA.properties\ncontent/branches/SAK-12433/content-impl/impl/src/bundle/siteemacon_sv.properties\ncontent/branches/SAK-12433/content-impl/impl/src/bundle/siteemacon_zh_CN.properties\ncontent/branches/SAK-12433/content-impl/impl/src/config/\ncontent/branches/SAK-12433/content-impl/impl/src/config/content_type_extensions.properties\ncontent/branches/SAK-12433/content-impl/impl/src/config/content_type_extensions_sv.properties\ncontent/branches/SAK-12433/content-impl/impl/src/config/content_type_images.properties\ncontent/branches/SAK-12433/content-impl/impl/src/config/content_type_images_ja.properties\ncontent/branches/SAK-12433/content-impl/impl/src/config/content_type_images_sv.properties\ncontent/branches/SAK-12433/content-impl/impl/src/config/content_type_names.properties\ncontent/branches/SAK-12433/content-impl/impl/src/config/content_type_names_ca.properties\ncontent/branches/SAK-12433/content-impl/impl/src/config/content_type_names_es.properties\ncontent/branches/SAK-12433/content-impl/impl/src/config/content_type_names_fr_CA.properties\ncontent/branches/SAK-12433/content-impl/impl/src/config/content_type_names_ja.properties\ncontent/branches/SAK-12433/content-impl/impl/src/config/content_type_names_nl.properties\ncontent/branches/SAK-12433/content-impl/impl/src/config/content_type_names_sv.properties\ncontent/branches/SAK-12433/content-impl/impl/src/java/\ncontent/branches/SAK-12433/content-impl/impl/src/java/org/\ncontent/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/\ncontent/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/\ncontent/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/\ncontent/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentHostingHandlerResolver.java\ncontent/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\ncontent/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseExtensionResourceFilter.java\ncontent/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/BasicContentTypeImageService.java\ncontent/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/BasicMultiFileUploadPipe.java\ncontent/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/BasicResourceToolActionPipe.java\ncontent/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/CollectionAccessFormatter.java\ncontent/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentHostingComparator.java\ncontent/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentHostingHandlerResolverImpl.java\ncontent/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java\ncontent/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/DbResourceTypeRegistry.java\ncontent/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/LockManagerImpl.java\ncontent/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/ResourceTypeRegistryImpl.java\ncontent/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/impl/SiteEmailNotificationContent.java\ncontent/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/types/\ncontent/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/types/FileUploadType.java\ncontent/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/types/FolderType.java\ncontent/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/types/HtmlDocumentType.java\ncontent/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/types/TextDocumentType.java\ncontent/branches/SAK-12433/content-impl/impl/src/java/org/sakaiproject/content/types/UrlResourceType.java\ncontent/branches/SAK-12433/content-impl/impl/src/sql/\ncontent/branches/SAK-12433/content-impl/impl/src/sql/hsqldb/\ncontent/branches/SAK-12433/content-impl/impl/src/sql/hsqldb/sakai_content.sql\ncontent/branches/SAK-12433/content-impl/impl/src/sql/hsqldb/sakai_content_2_1_0.sql\ncontent/branches/SAK-12433/content-impl/impl/src/sql/hsqldb/sakai_content_delete.sql\ncontent/branches/SAK-12433/content-impl/impl/src/sql/hsqldb/sakai_content_registry.sql\ncontent/branches/SAK-12433/content-impl/impl/src/sql/mysql/\ncontent/branches/SAK-12433/content-impl/impl/src/sql/mysql/sakai_content.sql\ncontent/branches/SAK-12433/content-impl/impl/src/sql/mysql/sakai_content_2_1_0.sql\ncontent/branches/SAK-12433/content-impl/impl/src/sql/mysql/sakai_content_delete.sql\ncontent/branches/SAK-12433/content-impl/impl/src/sql/mysql/sakai_content_registry.sql\ncontent/branches/SAK-12433/content-impl/impl/src/sql/oracle/\ncontent/branches/SAK-12433/content-impl/impl/src/sql/oracle/sakai_content.sql\ncontent/branches/SAK-12433/content-impl/impl/src/sql/oracle/sakai_content_2_1_0.sql\ncontent/branches/SAK-12433/content-impl/impl/src/sql/oracle/sakai_content_delete.sql\ncontent/branches/SAK-12433/content-impl/impl/src/sql/oracle/sakai_content_registry.sql\ncontent/branches/SAK-12433/content-impl/pack/\ncontent/branches/SAK-12433/content-impl/pack/pom.xml\ncontent/branches/SAK-12433/content-impl/pack/project.xml\ncontent/branches/SAK-12433/content-impl/pack/src/\ncontent/branches/SAK-12433/content-impl/pack/src/webapp/\ncontent/branches/SAK-12433/content-impl/pack/src/webapp/WEB-INF/\ncontent/branches/SAK-12433/content-impl/pack/src/webapp/WEB-INF/components.xml\ncontent/branches/SAK-12433/content-tool/\ncontent/branches/SAK-12433/content-tool/.classpath\ncontent/branches/SAK-12433/content-tool/.project\ncontent/branches/SAK-12433/content-tool/pom.xml\ncontent/branches/SAK-12433/content-tool/tool/\ncontent/branches/SAK-12433/content-tool/tool/pom.xml\ncontent/branches/SAK-12433/content-tool/tool/project.xml\ncontent/branches/SAK-12433/content-tool/tool/src/\ncontent/branches/SAK-12433/content-tool/tool/src/bundle/\ncontent/branches/SAK-12433/content-tool/tool/src/bundle/helper.metaprops\ncontent/branches/SAK-12433/content-tool/tool/src/bundle/helper.properties\ncontent/branches/SAK-12433/content-tool/tool/src/bundle/helper_ar.properties\ncontent/branches/SAK-12433/content-tool/tool/src/bundle/helper_ca.metaprops\ncontent/branches/SAK-12433/content-tool/tool/src/bundle/helper_ca.properties\ncontent/branches/SAK-12433/content-tool/tool/src/bundle/helper_es.metaprops\ncontent/branches/SAK-12433/content-tool/tool/src/bundle/helper_es.properties\ncontent/branches/SAK-12433/content-tool/tool/src/bundle/helper_fr_CA.metaprops\ncontent/branches/SAK-12433/content-tool/tool/src/bundle/helper_fr_CA.properties\ncontent/branches/SAK-12433/content-tool/tool/src/bundle/helper_ja.metaprops\ncontent/branches/SAK-12433/content-tool/tool/src/bundle/helper_ja.properties\ncontent/branches/SAK-12433/content-tool/tool/src/bundle/helper_ko.metaprops\ncontent/branches/SAK-12433/content-tool/tool/src/bundle/helper_ko.properties\ncontent/branches/SAK-12433/content-tool/tool/src/bundle/helper_nl.metaprops\ncontent/branches/SAK-12433/content-tool/tool/src/bundle/helper_nl.properties\ncontent/branches/SAK-12433/content-tool/tool/src/bundle/helper_sv.properties\ncontent/branches/SAK-12433/content-tool/tool/src/bundle/helper_zh_CN.metaprops\ncontent/branches/SAK-12433/content-tool/tool/src/bundle/helper_zh_CN.properties\ncontent/branches/SAK-12433/content-tool/tool/src/bundle/right.metaprops\ncontent/branches/SAK-12433/content-tool/tool/src/bundle/right.properties\ncontent/branches/SAK-12433/content-tool/tool/src/bundle/right_ar.properties\ncontent/branches/SAK-12433/content-tool/tool/src/bundle/right_ca.metaprops\ncontent/branches/SAK-12433/content-tool/tool/src/bundle/right_ca.properties\ncontent/branches/SAK-12433/content-tool/tool/src/bundle/right_es.properties\ncontent/branches/SAK-12433/content-tool/tool/src/bundle/right_fr_CA.properties\ncontent/branches/SAK-12433/content-tool/tool/src/bundle/right_ja.properties\ncontent/branches/SAK-12433/content-tool/tool/src/bundle/right_nl.properties\ncontent/branches/SAK-12433/content-tool/tool/src/bundle/right_sv.properties\ncontent/branches/SAK-12433/content-tool/tool/src/java/\ncontent/branches/SAK-12433/content-tool/tool/src/java/org/\ncontent/branches/SAK-12433/content-tool/tool/src/java/org/sakaiproject/\ncontent/branches/SAK-12433/content-tool/tool/src/java/org/sakaiproject/content/\ncontent/branches/SAK-12433/content-tool/tool/src/java/org/sakaiproject/content/tool/\ncontent/branches/SAK-12433/content-tool/tool/src/java/org/sakaiproject/content/tool/AttachmentAction.java\ncontent/branches/SAK-12433/content-tool/tool/src/java/org/sakaiproject/content/tool/BasicRightsAssignment.java\ncontent/branches/SAK-12433/content-tool/tool/src/java/org/sakaiproject/content/tool/EntityCounter.java\ncontent/branches/SAK-12433/content-tool/tool/src/java/org/sakaiproject/content/tool/FilePickerAction.java\ncontent/branches/SAK-12433/content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java\ncontent/branches/SAK-12433/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourceTypeLabeler.java\ncontent/branches/SAK-12433/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\ncontent/branches/SAK-12433/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesBrowseItem.java\ncontent/branches/SAK-12433/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesEditItem.java\ncontent/branches/SAK-12433/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java\ncontent/branches/SAK-12433/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesItem.java\ncontent/branches/SAK-12433/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesMetadata.java\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/WEB-INF/\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/WEB-INF/web.xml\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/tools/\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/tools/sakai.dropbox.xml\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/tools/sakai.filepicker.xml\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/tools/sakai.resource.type.helper.xml\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/tools/sakai.resources.xml\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/velocity.properties\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/chef_resources-customize.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/chef_resources_create.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/chef_resources_deleteConfirm.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/chef_resources_edit.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/chef_resources_itemtype.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/chef_resources_list.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/chef_resources_more.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/chef_resources_properties.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/chef_resources_reorder.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/chef_resources_replace.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/chef_resources_show.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/chef_resources_webdav.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/sakai_filepicker_attach.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/sakai_filepicker_select.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/sakai_resources_columns.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/sakai_resources_cwiz_finish.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/sakai_resources_deleteFinish.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/sakai_resources_list.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/sakai_resources_options.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/sakai_resources_properties.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/content/sakai_resources_props.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/resources/\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/resources/sakai_access_text.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/resources/sakai_create_folders.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/resources/sakai_create_html.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/resources/sakai_create_text.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/resources/sakai_create_upload.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/resources/sakai_create_uploads.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/resources/sakai_create_url.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/resources/sakai_create_urls.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/resources/sakai_properties.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/resources/sakai_properties_scripts.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/resources/sakai_replace_file.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/resources/sakai_revise_html.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/resources/sakai_revise_text.vm\ncontent/branches/SAK-12433/content-tool/tool/src/webapp/vm/resources/sakai_revise_url.vm\ncontent/branches/SAK-12433/content-util/\ncontent/branches/SAK-12433/content-util/.classpath\ncontent/branches/SAK-12433/content-util/.project\ncontent/branches/SAK-12433/content-util/util/\ncontent/branches/SAK-12433/content-util/util/pom.xml\ncontent/branches/SAK-12433/content-util/util/project.xml\ncontent/branches/SAK-12433/content-util/util/src/\ncontent/branches/SAK-12433/content-util/util/src/java/\ncontent/branches/SAK-12433/content-util/util/src/java/org/\ncontent/branches/SAK-12433/content-util/util/src/java/org/sakaiproject/\ncontent/branches/SAK-12433/content-util/util/src/java/org/sakaiproject/content/\ncontent/branches/SAK-12433/content-util/util/src/java/org/sakaiproject/content/util/\ncontent/branches/SAK-12433/content-util/util/src/java/org/sakaiproject/content/util/BaseInteractionAction.java\ncontent/branches/SAK-12433/content-util/util/src/java/org/sakaiproject/content/util/BaseResourceAction.java\ncontent/branches/SAK-12433/content-util/util/src/java/org/sakaiproject/content/util/BaseResourceType.java\ncontent/branches/SAK-12433/content-util/util/src/java/org/sakaiproject/content/util/BaseServiceLevelAction.java\ncontent/branches/SAK-12433/content-util/util/src/java/org/sakaiproject/content/util/BasicResourceType.java\ncontent/branches/SAK-12433/content-util/util/src/java/org/sakaiproject/content/util/BasicSiteSelectableResourceType.java\ncontent/branches/SAK-12433/pom.xml\nLog:\nSAK-12433 => r34172 of branch of SAK-10581.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 11:29:44 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 11:29:44 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 11:29:44 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby sleepers.mail.umich.edu () with ESMTP id lBEGThuO017550;\n\tFri, 14 Dec 2007 11:29:43 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 4762AF5C.801F.706 ; \n\t14 Dec 2007 11:29:19 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A6B1C9E7B5;\n\tFri, 14 Dec 2007 16:28:18 +0000 (GMT)\nMessage-ID: <200712141621.lBEGL7wB012570@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 242\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 16:28:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 686D93328D\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 16:28:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEGL7mY012572\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 11:21:07 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEGL7wB012570\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 11:21:07 -0500\nDate: Fri, 14 Dec 2007 11:21:07 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39270 - content/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 11:29:44 2007\nX-DSPAM-Confidence: 0.9807\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39270\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 11:21:05 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39270\n\nAdded:\ncontent/branches/SAK-12433/\nLog:\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 11:25:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 11:25:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 11:25:17 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby panther.mail.umich.edu () with ESMTP id lBEGPGbQ001127;\n\tFri, 14 Dec 2007 11:25:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4762AE44.3EE79.3951 ; \n\t14 Dec 2007 11:24:39 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 114479E63F;\n\tFri, 14 Dec 2007 16:23:34 +0000 (GMT)\nMessage-ID: <200712141616.lBEGGH5E012558@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 927\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 16:23:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 227013328D\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 16:24:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEGGIWL012560\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 11:16:18 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEGGH5E012558\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 11:16:17 -0500\nDate: Fri, 14 Dec 2007 11:16:17 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39269 - calendar/branches/oncourse_opc_122007/calendar-impl/impl/src/java/org/sakaiproject/calendar/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 11:25:17 2007\nX-DSPAM-Confidence: 0.9787\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39269\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 11:16:15 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39269\n\nModified:\ncalendar/branches/oncourse_opc_122007/calendar-impl/impl/src/java/org/sakaiproject/calendar/impl/BaseCalendarService.java\nLog:\nSAK-12433.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 11:09:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 11:09:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 11:09:19 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby casino.mail.umich.edu () with ESMTP id lBEG9IPm029260;\n\tFri, 14 Dec 2007 11:09:18 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 4762AAA3.2D97F.14128 ; \n\t14 Dec 2007 11:09:14 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2CF4A9E70D;\n\tFri, 14 Dec 2007 16:08:12 +0000 (GMT)\nMessage-ID: <200712141600.lBEG0vmY012525@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 928\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 16:07:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4E2013929D\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 16:08:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEG0v3o012527\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 11:00:57 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEG0vmY012525\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 11:00:57 -0500\nDate: Fri, 14 Dec 2007 11:00:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [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!\n 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 !\n site-manage-impl/impl/src/java/org/sakaiproject/sitemanage/imp!\n l site-m\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 11:09:19 2007\nX-DSPAM-Confidence: 0.6957\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39268\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 11:00:39 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39268\n\nAdded:\nsite-manage/branches/SAK-12433/pageorder/\nsite-manage/branches/SAK-12433/pageorder/.classpath\nsite-manage/branches/SAK-12433/pageorder/.project\nsite-manage/branches/SAK-12433/pageorder/INSTALL\nsite-manage/branches/SAK-12433/pageorder/project.properties\nsite-manage/branches/SAK-12433/pageorder/project.xml\nsite-manage/branches/SAK-12433/pageorder/tool/\nsite-manage/branches/SAK-12433/pageorder/tool/.svnignore\nsite-manage/branches/SAK-12433/pageorder/tool/project.properties\nsite-manage/branches/SAK-12433/pageorder/tool/project.xml\nsite-manage/branches/SAK-12433/pageorder/tool/src/\nsite-manage/branches/SAK-12433/pageorder/tool/src/bundle/\nsite-manage/branches/SAK-12433/pageorder/tool/src/bundle/org/\nsite-manage/branches/SAK-12433/pageorder/tool/src/bundle/org/sakaiproject/\nsite-manage/branches/SAK-12433/pageorder/tool/src/bundle/org/sakaiproject/tool/\nsite-manage/branches/SAK-12433/pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/\nsite-manage/branches/SAK-12433/pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle/\nsite-manage/branches/SAK-12433/pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle/Messages.properties\nsite-manage/branches/SAK-12433/pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle/Messages_ca.properties\nsite-manage/branches/SAK-12433/pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle/Messages_es.properties\nsite-manage/branches/SAK-12433/pageorder/tool/src/bundle/org/sakaiproject/tool/sitepageorder/\nsite-manage/branches/SAK-12433/pageorder/tool/src/bundle/org/sakaiproject/tool/sitepageorder/bundle/\nsite-manage/branches/SAK-12433/pageorder/tool/src/java/\nsite-manage/branches/SAK-12433/pageorder/tool/src/java/org/\nsite-manage/branches/SAK-12433/pageorder/tool/src/java/org/sakaiproject/\nsite-manage/branches/SAK-12433/pageorder/tool/src/java/org/sakaiproject/site/\nsite-manage/branches/SAK-12433/pageorder/tool/src/java/org/sakaiproject/site/tool/\nsite-manage/branches/SAK-12433/pageorder/tool/src/java/org/sakaiproject/site/tool/helper/\nsite-manage/branches/SAK-12433/pageorder/tool/src/java/org/sakaiproject/site/tool/helper/order/\nsite-manage/branches/SAK-12433/pageorder/tool/src/java/org/sakaiproject/site/tool/helper/order/impl/\nsite-manage/branches/SAK-12433/pageorder/tool/src/java/org/sakaiproject/site/tool/helper/order/impl/SitePageEditHandler.java\nsite-manage/branches/SAK-12433/pageorder/tool/src/java/org/sakaiproject/site/tool/helper/order/rsf/\nsite-manage/branches/SAK-12433/pageorder/tool/src/java/org/sakaiproject/site/tool/helper/order/rsf/PageAddProducer.java\nsite-manage/branches/SAK-12433/pageorder/tool/src/java/org/sakaiproject/site/tool/helper/order/rsf/PageAddViewParameters.java\nsite-manage/branches/SAK-12433/pageorder/tool/src/java/org/sakaiproject/site/tool/helper/order/rsf/PageDelProducer.java\nsite-manage/branches/SAK-12433/pageorder/tool/src/java/org/sakaiproject/site/tool/helper/order/rsf/PageEditProducer.java\nsite-manage/branches/SAK-12433/pageorder/tool/src/java/org/sakaiproject/site/tool/helper/order/rsf/PageEditViewParameters.java\nsite-manage/branches/SAK-12433/pageorder/tool/src/java/org/sakaiproject/site/tool/helper/order/rsf/PageListProducer.java\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/WEB-INF/\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/WEB-INF/applicationContext.xml\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/WEB-INF/requestContext.xml\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/WEB-INF/web.xml\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/css/\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/css/PageList.css\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/accept.gif\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/add.gif\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/application_edit.gif\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/arrow_refresh.gif\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/cancel.gif\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/cross.gif\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/delete.gif\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/exclamation.gif\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/indicator.gif\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/lightbulb.gif\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/lightbulb_off.gif\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/lock.gif\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/lock_add.gif\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/lock_break.gif\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/page_edit.gif\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/page_white_edit.gif\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/pencil.gif\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/plugin_edit.gif\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/images/wrench.gif\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/editUtil.js\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/idrag.js\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/idrop.js\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/iexpander.js\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/ifx.js\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/ifxblind.js\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/ifxbounce.js\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/ifxdrop.js\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/ifxfold.js\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/ifxhighlight.js\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/ifxopenclose.js\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/ifxpulsate.js\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/ifxscale.js\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/ifxscrollto.js\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/ifxshake.js\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/ifxslide.js\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/ifxtransfer.js\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/interface.js\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/iselect.js\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/islider.js\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/isortables.js\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/itooltip.js\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/ittabs.js\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/iutil.js\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/jquery-1.0.1.js\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/jquery/jquery-1.0.1.pack.js\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/js/orderUtil.js\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/templates/\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/templates/PageAdd.html\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/templates/PageDel.html\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/templates/PageEdit.html\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/content/templates/PageList.html\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/tools/\nsite-manage/branches/SAK-12433/pageorder/tool/src/webapp/tools/sakai.site.pageorder.xml\nsite-manage/branches/SAK-12433/pom.xml\nsite-manage/branches/SAK-12433/site-manage-api/\nsite-manage/branches/SAK-12433/site-manage-api/.classpath\nsite-manage/branches/SAK-12433/site-manage-api/.project\nsite-manage/branches/SAK-12433/site-manage-api/api/\nsite-manage/branches/SAK-12433/site-manage-api/api/pom.xml\nsite-manage/branches/SAK-12433/site-manage-api/api/project.xml\nsite-manage/branches/SAK-12433/site-manage-api/api/src/\nsite-manage/branches/SAK-12433/site-manage-api/api/src/java/\nsite-manage/branches/SAK-12433/site-manage-api/api/src/java/org/\nsite-manage/branches/SAK-12433/site-manage-api/api/src/java/org/sakaiproject/\nsite-manage/branches/SAK-12433/site-manage-api/api/src/java/org/sakaiproject/sitemanage/\nsite-manage/branches/SAK-12433/site-manage-api/api/src/java/org/sakaiproject/sitemanage/api/\nsite-manage/branches/SAK-12433/site-manage-api/api/src/java/org/sakaiproject/sitemanage/api/SectionField.java\nsite-manage/branches/SAK-12433/site-manage-api/api/src/java/org/sakaiproject/sitemanage/api/SectionFieldManager.java\nsite-manage/branches/SAK-12433/site-manage-api/api/src/java/org/sakaiproject/sitemanage/cover/\nsite-manage/branches/SAK-12433/site-manage-api/api/src/java/org/sakaiproject/sitemanage/cover/SectionFieldManager.java\nsite-manage/branches/SAK-12433/site-manage-help/\nsite-manage/branches/SAK-12433/site-manage-help/pom.xml\nsite-manage/branches/SAK-12433/site-manage-help/project.xml\nsite-manage/branches/SAK-12433/site-manage-help/src/\nsite-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/\nsite-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/aqym.html\nsite-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/aqzx.html\nsite-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/araa.html\nsite-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/arai.html\nsite-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/aral.html\nsite-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/arao.html\nsite-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/arav.html\nsite-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/araw.html\nsite-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/arci.html\nsite-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/ardg.html\nsite-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/ardu.html\nsite-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/ardw.html\nsite-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/ardx.html\nsite-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/arfb.html\nsite-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/atcs.html\nsite-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/aueu.html\nsite-manage/branches/SAK-12433/site-manage-help/src/sakai_siteinfo/help.xml\nsite-manage/branches/SAK-12433/site-manage-impl/\nsite-manage/branches/SAK-12433/site-manage-impl/.classpath\nsite-manage/branches/SAK-12433/site-manage-impl/.project\nsite-manage/branches/SAK-12433/site-manage-impl/impl/\nsite-manage/branches/SAK-12433/site-manage-impl/impl/pom.xml\nsite-manage/branches/SAK-12433/site-manage-impl/impl/project.xml\nsite-manage/branches/SAK-12433/site-manage-impl/impl/src/\nsite-manage/branches/SAK-12433/site-manage-impl/impl/src/bundle/\nsite-manage/branches/SAK-12433/site-manage-impl/impl/src/bundle/SampleCourseManagementProvider_ar.properties\nsite-manage/branches/SAK-12433/site-manage-impl/impl/src/bundle/SampleCourseManagementProvider_es.properties\nsite-manage/branches/SAK-12433/site-manage-impl/impl/src/bundle/SampleCourseManagementProvider_ja.properties\nsite-manage/branches/SAK-12433/site-manage-impl/impl/src/bundle/SectionFields.properties\nsite-manage/branches/SAK-12433/site-manage-impl/impl/src/bundle/SectionFields_ca.properties\nsite-manage/branches/SAK-12433/site-manage-impl/impl/src/bundle/SectionFields_es.properties\nsite-manage/branches/SAK-12433/site-manage-impl/impl/src/bundle/SectionFields_ja.properties\nsite-manage/branches/SAK-12433/site-manage-impl/impl/src/java/\nsite-manage/branches/SAK-12433/site-manage-impl/impl/src/java/org/\nsite-manage/branches/SAK-12433/site-manage-impl/impl/src/java/org/sakaiproject/\nsite-manage/branches/SAK-12433/site-manage-impl/impl/src/java/org/sakaiproject/site/\nsite-manage/branches/SAK-12433/site-manage-impl/impl/src/java/org/sakaiproject/site/impl/\nsite-manage/branches/SAK-12433/site-manage-impl/impl/src/java/org/sakaiproject/sitemanage/\nsite-manage/branches/SAK-12433/site-manage-impl/impl/src/java/org/sakaiproject/sitemanage/impl/\nsite-manage/branches/SAK-12433/site-manage-impl/impl/src/java/org/sakaiproject/sitemanage/impl/SectionFieldImpl.java\nsite-manage/branches/SAK-12433/site-manage-impl/impl/src/java/org/sakaiproject/sitemanage/impl/SectionFieldManagerImpl.java\nsite-manage/branches/SAK-12433/site-manage-impl/pack/\nsite-manage/branches/SAK-12433/site-manage-impl/pack/pom.xml\nsite-manage/branches/SAK-12433/site-manage-impl/pack/project.xml\nsite-manage/branches/SAK-12433/site-manage-impl/pack/src/\nsite-manage/branches/SAK-12433/site-manage-impl/pack/src/webapp/\nsite-manage/branches/SAK-12433/site-manage-impl/pack/src/webapp/WEB-INF/\nsite-manage/branches/SAK-12433/site-manage-impl/pack/src/webapp/WEB-INF/components.xml\nsite-manage/branches/SAK-12433/site-manage-tool/\nsite-manage/branches/SAK-12433/site-manage-tool/.classpath\nsite-manage/branches/SAK-12433/site-manage-tool/.project\nsite-manage/branches/SAK-12433/site-manage-tool/tool/\nsite-manage/branches/SAK-12433/site-manage-tool/tool/maven.xml\nsite-manage/branches/SAK-12433/site-manage-tool/tool/pom.xml\nsite-manage/branches/SAK-12433/site-manage-tool/tool/project.xml\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership.metaprops\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_ar.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_ca.metaprops\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_ca.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_es.metaprops\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_es.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_fr_CA.metaprops\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_fr_CA.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_ja.metaprops\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_ja.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_ko.metaprops\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_ko.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_nl.metaprops\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_nl.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_sv.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_zh_CN.metaprops\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/membership_zh_CN.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser.metaprops\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_ar.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_ca.metaprops\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_ca.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_es.metaprops\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_es.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_fr_CA.metaprops\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_fr_CA.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_ja.metaprops\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_ja.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_ko.metaprops\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_ko.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_nl.metaprops\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_nl.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_sv.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_zh_CN.metaprops\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitebrowser_zh_CN.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric.metaprops\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_ar.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_ca.metaprops\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_ca.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_es.metaprops\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_es.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_fr_CA.metaprops\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_fr_CA.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_ja.metaprops\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_ja.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_ko.metaprops\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_ko.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_nl.metaprops\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_nl.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_sv.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_zh_CN.metaprops\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/bundle/sitesetupgeneric_zh_CN.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/java/\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/java/org/\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/java/org/sakaiproject/\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/java/org/sakaiproject/site/\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/MembershipAction.java\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteBrowserAction.java\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/WEB-INF/\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/WEB-INF/applicationContext.xml\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/WEB-INF/web.xml\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/tools/\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/tools/sakai.membership.xml\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/tools/sakai.sitebrowser.xml\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/tools/sakai.siteinfo.xml\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/tools/sakai.sitesetup.xml\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/velocity.properties\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/membership/\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/membership/chef_membership.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/membership/chef_membership_confirm.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/membership/chef_membership_joinable.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitebrowser/\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitebrowser/chef_sitebrowser_list.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitebrowser/chef_sitebrowser_simpleSearch.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitebrowser/chef_sitebrowser_visit.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addParticipant-confirm.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addParticipant-differentRole.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addParticipant-notification.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addParticipant-sameRole.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addParticipant.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addRemoveFeature.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-addRemoveFeatureConfirm.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-changeRoles-confirm.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-changeRoles.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-findCourse.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-gradtoolsConfirm.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-importSites.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-list.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-modifyENW.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteConfirm.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteCourse.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteCourseManual.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteFeatures.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteInformation.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSitePublishUnpublish.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-publishUnpublish-confirm.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-publishUnpublish-sendEmail.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-publishUnpublish.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-removeParticipants.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteDeleteConfirm.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-addCourseConfirm.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-duplicate.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-editAccess-globalAccess-confirm.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-editAccess-globalAccess.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-editAccess.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-editClass.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-editInfo.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-editInfoConfirm.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-group.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-groupDeleteConfirm.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-groupedit.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-import.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-importMtrlCopy.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-importMtrlCopyConfirm.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-importMtrlCopyConfirmMsg.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-importMtrlMaster.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-list.vm\nsite-manage/branches/SAK-12433/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-type.vm\nsite-manage/branches/SAK-12433/site-manage-util/\nsite-manage/branches/SAK-12433/site-manage-util/.classpath\nsite-manage/branches/SAK-12433/site-manage-util/.project\nsite-manage/branches/SAK-12433/site-manage-util/util/\nsite-manage/branches/SAK-12433/site-manage-util/util/pom.xml\nsite-manage/branches/SAK-12433/site-manage-util/util/project.xml\nsite-manage/branches/SAK-12433/site-manage-util/util/src/\nsite-manage/branches/SAK-12433/site-manage-util/util/src/bundle/\nsite-manage/branches/SAK-12433/site-manage-util/util/src/bundle/SampleCourseManagementProvider.properties\nsite-manage/branches/SAK-12433/site-manage-util/util/src/bundle/SampleCourseManagementProvider_ca.properties\nsite-manage/branches/SAK-12433/site-manage-util/util/src/bundle/SampleCourseManagementProvider_fr_CA.properties\nsite-manage/branches/SAK-12433/site-manage-util/util/src/java/\nsite-manage/branches/SAK-12433/site-manage-util/util/src/java/org/\nsite-manage/branches/SAK-12433/site-manage-util/util/src/java/org/sakaiproject/\nsite-manage/branches/SAK-12433/site-manage-util/util/src/java/org/sakaiproject/util/\nsite-manage/branches/SAK-12433/site-manage-util/util/src/java/org/sakaiproject/util/SubjectAffiliates.java\nLog:\nSAK-12433 => from r31545 of sakai_2-4-x\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom josrodri@iupui.edu Fri Dec 14 11:07:48 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 11:07:48 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 11:07:48 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby casino.mail.umich.edu () with ESMTP id lBEG7m5B028613;\n\tFri, 14 Dec 2007 11:07:48 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4762AA4D.94C58.31366 ; \n\t14 Dec 2007 11:07:44 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B04D19E3C1;\n\tFri, 14 Dec 2007 16:06:43 +0000 (GMT)\nMessage-ID: <200712141559.lBEFxVvn012513@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 515\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 16:06:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CDF933929D\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 16:07:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEFxVDM012515\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 10:59:32 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEFxVvn012513\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 10:59:31 -0500\nDate: Fri, 14 Dec 2007 10:59:31 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: josrodri@iupui.edu\nSubject: [sakai] svn commit: r39267 - reference/branches/SAK-8152/library/src/webapp/js\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 11:07:48 2007\nX-DSPAM-Confidence: 0.9842\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39267\n\nAuthor: josrodri@iupui.edu\nDate: 2007-12-14 10:59:29 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39267\n\nModified:\nreference/branches/SAK-8152/library/src/webapp/js/headscripts.js\nLog:\nSAK-8152: merged current trunk into branch to bring up to date so ready to be merged back into trunk\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 11:02:09 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 11:02:09 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 11:02:09 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby flawless.mail.umich.edu () with ESMTP id lBEG28IH024183;\n\tFri, 14 Dec 2007 11:02:08 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 4762A8F7.A9556.31790 ; \n\t14 Dec 2007 11:02:02 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2B70C9E6E6;\n\tFri, 14 Dec 2007 16:01:04 +0000 (GMT)\nMessage-ID: <200712141553.lBEFrgnk012470@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 58\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 16:00:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AC6A439291\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 16:01:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEFrgM4012472\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 10:53:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEFrgnk012470\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 10:53:42 -0500\nDate: Fri, 14 Dec 2007 10:53:42 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39266 - site-manage/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 11:02:09 2007\nX-DSPAM-Confidence: 0.9817\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39266\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 10:53:39 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39266\n\nAdded:\nsite-manage/branches/SAK-12433/\nLog:\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 10:55:48 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 10:55:48 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 10:55:48 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby fan.mail.umich.edu () with ESMTP id lBEFtl3k032126;\n\tFri, 14 Dec 2007 10:55:47 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 4762A76B.8D239.17457 ; \n\t14 Dec 2007 10:55:26 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 686B19E6EE;\n\tFri, 14 Dec 2007 15:54:25 +0000 (GMT)\nMessage-ID: <200712141546.lBEFkmWA012458@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1022\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 15:53:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7A68338729\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 15:54:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEFkmGp012460\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 10:46:48 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEFkmWA012458\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 10:46:48 -0500\nDate: Fri, 14 Dec 2007 10:46:48 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 10:55:48 2007\nX-DSPAM-Confidence: 0.9838\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39265\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 10:46:41 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39265\n\nAdded:\nentity/branches/SAK-12433/entity-api/\nentity/branches/SAK-12433/entity-api/.classpath\nentity/branches/SAK-12433/entity-api/.project\nentity/branches/SAK-12433/entity-api/api/\nentity/branches/SAK-12433/entity-api/api/pom.xml\nentity/branches/SAK-12433/entity-api/api/project.xml\nentity/branches/SAK-12433/entity-api/api/src/\nentity/branches/SAK-12433/entity-api/api/src/java/\nentity/branches/SAK-12433/entity-api/api/src/java/org/\nentity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/\nentity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/\nentity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/\nentity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/AttachmentContainer.java\nentity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/AttachmentContainerEdit.java\nentity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/ContextObserver.java\nentity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/Edit.java\nentity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/Entity.java\nentity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/EntityAccessOverloadException.java\nentity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/EntityCopyrightException.java\nentity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/EntityManager.java\nentity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/EntityNotDefinedException.java\nentity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/EntityPermissionException.java\nentity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/EntityProducer.java\nentity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/EntityPropertyNotDefinedException.java\nentity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/EntityPropertyTypeException.java\nentity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/EntitySummary.java\nentity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/EntityTransferrer.java\nentity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/HttpAccess.java\nentity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/Reference.java\nentity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/ResourceProperties.java\nentity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/ResourcePropertiesEdit.java\nentity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/api/Summary.java\nentity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/cover/\nentity/branches/SAK-12433/entity-api/api/src/java/org/sakaiproject/entity/cover/EntityManager.java\nentity/branches/SAK-12433/entity-api/bin/\nentity/branches/SAK-12433/entity-impl/\nentity/branches/SAK-12433/entity-impl/.classpath\nentity/branches/SAK-12433/entity-impl/.project\nentity/branches/SAK-12433/entity-impl/bin/\nentity/branches/SAK-12433/entity-impl/impl/\nentity/branches/SAK-12433/entity-impl/impl/pom.xml\nentity/branches/SAK-12433/entity-impl/impl/project.xml\nentity/branches/SAK-12433/entity-impl/impl/src/\nentity/branches/SAK-12433/entity-impl/impl/src/java/\nentity/branches/SAK-12433/entity-impl/impl/src/java/org/\nentity/branches/SAK-12433/entity-impl/impl/src/java/org/sakaiproject/\nentity/branches/SAK-12433/entity-impl/impl/src/java/org/sakaiproject/entity/\nentity/branches/SAK-12433/entity-impl/impl/src/java/org/sakaiproject/entity/impl/\nentity/branches/SAK-12433/entity-impl/impl/src/java/org/sakaiproject/entity/impl/EntityManagerComponent.java\nentity/branches/SAK-12433/entity-impl/impl/src/java/org/sakaiproject/entity/impl/ReferenceComponent.java\nentity/branches/SAK-12433/entity-impl/impl/src/java/org/sakaiproject/entity/impl/ReferenceVectorComponent.java\nentity/branches/SAK-12433/entity-impl/pack/\nentity/branches/SAK-12433/entity-impl/pack/pom.xml\nentity/branches/SAK-12433/entity-impl/pack/project.xml\nentity/branches/SAK-12433/entity-impl/pack/src/\nentity/branches/SAK-12433/entity-impl/pack/src/webapp/\nentity/branches/SAK-12433/entity-impl/pack/src/webapp/WEB-INF/\nentity/branches/SAK-12433/entity-impl/pack/src/webapp/WEB-INF/components.xml\nentity/branches/SAK-12433/entity-util/\nentity/branches/SAK-12433/entity-util/.classpath\nentity/branches/SAK-12433/entity-util/.project\nentity/branches/SAK-12433/entity-util/bin/\nentity/branches/SAK-12433/entity-util/util/\nentity/branches/SAK-12433/entity-util/util/pom.xml\nentity/branches/SAK-12433/entity-util/util/project.xml\nentity/branches/SAK-12433/entity-util/util/src/\nentity/branches/SAK-12433/entity-util/util/src/java/\nentity/branches/SAK-12433/entity-util/util/src/java/org/\nentity/branches/SAK-12433/entity-util/util/src/java/org/sakaiproject/\nentity/branches/SAK-12433/entity-util/util/src/java/org/sakaiproject/util/\nentity/branches/SAK-12433/entity-util/util/src/java/org/sakaiproject/util/BaseResourceProperties.java\nentity/branches/SAK-12433/entity-util/util/src/java/org/sakaiproject/util/BaseResourcePropertiesEdit.java\nentity/branches/SAK-12433/pom.xml\nLog:\nSAK-12433 => from -r38226 of sakai_2-4-x\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 10:32:16 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 10:32:16 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 10:32:16 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby brazil.mail.umich.edu () with ESMTP id lBEFWF0Q019656;\n\tFri, 14 Dec 2007 10:32:15 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 4762A1FA.2E5C0.16595 ; \n\t14 Dec 2007 10:32:13 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 48C549D0CD;\n\tFri, 14 Dec 2007 15:30:56 +0000 (GMT)\nMessage-ID: <200712141523.lBEFNXTB012433@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 513\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 15:30:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0975D37EF3\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 15:31:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEFNXpO012435\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 10:23:33 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEFNXTB012433\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 10:23:33 -0500\nDate: Fri, 14 Dec 2007 10:23:33 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39264 - entity/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 10:32:16 2007\nX-DSPAM-Confidence: 0.9782\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39264\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 10:23:30 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39264\n\nRemoved:\nentity/branches/oncourse_opc_122007/\nLog:\nremove this branch for SAK-12433\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 10:24:54 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 10:24:54 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 10:24:54 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby jacknife.mail.umich.edu () with ESMTP id lBEFOsoe009677;\n\tFri, 14 Dec 2007 10:24:54 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 4762A040.CA30D.4257 ; \n\t14 Dec 2007 10:24:51 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 430E89E6B7;\n\tFri, 14 Dec 2007 15:24:49 +0000 (GMT)\nMessage-ID: <200712141516.lBEFGXbW012373@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 477\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 15:24:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1B0FD379B8\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 15:24:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEFGX9L012375\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 10:16:33 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEFGXbW012373\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 10:16:33 -0500\nDate: Fri, 14 Dec 2007 10:16:33 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39263 - entity/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 10:24:54 2007\nX-DSPAM-Confidence: 0.9778\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39263\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 10:16:30 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39263\n\nAdded:\nentity/branches/SAK-12433/\nLog:\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 10:07:56 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 10:07:56 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 10:07:56 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby jacknife.mail.umich.edu () with ESMTP id lBEF7tGg032765;\n\tFri, 14 Dec 2007 10:07:55 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 47629C44.6461.22851 ; \n\t14 Dec 2007 10:07:50 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A96C69E647;\n\tFri, 14 Dec 2007 15:07:42 +0000 (GMT)\nMessage-ID: <200712141459.lBEExaAi012348@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 889\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 15:07:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 704D5332ED\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 15:07:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEExasx012350\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 09:59:36 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEExaAi012348\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 09:59:36 -0500\nDate: Fri, 14 Dec 2007 09:59:36 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39262 - entity/branches/oncourse_opc_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 10:07:56 2007\nX-DSPAM-Confidence: 0.9819\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39262\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 09:59:34 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39262\n\nRemoved:\nentity/branches/oncourse_opc_122007/sakai_2-4-x/\nLog:\nrevert this branch back\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 10:06:58 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 10:06:58 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 10:06:58 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby chaos.mail.umich.edu () with ESMTP id lBEF6v78015941;\n\tFri, 14 Dec 2007 10:06:57 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 47629C00.5DA63.29421 ; \n\t14 Dec 2007 10:06:53 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 738569E644;\n\tFri, 14 Dec 2007 15:06:27 +0000 (GMT)\nMessage-ID: <200712141458.lBEEwUYV012333@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 141\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 15:06:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1C28324C44\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 15:06:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEEwUEC012335\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 09:58:30 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEEwUYV012333\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 09:58:30 -0500\nDate: Fri, 14 Dec 2007 09:58:30 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39261 - entity/branches/oncourse_opc_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 10:06:58 2007\nX-DSPAM-Confidence: 0.9822\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39261\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 09:58:27 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39261\n\nAdded:\nentity/branches/oncourse_opc_122007/sakai_2-4-x/\nLog:\nSAK-12433\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 09:47:59 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 09:47:59 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 09:47:59 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby chaos.mail.umich.edu () with ESMTP id lBEElwOw006036;\n\tFri, 14 Dec 2007 09:47:58 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 47629798.918F9.8726 ; \n\t14 Dec 2007 09:47:55 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6B1859E389;\n\tFri, 14 Dec 2007 14:46:06 +0000 (GMT)\nMessage-ID: <200712141439.lBEEdfRJ012310@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 439\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 14:45:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DA1073921A\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 14:47:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEEdfS3012312\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 09:39:41 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEEdfRJ012310\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 09:39:41 -0500\nDate: Fri, 14 Dec 2007 09:39:41 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39260 - entity/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 09:47:59 2007\nX-DSPAM-Confidence: 0.9842\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39260\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 09:39:39 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39260\n\nAdded:\nentity/branches/oncourse_opc_122007/\nLog:\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 09:42:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 09:42:50 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 09:42:50 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby panther.mail.umich.edu () with ESMTP id lBEEgnGm002793;\n\tFri, 14 Dec 2007 09:42:49 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 47629662.A23D5.21764 ; \n\t14 Dec 2007 09:42:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2D3D69E4D5;\n\tFri, 14 Dec 2007 14:40:42 +0000 (GMT)\nMessage-ID: <200712141434.lBEEYUKX012298@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 436\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 14:40:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C262939219\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 14:42:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEEYUsu012300\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 09:34:31 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEEYUKX012298\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 09:34:30 -0500\nDate: Fri, 14 Dec 2007 09:34:30 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39259 - announcement/branches/oncourse_opc_122007/announcement-impl/impl/src/java/org/sakaiproject/announcement/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 09:42:50 2007\nX-DSPAM-Confidence: 0.9819\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39259\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 09:34:28 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39259\n\nModified:\nannouncement/branches/oncourse_opc_122007/announcement-impl/impl/src/java/org/sakaiproject/announcement/impl/BaseAnnouncementService.java\nLog:\nSAK-12433\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 09:18:44 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 09:18:44 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 09:18:44 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby faithful.mail.umich.edu () with ESMTP id lBEEIhid005424;\n\tFri, 14 Dec 2007 09:18:43 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 476290BC.A8E5B.24185 ; \n\t14 Dec 2007 09:18:39 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 798F99E1B6;\n\tFri, 14 Dec 2007 14:16:48 +0000 (GMT)\nMessage-ID: <200712141410.lBEEAWb2012282@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 616\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 14:16:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 25A7938735\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 14:18:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEEAW6e012284\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 09:10:32 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEEAWb2012282\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 09:10:32 -0500\nDate: Fri, 14 Dec 2007 09:10:32 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39258 - web/branches/sakai_2-4-x/news-impl/impl/src/java/org/sakaiproject/news/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 09:18:44 2007\nX-DSPAM-Confidence: 0.9815\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39258\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 09:10:31 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39258\n\nModified:\nweb/branches/sakai_2-4-x/news-impl/impl/src/java/org/sakaiproject/news/impl/BasicNewsService.java\nLog:\nSAK-12433 svn merge -r39236:39237 https://source.sakaiproject.org/svn/web/trunk\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 09:15:39 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 09:15:39 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 09:15:39 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby flawless.mail.umich.edu () with ESMTP id lBEEFcSW029882;\n\tFri, 14 Dec 2007 09:15:38 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 47629004.D70C3.21589 ; \n\t14 Dec 2007 09:15:35 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9F1459DEA1;\n\tFri, 14 Dec 2007 14:13:30 +0000 (GMT)\nMessage-ID: <200712141407.lBEE78Ev012256@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 674\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 14:13:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B790F392C4\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 14:14:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEE78Jq012258\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 09:07:08 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEE78Ev012256\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 09:07:08 -0500\nDate: Fri, 14 Dec 2007 09:07:08 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 09:15:39 2007\nX-DSPAM-Confidence: 0.9822\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39257\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 09:07:05 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39257\n\nModified:\nosp/branches/oncourse_2-4-x/glossary/api-impl/src/java/org/theospi/portfolio/help/impl/GlossaryEntityProducer.java\nosp/branches/oncourse_2-4-x/matrix/api-impl/src/java/org/theospi/portfolio/matrix/model/impl/MatrixContentEntityProducer.java\nosp/branches/oncourse_2-4-x/presentation/api-impl/src/java/org/theospi/portfolio/presentation/model/impl/PresentationContentEntityProducer.java\nosp/branches/oncourse_2-4-x/wizard/api-impl/src/java/org/theospi/portfolio/wizard/impl/WizardEntityProducer.java\nLog:\nSAK-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\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 09:02:32 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 09:02:32 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 09:02:32 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby mission.mail.umich.edu () with ESMTP id lBEE2VjL025617;\n\tFri, 14 Dec 2007 09:02:31 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 47628CF0.F0000.10360 ; \n\t14 Dec 2007 09:02:27 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BBA189E3C2;\n\tFri, 14 Dec 2007 14:00:34 +0000 (GMT)\nMessage-ID: <200712141354.lBEDs2bB012239@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 707\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 14:00:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3EDFC392C4\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 14:01:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEDs294012241\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 08:54:02 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEDs2bB012239\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 08:54:02 -0500\nDate: Fri, 14 Dec 2007 08:54:02 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39256 - web/branches/sakai_2-4-x/web-impl/impl/src/java/org/sakaiproject/web/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 09:02:32 2007\nX-DSPAM-Confidence: 0.9833\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39256\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 08:54:01 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39256\n\nModified:\nweb/branches/sakai_2-4-x/web-impl/impl/src/java/org/sakaiproject/web/impl/WebServiceImpl.java\nLog:\nSAK-12433 svn merge -r39225:39226 https://source.sakaiproject.org/svn/web/trunk\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 08:40:34 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 08:40:34 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 08:40:34 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby sleepers.mail.umich.edu () with ESMTP id lBEDeYFS022318;\n\tFri, 14 Dec 2007 08:40:34 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 476287CB.23758.16675 ; \n\t14 Dec 2007 08:40:30 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 028C99B0EF;\n\tFri, 14 Dec 2007 13:40:25 +0000 (GMT)\nMessage-ID: <200712141332.lBEDWLBI011988@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 172\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 13:40:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 512AD32CC0\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 13:40:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEDWLVN011990\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 08:32:21 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEDWLBI011988\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 08:32:21 -0500\nDate: Fri, 14 Dec 2007 08:32:21 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39255 - syllabus/branches/sakai_2-4-x/syllabus-impl/src/java/org/sakaiproject/component/app/syllabus\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 08:40:34 2007\nX-DSPAM-Confidence: 0.9815\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39255\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 08:32:20 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39255\n\nModified:\nsyllabus/branches/sakai_2-4-x/syllabus-impl/src/java/org/sakaiproject/component/app/syllabus/SyllabusServiceImpl.java\nLog:\nSAK-12433 svn merge -r39224:39225 https://source.sakaiproject.org/svn/syllabus/trunk\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 08:37:16 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 08:37:16 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 08:37:16 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby fan.mail.umich.edu () with ESMTP id lBEDbF35031179;\n\tFri, 14 Dec 2007 08:37:15 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 47628703.5409D.23061 ; \n\t14 Dec 2007 08:37:10 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 625789B0EF;\n\tFri, 14 Dec 2007 13:37:06 +0000 (GMT)\nMessage-ID: <200712141329.lBEDT0sf011969@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 459\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 13:36:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DA11032CC0\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 13:36:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEDT0L2011971\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 08:29:00 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEDT0sf011969\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 08:29:00 -0500\nDate: Fri, 14 Dec 2007 08:29:00 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39254 - metaobj/branches/sakai_2-4-x/metaobj-impl/api-impl/src/java/org/sakaiproject/metaobj/shared/mgt/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 08:37:16 2007\nX-DSPAM-Confidence: 0.9840\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39254\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 08:28:59 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39254\n\nModified:\nmetaobj/branches/sakai_2-4-x/metaobj-impl/api-impl/src/java/org/sakaiproject/metaobj/shared/mgt/impl/MetaobjEntityProducer.java\nLog:\nSAK-12433 svn merge -r39223:39224 https://source.sakaiproject.org/svn/metaobj/trunk\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Dec 14 08:31:45 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 08:31:45 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 08:31:45 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby chaos.mail.umich.edu () with ESMTP id lBEDViDh001965;\n\tFri, 14 Dec 2007 08:31:44 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 476285B9.31808.24682 ; \n\t14 Dec 2007 08:31:40 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 37AF856558;\n\tFri, 14 Dec 2007 13:31:35 +0000 (GMT)\nMessage-ID: <200712141323.lBEDNTvR011923@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 102\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 13:31:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EF07C32CC0\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 13:31:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBEDNTgh011925\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 08:23:29 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBEDNTvR011923\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 08:23:29 -0500\nDate: Fri, 14 Dec 2007 08:23:29 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39253 - in chat/branches/oncourse_2-4-x/chat-impl/impl/src/java/org/sakaiproject: chat/impl chat2/model/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 08:31:45 2007\nX-DSPAM-Confidence: 0.9850\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39253\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-14 08:23:28 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39253\n\nModified:\nchat/branches/oncourse_2-4-x/chat-impl/impl/src/java/org/sakaiproject/chat/impl/BaseChatService.java\nchat/branches/oncourse_2-4-x/chat-impl/impl/src/java/org/sakaiproject/chat2/model/impl/ChatEntityProducer.java\nLog:\nSAK-12433 => svn merge -r39220:39221 https://source.sakaiproject.org/svn/chat/trunk, svn merge -r39221:39222 https://source.sakaiproject.org/svn/chat/tr\nunk\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Fri Dec 14 03:31:09 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 14 Dec 2007 03:31:09 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 14 Dec 2007 03:31:09 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby godsend.mail.umich.edu () with ESMTP id lBE8V8io020306;\n\tFri, 14 Dec 2007 03:31:08 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 47623F47.A8D2D.21936 ; \n\t14 Dec 2007 03:31:06 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5946C9DFFC;\n\tFri, 14 Dec 2007 08:30:01 +0000 (GMT)\nMessage-ID: <200712140822.lBE8Mml0011223@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 724\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 08:29:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2D5B733141\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 08:30:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBE8MoMm011225\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 03:22:50 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBE8Mml0011223\n\tfor source@collab.sakaiproject.org; Fri, 14 Dec 2007 03:22:48 -0500\nDate: Fri, 14 Dec 2007 03:22:48 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec 14 03:31:09 2007\nX-DSPAM-Confidence: 0.8433\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39252\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-12-14 03:22:26 -0500 (Fri, 14 Dec 2007)\nNew Revision: 39252\n\nModified:\nreference/branches/sakai_2-5-x/library/src/webapp/js/headscripts.js\nsearch/branches/sakai_2-5-x/search-tool/tool/src/webapp/scripts/search.js\nLog:\nSAK-11014 revert changes need to propegate to branch\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Thu Dec 13 21:22:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 21:22:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 21:22:17 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby mission.mail.umich.edu () with ESMTP id lBE2MGGl023121;\n\tThu, 13 Dec 2007 21:22:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4761E8C8.CF9D0.26898 ; \n\t13 Dec 2007 21:22:03 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9C1F99DBB9;\n\tFri, 14 Dec 2007 02:22:10 +0000 (GMT)\nMessage-ID: <200712140213.lBE2Dc5J011017@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 670\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 02:21:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 127D638602\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 02:21:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBE2Dc17011019\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 21:13:38 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBE2Dc5J011017\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 21:13:38 -0500\nDate: Thu, 13 Dec 2007 21:13:38 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 21:22:17 2007\nX-DSPAM-Confidence: 0.8426\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39251\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-12-13 21:13:33 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39251\n\nModified:\ngradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/Assignment.java\ngradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java\ngradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookDefinition.java\ngradebook/trunk/service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sakai2impl/GradebookEntityProducer.java\nLog:\nGradebook - unmerging SAK-12433, r39236, r39235, r39234, r39232\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Thu Dec 13 21:22:01 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 21:22:01 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 21:22:01 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby faithful.mail.umich.edu () with ESMTP id lBE2M0RP001427;\n\tThu, 13 Dec 2007 21:22:00 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 4761E8B4.9FDF3.9709 ; \n\t13 Dec 2007 21:21:43 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E50FB760C4;\n\tFri, 14 Dec 2007 02:21:41 +0000 (GMT)\nMessage-ID: <200712140213.lBE2DBUg011005@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 442\n          for <source@collab.sakaiproject.org>;\n          Fri, 14 Dec 2007 02:20:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CE0673828D\n\tfor <source@collab.sakaiproject.org>; Fri, 14 Dec 2007 02:21:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBE2DBF2011007\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 21:13:11 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBE2DBUg011005\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 21:13:11 -0500\nDate: Thu, 13 Dec 2007 21:13:11 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39250 - in gradebook/trunk/helper-app/src: java/org/sakaiproject/gradebook/tool/entity webapp/WEB-INF\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 21:22:01 2007\nX-DSPAM-Confidence: 0.8467\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39250\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-12-13 21:12:51 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39250\n\nAdded:\ngradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/entity/GradebookEntryEntityProvider.java\nRemoved:\ngradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/entity/GradebookEntryEntityProducer.java\nModified:\ngradebook/trunk/helper-app/src/webapp/WEB-INF/applicationContext.xml\ngradebook/trunk/helper-app/src/webapp/WEB-INF/web.xml\nLog:\nNOJIRA Working on getting the EB to work from just a webapp.  Not quite there yet.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom louis@media.berkeley.edu Thu Dec 13 18:33:07 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 18:33:07 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 18:33:07 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby casino.mail.umich.edu () with ESMTP id lBDNX702032532;\n\tThu, 13 Dec 2007 18:33:07 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 4761C12B.D7B8F.23680 ; \n\t13 Dec 2007 18:33:02 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A41259DAA3;\n\tThu, 13 Dec 2007 23:32:59 +0000 (GMT)\nMessage-ID: <200712132324.lBDNOio3010784@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 725\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 23:32:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DE7853858D\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 23:32:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDNOibw010786\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 18:24:44 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDNOio3010784\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 18:24:44 -0500\nDate: Thu, 13 Dec 2007 18:24:44 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: louis@media.berkeley.edu\nSubject: [sakai] svn commit: r39249 - bspace/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 18:33:07 2007\nX-DSPAM-Confidence: 0.6940\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39249\n\nAuthor: louis@media.berkeley.edu\nDate: 2007-12-13 18:24:39 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39249\n\nAdded:\nbspace/assignment/post-2-4/\nLog:\nCopied remotely\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom louis@media.berkeley.edu Thu Dec 13 18:32:32 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 18:32:32 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 18:32:32 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby score.mail.umich.edu () with ESMTP id lBDNWVPa022696;\n\tThu, 13 Dec 2007 18:32:31 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 4761C109.18906.26420 ; \n\t13 Dec 2007 18:32:27 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6D3639DAA1;\n\tThu, 13 Dec 2007 23:32:27 +0000 (GMT)\nMessage-ID: <200712132324.lBDNOB8V010772@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 300\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 23:32:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 89DCC3858D\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 23:32:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDNOCuP010774\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 18:24:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDNOB8V010772\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 18:24:11 -0500\nDate: Thu, 13 Dec 2007 18:24:11 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: louis@media.berkeley.edu\nSubject: [sakai] svn commit: r39248 - bspace/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 18:32:32 2007\nX-DSPAM-Confidence: 0.6937\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39248\n\nAuthor: louis@media.berkeley.edu\nDate: 2007-12-13 18:24:07 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39248\n\nAdded:\nbspace/assignment/old-post-2-4/\nRemoved:\nbspace/assignment/post-2-4/\nLog:\nRenamed remotely\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ktsao@stanford.edu Thu Dec 13 18:25:49 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 18:25:49 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 18:25:49 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby flawless.mail.umich.edu () with ESMTP id lBDNPmlY022958;\n\tThu, 13 Dec 2007 18:25:48 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4761BF77.979DB.9633 ; \n\t13 Dec 2007 18:25:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4A2396DF23;\n\tThu, 13 Dec 2007 23:25:44 +0000 (GMT)\nMessage-ID: <200712132317.lBDNHTZm010752@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 346\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 23:25:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 597053858D\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 23:25:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDNHT9H010754\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 18:17:29 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDNHTZm010752\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 18:17:29 -0500\nDate: Thu, 13 Dec 2007 18:17:29 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ktsao@stanford.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ktsao@stanford.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 18:25:49 2007\nX-DSPAM-Confidence: 0.9816\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39247\n\nAuthor: ktsao@stanford.edu\nDate: 2007-12-13 18:17:14 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39247\n\nModified:\nsam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/TotalScoreUpdateListener.java\nsam/trunk/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacadeQueries.java\nsam/trunk/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacadeQueriesAPI.java\nsam/trunk/samigo-services/src/java/org/sakaiproject/tool/assessment/services/GradingService.java\nLog:\nSAK-12098\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Thu Dec 13 18:11:24 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 18:11:24 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 18:11:24 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby faithful.mail.umich.edu () with ESMTP id lBDNBNod031831;\n\tThu, 13 Dec 2007 18:11:23 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4761BC15.C0CD0.10749 ; \n\t13 Dec 2007 18:11:20 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 792359DA49;\n\tThu, 13 Dec 2007 23:11:16 +0000 (GMT)\nMessage-ID: <200712132303.lBDN36rA010719@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 617\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 23:10:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0A636385F7\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 23:10:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDN376Q010721\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 18:03:07 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDN36rA010719\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 18:03:06 -0500\nDate: Thu, 13 Dec 2007 18:03:06 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [sakai] svn commit: r39246 - in user/trunk/user-impl/integration-test/src/test: java/org/sakaiproject/user/impl resources resources/nocache\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 18:11:24 2007\nX-DSPAM-Confidence: 0.7563\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39246\n\nAuthor: ray@media.berkeley.edu\nDate: 2007-12-13 18:03:01 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39246\n\nAdded:\nuser/trunk/user-impl/integration-test/src/test/resources/nocache/\nuser/trunk/user-impl/integration-test/src/test/resources/nocache/sakai.properties\nModified:\nuser/trunk/user-impl/integration-test/src/test/java/org/sakaiproject/user/impl/AuthenticatedUserProviderTest.java\nLog:\nSAK-12435 Add test code demonstrating how a user provider might create and update Sakai-stored user records (with a certain amount of hoop-jumping)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Thu Dec 13 18:09:24 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 18:09:24 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 18:09:24 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby sleepers.mail.umich.edu () with ESMTP id lBDN9NvG017517;\n\tThu, 13 Dec 2007 18:09:23 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 4761BB98.D0F65.23422 ; \n\t13 Dec 2007 18:09:18 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 90A378405E;\n\tThu, 13 Dec 2007 23:09:12 +0000 (GMT)\nMessage-ID: <200712132301.lBDN1AOr010707@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 892\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 23:09:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A938B385F7\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 23:08:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDN1AEB010709\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 18:01:10 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDN1AOr010707\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 18:01:10 -0500\nDate: Thu, 13 Dec 2007 18:01:10 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39245 - master/trunk\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 18:09:24 2007\nX-DSPAM-Confidence: 0.9794\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39245\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-13 18:01:06 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39245\n\nModified:\nmaster/trunk/pom.xml\nLog:\nSAK-12454\nAdded Jackrabbit version\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Thu Dec 13 18:06:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 18:06:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 18:06:17 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby godsend.mail.umich.edu () with ESMTP id lBDN6HKN008003;\n\tThu, 13 Dec 2007 18:06:17 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4761BAE3.31811.2690 ; \n\t13 Dec 2007 18:06:14 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id ECCFC8405E;\n\tThu, 13 Dec 2007 23:06:11 +0000 (GMT)\nMessage-ID: <200712132258.lBDMw87E010687@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 984\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 23:05:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 308EA385F7\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 23:05:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDMw87W010689\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 17:58:08 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDMw87E010687\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 17:58:08 -0500\nDate: Thu, 13 Dec 2007 17:58:08 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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/!\n 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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 18:06:17 2007\nX-DSPAM-Confidence: 0.7603\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39244\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-13 17:57:08 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39244\n\nAdded:\ncontent/trunk/content-jcr-migration-api/\ncontent/trunk/content-jcr-migration-api/.classpath\ncontent/trunk/content-jcr-migration-api/.project\ncontent/trunk/content-jcr-migration-api/pom.xml\ncontent/trunk/content-jcr-migration-api/src/\ncontent/trunk/content-jcr-migration-api/src/java/\ncontent/trunk/content-jcr-migration-api/src/java/org/\ncontent/trunk/content-jcr-migration-api/src/java/org/sakaiproject/\ncontent/trunk/content-jcr-migration-api/src/java/org/sakaiproject/content/\ncontent/trunk/content-jcr-migration-api/src/java/org/sakaiproject/content/migration/\ncontent/trunk/content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api/\ncontent/trunk/content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api/CHStoJCRMigrator.java\ncontent/trunk/content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api/ContentToJCRCopier.java\ncontent/trunk/content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api/MigrationStatusReporter.java\ncontent/trunk/content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api/RequestThreadServiceSwitcher.java\ncontent/trunk/content-jcr-migration-impl/\ncontent/trunk/content-jcr-migration-impl/.classpath\ncontent/trunk/content-jcr-migration-impl/.project\ncontent/trunk/content-jcr-migration-impl/.settings/\ncontent/trunk/content-jcr-migration-impl/.settings/org.eclipse.jdt.core.prefs\ncontent/trunk/content-jcr-migration-impl/pom.xml\ncontent/trunk/content-jcr-migration-impl/src/\ncontent/trunk/content-jcr-migration-impl/src/java/\ncontent/trunk/content-jcr-migration-impl/src/java/org/\ncontent/trunk/content-jcr-migration-impl/src/java/org/sakaiproject/\ncontent/trunk/content-jcr-migration-impl/src/java/org/sakaiproject/content/\ncontent/trunk/content-jcr-migration-impl/src/java/org/sakaiproject/content/migration/\ncontent/trunk/content-jcr-migration-impl/src/java/org/sakaiproject/content/migration/CHStoJCRMigratorImpl.java\ncontent/trunk/content-jcr-migration-impl/src/java/org/sakaiproject/content/migration/ContentToJCRCopierImpl.java\ncontent/trunk/content-jcr-migration-impl/src/java/org/sakaiproject/content/migration/MigrationConstants.java\ncontent/trunk/content-jcr-migration-impl/src/java/org/sakaiproject/content/migration/MigrationInProgressObserver.java\ncontent/trunk/content-jcr-migration-impl/src/java/org/sakaiproject/content/migration/MigrationSqlQueries.java\ncontent/trunk/content-jcr-migration-impl/src/java/org/sakaiproject/content/migration/MigrationStatusReporterImpl.java\ncontent/trunk/content-jcr-migration-impl/src/java/org/sakaiproject/content/migration/MigrationTableSqlReader.java\ncontent/trunk/content-jcr-migration-impl/src/java/org/sakaiproject/content/migration/ThingToMigrate.java\ncontent/trunk/content-jcr-migration-impl/src/sql/\ncontent/trunk/content-jcr-migration-impl/src/sql/mysql/\ncontent/trunk/content-jcr-migration-impl/src/sql/mysql/setup-migration-dbtables.sql\ncontent/trunk/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/ContentHostingTargetSource.java\nModified:\ncontent/trunk/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingService.java\ncontent/trunk/content-impl-jcr/impl/pom.xml\ncontent/trunk/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRContentService.java\ncontent/trunk/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRStorage.java\ncontent/trunk/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRStorageUser.java\ncontent/trunk/content-impl-jcr/pack/pom.xml\ncontent/trunk/content-impl-jcr/pack/src/webapp/WEB-INF/components-jcr.xml\ncontent/trunk/content-impl-jcr/pack/src/webapp/WEB-INF/components.xml\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java\ncontent/trunk/content-impl/pack/src/webapp/WEB-INF/components.xml\ncontent/trunk/contentmultiplex-impl/.classpath\ncontent/trunk/contentmultiplex-impl/impl/pom.xml\ncontent/trunk/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/ContentHostingMultiplexService.java\ncontent/trunk/pom.xml\nLog:\nSAK-12454\n\nMerge of CHS-JCR intro trunk containing SAK-12105 fixes and modifications to make sakai.properties work\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Thu Dec 13 18:04:40 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 18:04:40 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 18:04:40 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby godsend.mail.umich.edu () with ESMTP id lBDN4cWm007389;\n\tThu, 13 Dec 2007 18:04:38 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 4761BA80.BD402.20457 ; \n\t13 Dec 2007 18:04:35 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 680649DA49;\n\tThu, 13 Dec 2007 23:04:31 +0000 (GMT)\nMessage-ID: <200712132256.lBDMuT5U010675@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 621\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 23:04:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3B00F385F7\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 23:04:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDMuT8B010677\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 17:56:29 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDMuT5U010675\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 17:56:29 -0500\nDate: Thu, 13 Dec 2007 17:56:29 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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!\n /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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 18:04:40 2007\nX-DSPAM-Confidence: 0.8464\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39243\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-13 17:55:15 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39243\n\nAdded:\njcr/trunk/jackrabbit-impl/\njcr/trunk/jackrabbit-impl/impl/\njcr/trunk/jackrabbit-impl/impl/.classpath\njcr/trunk/jackrabbit-impl/impl/.project\njcr/trunk/jackrabbit-impl/impl/.settings/\njcr/trunk/jackrabbit-impl/impl/.settings/org.eclipse.jdt.core.prefs\njcr/trunk/jackrabbit-impl/impl/pom.xml\njcr/trunk/jackrabbit-impl/impl/src/\njcr/trunk/jackrabbit-impl/impl/src/bundle/\njcr/trunk/jackrabbit-impl/impl/src/java/\njcr/trunk/jackrabbit-impl/impl/src/java/org/\njcr/trunk/jackrabbit-impl/impl/src/java/org/apache/\njcr/trunk/jackrabbit-impl/impl/src/java/org/apache/jackrabbit/\njcr/trunk/jackrabbit-impl/impl/src/java/org/apache/jackrabbit/core/\njcr/trunk/jackrabbit-impl/impl/src/java/org/apache/jackrabbit/core/journal/\njcr/trunk/jackrabbit-impl/impl/src/java/org/apache/jackrabbit/core/journal/SakaiDatabaseJournal.java\njcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/\njcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/\njcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/api/\njcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/api/internal/\njcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/api/internal/Preload.java\njcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/api/internal/SakaiUserPrincipal.java\njcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/api/internal/StartupAction.java\njcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/\njcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/JCRAnonymousPrincipal.java\njcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/JCRRegistrationServiceImpl.java\njcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/JCRServiceImpl.java\njcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/JCRSystemPrincipal.java\njcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/NodeTypes.xml\njcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/RepositoryBuilder.java\njcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/RepositoryConfig.xml\njcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/SessionHolder.java\njcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/UnboundJCRServiceImpl.java\njcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/sakai/\njcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/sakai/JCRSecurityServiceAdapterImpl.java\njcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/sakai/SakaiAccessManager.java\njcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/sakai/SakaiJCRCredentials.java\njcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/sakai/SakaiLoginModule.java\njcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/sakai/SakaiPersistanceManager.java\njcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/sakai/SakaiRepositoryStartup.java\njcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/sakai/SakaiUserPrincipalImpl.java\njcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/jackrabbit/test.xml\njcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/preload/\njcr/trunk/jackrabbit-impl/impl/src/java/org/sakaiproject/jcr/preload/Dumper.java\njcr/trunk/jackrabbit-impl/impl/src/test/\njcr/trunk/jackrabbit-impl/impl/src/test/log4j.properties\njcr/trunk/jackrabbit-impl/impl/src/test/org/\njcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/\njcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/\njcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/\njcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/ExportDocViewTestData.java\njcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/LoadRepository.java\njcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/NodeTestData.java\njcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/PropertyTestData.java\njcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/QueryTestData.java\njcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/RepositoryConfig.xml\njcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/SakaiRepositoryStub.java\njcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/TestAll.java\njcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/TestNodeTypes.xml\njcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/mock/\njcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/mock/MockComponentManager.java\njcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/mock/MockFunctionManager.java\njcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/mock/MockSakaiAccessManager.java\njcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/mock/MockSakaiLoginModule.java\njcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/mock/MockSecurityService.java\njcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/mock/MockServerConfiguratonService.java\njcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/mock/MockSqlService.java\njcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/mock/MockTestUser.java\njcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/mock/MockThreadLocalManager.java\njcr/trunk/jackrabbit-impl/impl/src/test/org/sakaiproject/jcr/test/mock/MockUserDirectoryService.java\njcr/trunk/jackrabbit-impl/impl/src/test/repositoryStubImpl.properties\njcr/trunk/jackrabbit-impl/pack/\njcr/trunk/jackrabbit-impl/pack/.project\njcr/trunk/jackrabbit-impl/pack/.settings/\njcr/trunk/jackrabbit-impl/pack/.settings/org.eclipse.jdt.core.prefs\njcr/trunk/jackrabbit-impl/pack/pom.xml\njcr/trunk/jackrabbit-impl/pack/src/\njcr/trunk/jackrabbit-impl/pack/src/webapp/\njcr/trunk/jackrabbit-impl/pack/src/webapp/WEB-INF/\njcr/trunk/jackrabbit-impl/pack/src/webapp/WEB-INF/components.xml\njcr/trunk/jackrabbit-impl/pack/src/webapp/WEB-INF/preloadcontent.xml\njcr/trunk/jackrabbit-impl/pom.xml\njcr/trunk/jcr-util/\njcr/trunk/jcr-util/.classpath\njcr/trunk/jcr-util/.project\njcr/trunk/jcr-util/.settings/\njcr/trunk/jcr-util/.settings/org.eclipse.jdt.core.prefs\njcr/trunk/jcr-util/pom.xml\njcr/trunk/jcr-util/project.xml\njcr/trunk/jcr-util/src/\njcr/trunk/jcr-util/src/java/\njcr/trunk/jcr-util/src/java/org/\njcr/trunk/jcr-util/src/java/org/sakaiproject/\njcr/trunk/jcr-util/src/java/org/sakaiproject/jcr/\njcr/trunk/jcr-util/src/java/org/sakaiproject/jcr/util/\njcr/trunk/jcr-util/src/java/org/sakaiproject/jcr/util/AdditionalNodeTypes.java\nModified:\njcr/trunk/jcr-api/api/src/java/org/sakaiproject/jcr/api/JCRService.java\njcr/trunk/pom.xml\nLog:\nSAK-12454\n\nMerge of jackrabbit provider into trunk\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Thu Dec 13 18:00:12 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 18:00:12 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 18:00:12 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby fan.mail.umich.edu () with ESMTP id lBDN0AYG014604;\n\tThu, 13 Dec 2007 18:00:10 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 4761B975.8A676.5055 ; \n\t13 Dec 2007 18:00:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 46A768405E;\n\tThu, 13 Dec 2007 23:00:04 +0000 (GMT)\nMessage-ID: <200712132251.lBDMpuY4010650@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 293\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 22:59:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 21AF6385FE\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 22:59:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDMpujq010652\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 17:51:56 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDMpuY4010650\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 17:51:56 -0500\nDate: Thu, 13 Dec 2007 17:51:56 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39242 - sakai-mock/trunk/src/main/java/org/sakaiproject/mock/service\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 18:00:12 2007\nX-DSPAM-Confidence: 0.9814\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39242\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-13 17:51:52 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39242\n\nModified:\nsakai-mock/trunk/src/main/java/org/sakaiproject/mock/service/SiteService.java\nLog:\nSAK-12324\n\nFixed build \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Thu Dec 13 16:57:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 16:57:53 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 16:57:53 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby sleepers.mail.umich.edu () with ESMTP id lBDLvoLY011929;\n\tThu, 13 Dec 2007 16:57:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 4761AAD9.ACB33.649 ; \n\t13 Dec 2007 16:57:48 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2A4929D0CC;\n\tThu, 13 Dec 2007 21:57:43 +0000 (GMT)\nMessage-ID: <200712132149.lBDLnexo010597@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 910\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 21:57:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2C78D385CB\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 21:57:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDLneCw010599\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 16:49:40 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDLnexo010597\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 16:49:40 -0500\nDate: Thu, 13 Dec 2007 16:49:40 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39241 - msgcntr/branches/oncourse_opc_122007/messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 16:57:53 2007\nX-DSPAM-Confidence: 0.9804\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39241\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-13 16:49:40 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39241\n\nModified:\nmsgcntr/branches/oncourse_opc_122007/messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/DiscussionForumServiceImpl.java\nLog:\nSAK-12433 => svn merge -r39215:39216 https://source.sakaiproject.org/svn/msgcntr/trunk/\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom arwhyte@umich.edu Thu Dec 13 16:48:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 16:48:42 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 16:48:42 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby jacknife.mail.umich.edu () with ESMTP id lBDLmf8I029365;\n\tThu, 13 Dec 2007 16:48:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4761A8B2.E4EAF.20431 ; \n\t13 Dec 2007 16:48:37 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E51449D0CC;\n\tThu, 13 Dec 2007 21:48:37 +0000 (GMT)\nMessage-ID: <200712132140.lBDLeQc5010547@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 609\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 21:48:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9CFAD385D3\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 21:48:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDLeQr7010549\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 16:40:26 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDLeQc5010547\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 16:40:26 -0500\nDate: Thu, 13 Dec 2007 16:40:26 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: arwhyte@umich.edu\nSubject: [sakai] svn commit: r39240 - reference/trunk/docs/releaseweb\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 16:48:42 2007\nX-DSPAM-Confidence: 0.9837\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39240\n\nAuthor: arwhyte@umich.edu\nDate: 2007-12-13 16:39:41 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39240\n\nModified:\nreference/trunk/docs/releaseweb/index.html\nLog:\nPrep for 2.5\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom arwhyte@umich.edu Thu Dec 13 16:47:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 16:47:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 16:47:25 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby faithful.mail.umich.edu () with ESMTP id lBDLlOtx021532;\n\tThu, 13 Dec 2007 16:47:24 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 4761A863.42440.17819 ; \n\t13 Dec 2007 16:47:18 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2F1EC980F0;\n\tThu, 13 Dec 2007 21:47:18 +0000 (GMT)\nMessage-ID: <200712132138.lBDLcs4m010535@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 678\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 21:46:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CF1E6385D3\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 21:46:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDLcsOS010537\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 16:38:54 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDLcs4m010535\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 16:38:54 -0500\nDate: Thu, 13 Dec 2007 16:38:54 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: arwhyte@umich.edu\nSubject: [sakai] svn commit: r39239 - reference/trunk/docs/releaseweb/styles\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 16:47:25 2007\nX-DSPAM-Confidence: 0.9819\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39239\n\nAuthor: arwhyte@umich.edu\nDate: 2007-12-13 16:38:12 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39239\n\nModified:\nreference/trunk/docs/releaseweb/styles/stylesr.css\nLog:\nadded <th> style\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ostermmg@whitman.edu Thu Dec 13 16:41:21 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 16:41:21 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 16:41:21 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby godsend.mail.umich.edu () with ESMTP id lBDLfKTk028447;\n\tThu, 13 Dec 2007 16:41:20 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 4761A6FB.9463D.13982 ; \n\t13 Dec 2007 16:41:18 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EAD919D654;\n\tThu, 13 Dec 2007 21:41:07 +0000 (GMT)\nMessage-ID: <200712132132.lBDLWx1c010522@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 509\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 21:40:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6F075385CF\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 21:40:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDLWxrB010524\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 16:32:59 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDLWx1c010522\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 16:32:59 -0500\nDate: Thu, 13 Dec 2007 16:32:59 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ostermmg@whitman.edu\nSubject: [sakai] svn commit: r39238 - content/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 16:41:21 2007\nX-DSPAM-Confidence: 0.8502\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39238\n\nAuthor: ostermmg@whitman.edu\nDate: 2007-12-13 16:32:56 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39238\n\nModified:\ncontent/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java\nLog:\nsvn merge -c39208 https://source.sakaiproject.org/svn/content/trunk/ .\nU    content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java\n\nsvn log -r39208 https://source.sakaiproject.org/svn/content/trunk/\n------------------------------------------------------------------------\nr39208 | jimeng@umich.edu | 2007-12-13 08:08:24 -0800 (Thu, 13 Dec 2007) | 3 lines\n\nSAK-10042\nFile-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.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Dec 13 15:18:59 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 15:18:59 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 15:18:59 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby score.mail.umich.edu () with ESMTP id lBDKIwgA020793;\n\tThu, 13 Dec 2007 15:18:58 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 476193AA.8E3EE.30919 ; \n\t13 Dec 2007 15:18:53 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8431F9D768;\n\tThu, 13 Dec 2007 20:18:45 +0000 (GMT)\nMessage-ID: <200712132010.lBDKAVOe010336@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 556\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 20:18:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6974338492\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 20:18:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDKAVp4010338\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 15:10:31 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDKAVOe010336\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 15:10:31 -0500\nDate: Thu, 13 Dec 2007 15:10:31 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39233 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 15:18:59 2007\nX-DSPAM-Confidence: 0.9863\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39233\n\nAuthor: zqian@umich.edu\nDate: 2007-12-13 15:10:29 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39233\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nFix to SAK-12422: Assignments upload all (grades.csv) does not handle DOS line breaks correctly\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Dec 13 15:14:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 15:14:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 15:14:19 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby faithful.mail.umich.edu () with ESMTP id lBDKEIm7003992;\n\tThu, 13 Dec 2007 15:14:18 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 47619293.F09EB.2396 ; \n\t13 Dec 2007 15:14:14 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E164A8098C;\n\tThu, 13 Dec 2007 20:14:08 +0000 (GMT)\nMessage-ID: <200712132005.lBDK5oMb010288@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 414\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 20:13:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5469D3839F\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 20:13:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDK5oPJ010290\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 15:05:50 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDK5oMb010288\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 15:05:50 -0500\nDate: Thu, 13 Dec 2007 15:05:50 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39229 - assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 15:14:19 2007\nX-DSPAM-Confidence: 0.9860\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39229\n\nAuthor: zqian@umich.edu\nDate: 2007-12-13 15:05:48 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39229\n\nModified:\nassignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nfix to SAK-12422: Assignments upload all (grades.csv) does not handle DOS line breaks correctly\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Thu Dec 13 15:06:14 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 15:06:14 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 15:06:14 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby fan.mail.umich.edu () with ESMTP id lBDK6EY1014581;\n\tThu, 13 Dec 2007 15:06:14 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 476190B1.2934E.25237 ; \n\t13 Dec 2007 15:06:11 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B1EBD9D4FF;\n\tThu, 13 Dec 2007 20:06:07 +0000 (GMT)\nMessage-ID: <200712131958.lBDJw0a7010214@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 174\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 20:05:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 164EF3839F\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 20:05:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDJw0b3010216\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 14:58:00 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDJw0a7010214\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 14:58:00 -0500\nDate: Thu, 13 Dec 2007 14:58:00 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r39223 - content/branches/sakai_2-5-x/content-tool/tool/src/java/org/sakaiproject/content/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 15:06:14 2007\nX-DSPAM-Confidence: 0.7004\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39223\n\nAuthor: mmmay@indiana.edu\nDate: 2007-12-13 14:57:58 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39223\n\nModified:\ncontent/branches/sakai_2-5-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java\nLog:\nsvn merge -r 39207:39208 https://source.sakaiproject.org/svn/content/trunk\nU    content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java\nin-143-196:~/java/2-5/sakai_2-5-x/content mmmay$ svn log -r 39207:39208 https://source.sakaiproject.org/svn/content/trunk\n------------------------------------------------------------------------\nr39208 | jimeng@umich.edu | 2007-12-13 11:08:24 -0500 (Thu, 13 Dec 2007) | 3 lines\n\nSAK-10042\nFile-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.\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Thu Dec 13 14:59:52 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 14:59:52 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 14:59:52 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby faithful.mail.umich.edu () with ESMTP id lBDJxp2C028306;\n\tThu, 13 Dec 2007 14:59:51 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 47618F26.CBA.12804 ; \n\t13 Dec 2007 14:59:37 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B22DC9D603;\n\tThu, 13 Dec 2007 19:49:33 +0000 (GMT)\nMessage-ID: <200712131951.lBDJpNf4010145@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 521\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 19:49:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DDAF938327\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 19:59:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDJpNwF010147\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 14:51:23 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDJpNf4010145\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 14:51:23 -0500\nDate: Thu, 13 Dec 2007 14:51:23 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r39220 - portal/branches/sakai_2-5-x/portal-impl/impl/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 14:59:52 2007\nX-DSPAM-Confidence: 0.7615\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39220\n\nAuthor: mmmay@indiana.edu\nDate: 2007-12-13 14:51:22 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39220\n\nModified:\nportal/branches/sakai_2-5-x/portal-impl/impl/src/bundle/sitenav.properties\nLog:\nsvn merge -r 39177:39178 https://source.sakaiproject.org/svn/portal/trunk\nU    portal-impl/impl/src/bundle/sitenav.properties\nin-143-196:~/java/2-5/sakai_2-5-x/portal mmmay$ svn log -r 39177:39178 https://source.sakaiproject.org/svn/portal/trunk\n------------------------------------------------------------------------\nr39177 | ian@caret.cam.ac.uk | 2007-12-13 04:46:48 -0500 (Thu, 13 Dec 2007) | 4 lines\n\nSAK-12112\nPatch Applied\n\n\n------------------------------------------------------------------------\nr39178 | ian@caret.cam.ac.uk | 2007-12-13 04:48:42 -0500 (Thu, 13 Dec 2007) | 4 lines\n\nSAK-12273\nPatch applied\n\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gsilver@umich.edu Thu Dec 13 14:58:54 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 14:58:54 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 14:58:54 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby brazil.mail.umich.edu () with ESMTP id lBDJwrRZ029980;\n\tThu, 13 Dec 2007 14:58:53 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 47618EF3.C4578.9263 ; \n\t13 Dec 2007 14:58:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1E08F9D652;\n\tThu, 13 Dec 2007 19:48:37 +0000 (GMT)\nMessage-ID: <200712131950.lBDJoIOF010133@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 26\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 19:48:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 09F7138327\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 19:58:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDJoJSJ010135\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 14:50:19 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDJoIOF010133\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 14:50:19 -0500\nDate: Thu, 13 Dec 2007 14:50:19 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gsilver@umich.edu\nSubject: [sakai] svn commit: r39219 - content/trunk/content-tool/tool/src/webapp/vm/content\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 14:58:54 2007\nX-DSPAM-Confidence: 0.8435\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39219\n\nAuthor: gsilver@umich.edu\nDate: 2007-12-13 14:50:17 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39219\n\nModified:\ncontent/trunk/content-tool/tool/src/webapp/vm/content/sakai_resources_list.vm\nLog:\nSAK-12442\nhttp://jira.sakaiproject.org/jira/browse/SAK-12442\n- tweak the default sakadojo theme for resources actions\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gsilver@umich.edu Thu Dec 13 14:58:46 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 14:58:46 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 14:58:46 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby flawless.mail.umich.edu () with ESMTP id lBDJwjQR007797;\n\tThu, 13 Dec 2007 14:58:45 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 47618EF0.7DDAA.11360 ; \n\t13 Dec 2007 14:58:43 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0667D9D654;\n\tThu, 13 Dec 2007 19:48:36 +0000 (GMT)\nMessage-ID: <200712131950.lBDJoGAN010121@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 475\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 19:48:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 772A038327\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 19:58:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDJoGWF010123\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 14:50:16 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDJoGAN010121\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 14:50:16 -0500\nDate: Thu, 13 Dec 2007 14:50:16 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gsilver@umich.edu\nSubject: [sakai] svn commit: r39218 - in reference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo: . images\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 14:58:46 2007\nX-DSPAM-Confidence: 0.8475\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39218\n\nAuthor: gsilver@umich.edu\nDate: 2007-12-13 14:50:14 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39218\n\nModified:\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/buttonEnabled.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/sakadojo.css\nLog:\nSAK-12442\nhttp://jira.sakaiproject.org/jira/browse/SAK-12442\n- tweak the default sakadojo theme for resources actions\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Thu Dec 13 14:58:26 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 14:58:26 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 14:58:26 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby chaos.mail.umich.edu () with ESMTP id lBDJwQM6012863;\n\tThu, 13 Dec 2007 14:58:26 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 47618ED8.62903.25161 ; \n\t13 Dec 2007 14:58:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 278C29D605;\n\tThu, 13 Dec 2007 19:48:16 +0000 (GMT)\nMessage-ID: <200712131950.lBDJo6XC010109@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 312\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 19:47:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5745E38327\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 19:57:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDJo69L010111\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 14:50:06 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDJo6XC010109\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 14:50:06 -0500\nDate: Thu, 13 Dec 2007 14:50:06 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r39217 - portal/branches/sakai_2-5-x/portal-charon/charon/src/webapp/scripts\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 14:58:26 2007\nX-DSPAM-Confidence: 0.7610\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39217\n\nAuthor: mmmay@indiana.edu\nDate: 2007-12-13 14:50:05 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39217\n\nModified:\nportal/branches/sakai_2-5-x/portal-charon/charon/src/webapp/scripts/portalscripts.js\nLog:\nsvn merge -r 39176:39177 https://source.sakaiproject.org/svn/portal/trunk\nU    portal-charon/charon/src/webapp/scripts/portalscripts.js\nin-143-196:~/java/2-5/sakai_2-5-x/portal mmmay$ svn log -r 39176:39177 https://source.sakaiproject.org/svn/portal/trunk\n------------------------------------------------------------------------\nr39177 | ian@caret.cam.ac.uk | 2007-12-13 04:46:48 -0500 (Thu, 13 Dec 2007) | 4 lines\n\nSAK-12112\nPatch Applied\n\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Thu Dec 13 14:58:10 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 14:58:10 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 14:58:10 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby godsend.mail.umich.edu () with ESMTP id lBDJw9vl003915;\n\tThu, 13 Dec 2007 14:58:09 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 47618ECB.EE50A.24421 ; \n\t13 Dec 2007 14:58:06 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BB1B59D65D;\n\tThu, 13 Dec 2007 19:47:58 +0000 (GMT)\nMessage-ID: <200712131918.lBDJI68Z009927@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 174\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 19:47:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 59F9132ABE\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 19:25:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDJI6fR009929\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 14:18:06 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDJI68Z009927\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 14:18:06 -0500\nDate: Thu, 13 Dec 2007 14:18:06 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r39215 - reference/branches/sakai_2-5-x/licenses\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 14:58:10 2007\nX-DSPAM-Confidence: 0.7556\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39215\n\nAuthor: mmmay@indiana.edu\nDate: 2007-12-13 14:18:05 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39215\n\nAdded:\nreference/branches/sakai_2-5-x/licenses/jsr170-api.license.txt\nLog:\nvn merge -r 39213:39214 https://source.sakaiproject.org/svn/reference/trunk\nA    licenses/jsr170-api.license.txt  SAK-1194\t\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Dec 13 14:42:45 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 14:42:45 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 14:42:45 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby fan.mail.umich.edu () with ESMTP id lBDJgih0001236;\n\tThu, 13 Dec 2007 14:42:44 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 47618B21.3ED4A.3413 ; \n\t13 Dec 2007 14:42:28 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2D33A9D5F3;\n\tThu, 13 Dec 2007 19:32:24 +0000 (GMT)\nMessage-ID: <200712131904.lBDJ4xJw009892@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 167\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 19:31:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DC20438499\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 19:12:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDJ4x64009894\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 14:05:00 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDJ4xJw009892\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 14:04:59 -0500\nDate: Thu, 13 Dec 2007 14:04:59 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39213 - in authz/trunk/authz-impl/impl/src/sql: hsqldb mssql mysql oracle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 14:42:45 2007\nX-DSPAM-Confidence: 0.9849\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39213\n\nAuthor: zqian@umich.edu\nDate: 2007-12-13 14:04:57 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39213\n\nModified:\nauthz/trunk/authz-impl/impl/src/sql/hsqldb/sakai_realm.sql\nauthz/trunk/authz-impl/impl/src/sql/mssql/sakai_realm.sql\nauthz/trunk/authz-impl/impl/src/sql/mysql/sakai_realm.sql\nauthz/trunk/authz-impl/impl/src/sql/oracle/sakai_realm.sql\nLog:\nset 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\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Dec 13 14:41:44 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 14:41:44 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 14:41:44 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby fan.mail.umich.edu () with ESMTP id lBDJfiiB000665;\n\tThu, 13 Dec 2007 14:41:44 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 47618AEF.2E4F2.5241 ; \n\t13 Dec 2007 14:41:38 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6FC909D460;\n\tThu, 13 Dec 2007 19:31:25 +0000 (GMT)\nMessage-ID: <200712131902.lBDJ2Vc4009867@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 339\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 19:31:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9A1273848E\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 19:10:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDJ2VEC009869\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 14:02:31 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDJ2Vc4009867\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 14:02:31 -0500\nDate: Thu, 13 Dec 2007 14:02:31 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39211 - in site-manage/trunk/site-manage-tool/tool/src: java/org/sakaiproject/site/tool webapp/vm/sitesetup\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 14:41:44 2007\nX-DSPAM-Confidence: 0.7608\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39211\n\nAuthor: zqian@umich.edu\nDate: 2007-12-13 14:02:28 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39211\n\nModified:\nsite-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-type.vm\nLog:\nmerge in SAK-12324 fixes:\n#38981  \tThu Dec 06 03:19:40 MST 2007  \tdavid.horwitz@uct.ac.za  \t SAK-12324 Modifications to site-manage\nFiles Changed\nMODIFY /site-manage/branches/SAK-12324/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nMODIFY /site-manage/branches/SAK-12324/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-type.vm \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Thu Dec 13 14:41:38 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 14:41:38 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 14:41:38 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby flawless.mail.umich.edu () with ESMTP id lBDJfcIZ029695;\n\tThu, 13 Dec 2007 14:41:38 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 47618ADA.4C4DC.11397 ; \n\t13 Dec 2007 14:41:17 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 86B169D52A;\n\tThu, 13 Dec 2007 19:31:11 +0000 (GMT)\nMessage-ID: <200712131906.lBDJ6iEK009904@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 821\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 19:30:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4C6273849B\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 19:14:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDJ6iUL009906\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 14:06:44 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDJ6iEK009904\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 14:06:44 -0500\nDate: Thu, 13 Dec 2007 14:06:44 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r39214 - reference/trunk/licenses\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 14:41:38 2007\nX-DSPAM-Confidence: 0.7563\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39214\n\nAuthor: mmmay@indiana.edu\nDate: 2007-12-13 14:06:43 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39214\n\nAdded:\nreference/trunk/licenses/jsr170-api.license.txt\nLog:\nadd jsr170 license\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Dec 13 14:41:24 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 14:41:24 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 14:41:24 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby jacknife.mail.umich.edu () with ESMTP id lBDJfNP2022184;\n\tThu, 13 Dec 2007 14:41:23 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 47618AD4.83E7.32063 ; \n\t13 Dec 2007 14:41:10 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 97FB59D52D;\n\tThu, 13 Dec 2007 19:31:04 +0000 (GMT)\nMessage-ID: <200712131903.lBDJ3Pnc009880@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 380\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 19:30:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 33BAC38496\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 19:11:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDJ3PWC009882\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 14:03:25 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDJ3Pnc009880\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 14:03:25 -0500\nDate: Thu, 13 Dec 2007 14:03:25 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 14:41:24 2007\nX-DSPAM-Confidence: 0.8511\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39212\n\nAuthor: zqian@umich.edu\nDate: 2007-12-13 14:03:22 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39212\n\nModified:\nsite/trunk/site-api/api/src/java/org/sakaiproject/site/api/SiteService.java\nsite/trunk/site-api/api/src/java/org/sakaiproject/site/cover/SiteService.java\nsite/trunk/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSiteService.java\nLog:\nmerge in SAK-12324 fixes into trunk:\n\n#39019  \tFri Dec 07 00:55:01 MST 2007  \tdavid.horwitz@uct.ac.za  \t SAK-12324 Modify site\nFiles Changed\nMODIFY /site/branches/SAK-12324/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSiteService.java\nMODIFY /site/branches/SAK-12324/site-api/api/src/java/org/sakaiproject/site/api/SiteService.java\nMODIFY /site/branches/SAK-12324/site-api/api/src/java/org/sakaiproject/site/cover/SiteService.java \n\n#39020  \tFri Dec 07 02:53:25 MST 2007  \tdavid.horwitz@uct.ac.za  \t SAK-12324 add the course site logic to allowAddCourseSite(id)\nFiles Changed\nMODIFY /site/branches/SAK-12324/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSiteService.java\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Thu Dec 13 11:57:10 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 11:57:10 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 11:57:10 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby chaos.mail.umich.edu () with ESMTP id lBDGv9RB009616;\n\tThu, 13 Dec 2007 11:57:09 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 4761645E.18068.7561 ; \n\t13 Dec 2007 11:57:04 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2C19E81C39;\n\tThu, 13 Dec 2007 16:56:59 +0000 (GMT)\nMessage-ID: <200712131648.lBDGmwAQ009628@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 544\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 16:56:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3C87E382EF\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 16:56:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDGmwLV009630\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 11:48:58 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDGmwAQ009628\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 11:48:58 -0500\nDate: Thu, 13 Dec 2007 11:48:58 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r39210 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 11:57:10 2007\nX-DSPAM-Confidence: 0.9866\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39210\n\nAuthor: dlhaines@umich.edu\nDate: 2007-12-13 11:48:56 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39210\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties\nLog:\nCTools: update for assignments source location typo 2.4.xQ\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gopal.ramasammycook@gmail.com Thu Dec 13 11:51:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 11:51:42 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 11:51:42 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby chaos.mail.umich.edu () with ESMTP id lBDGpfRV006349;\n\tThu, 13 Dec 2007 11:51:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 47616318.47F92.1615 ; \n\t13 Dec 2007 11:51:39 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5F50E9D256;\n\tThu, 13 Dec 2007 16:51:35 +0000 (GMT)\nMessage-ID: <200712131643.lBDGhToF009605@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 723\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 16:51:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 10513382F1\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 16:51:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDGhT8H009607\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 11:43:29 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDGhToF009605\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 11:43:29 -0500\nDate: Thu, 13 Dec 2007 11:43:29 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f\nTo: source@collab.sakaiproject.org\nFrom: gopal.ramasammycook@gmail.com\nSubject: [sakai] svn commit: r39209 - sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 11:51:42 2007\nX-DSPAM-Confidence: 0.8427\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39209\n\nAuthor: gopal.ramasammycook@gmail.com\nDate: 2007-12-13 11:43:19 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39209\n\nModified:\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacadeQueries.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java\nLog:\nSAK-12065 Group release bug fixes\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Thu Dec 13 11:16:40 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 11:16:40 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 11:16:40 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby godsend.mail.umich.edu () with ESMTP id lBDGGdxB010443;\n\tThu, 13 Dec 2007 11:16:39 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 47615ADC.E457A.28407 ; \n\t13 Dec 2007 11:16:35 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D020B650F8;\n\tThu, 13 Dec 2007 16:16:26 +0000 (GMT)\nMessage-ID: <200712131608.lBDG8PeA009396@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 232\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 16:16:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 34478382D8\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 16:16:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDG8PIE009398\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 11:08:25 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDG8PeA009396\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 11:08:25 -0500\nDate: Thu, 13 Dec 2007 11:08:25 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r39208 - content/trunk/content-tool/tool/src/java/org/sakaiproject/content/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 11:16:40 2007\nX-DSPAM-Confidence: 0.9865\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39208\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-13 11:08:24 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39208\n\nModified:\ncontent/trunk/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java\nLog:\nSAK-10042\nFile-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.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom josrodri@iupui.edu Thu Dec 13 10:54:45 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 10:54:45 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 10:54:45 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby score.mail.umich.edu () with ESMTP id lBDFsjNt025358;\n\tThu, 13 Dec 2007 10:54:45 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 476155B7.85E26.31499 ; \n\t13 Dec 2007 10:54:34 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id AB6AF9D110;\n\tThu, 13 Dec 2007 15:51:30 +0000 (GMT)\nMessage-ID: <200712131546.lBDFkSNf009370@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 404\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 15:51:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 83A9F37ACD\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 15:54:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDFkSt9009372\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 10:46:28 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDFkSNf009370\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:46:28 -0500\nDate: Thu, 13 Dec 2007 10:46:28 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: josrodri@iupui.edu\nSubject: [sakai] svn commit: r39207 - in gradebook/trunk/app/ui/src/webapp: . inc\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 10:54:45 2007\nX-DSPAM-Confidence: 0.9800\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39207\n\nAuthor: josrodri@iupui.edu\nDate: 2007-12-13 10:46:27 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39207\n\nModified:\ngradebook/trunk/app/ui/src/webapp/addAssignment.jsp\ngradebook/trunk/app/ui/src/webapp/inc/bulkNewItems.jspf\nLog:\nSAK-12444, SAK-12287: Redid styling\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom nuno@ufp.pt Thu Dec 13 10:39:01 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 10:39:01 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 10:39:01 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby casino.mail.umich.edu () with ESMTP id lBDFd0xq019973;\n\tThu, 13 Dec 2007 10:39:00 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 4761520E.354C8.24668 ; \n\t13 Dec 2007 10:38:57 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DC39E9D0DB;\n\tThu, 13 Dec 2007 15:35:53 +0000 (GMT)\nMessage-ID: <200712131530.lBDFUb94009352@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 503\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 15:35:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 47FBA37E45\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 15:38:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDFUbVR009354\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 10:30:37 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDFUb94009352\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:30:37 -0500\nDate: Thu, 13 Dec 2007 10:30:37 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f\nTo: source@collab.sakaiproject.org\nFrom: nuno@ufp.pt\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 10:39:01 2007\nX-DSPAM-Confidence: 0.9763\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39206\n\nAuthor: nuno@ufp.pt\nDate: 2007-12-13 10:30:17 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39206\n\nAdded:\nsite-manage/trunk/pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle/Messages_pt_PT.properties\nsite-manage/trunk/site-manage-impl/impl/src/bundle/SectionFields_pt_PT.properties\nsite-manage/trunk/site-manage-tool/tool/src/bundle/membership_pt_PT.properties\nsite-manage/trunk/site-manage-tool/tool/src/bundle/sitebrowser_pt_PT.properties\nsite-manage/trunk/site-manage-tool/tool/src/bundle/sitesetupgeneric_pt_PT.properties\nLog:\nSAK-12044: Add Portuguese translation\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom nuno@ufp.pt Thu Dec 13 10:37:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 10:37:37 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 10:37:37 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby casino.mail.umich.edu () with ESMTP id lBDFbbpk019336;\n\tThu, 13 Dec 2007 10:37:37 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 476151BA.BFA78.20820 ; \n\t13 Dec 2007 10:37:34 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DB33C5EF5E;\n\tThu, 13 Dec 2007 15:34:03 +0000 (GMT)\nMessage-ID: <200712131529.lBDFTGXV009340@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 356\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 15:33:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 27D8F37E3A\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 15:37:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDFTGtP009342\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 10:29:16 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDFTGXV009340\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:29:16 -0500\nDate: Thu, 13 Dec 2007 10:29:16 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f\nTo: source@collab.sakaiproject.org\nFrom: nuno@ufp.pt\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 10:37:37 2007\nX-DSPAM-Confidence: 0.8393\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39205\n\nAuthor: nuno@ufp.pt\nDate: 2007-12-13 10:28:50 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39205\n\nAdded:\nrwiki/trunk/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/Messages_pt_PT.properties\nrwiki/trunk/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/PrepopulatePages_pt_PT.properties\nrwiki/trunk/rwiki-util/radeox/src/bundle/radeox_messages_pt_PT.properties\nrwiki/trunk/rwiki-util/util/src/bundle/uk/ac/cam/caret/sakai/rwiki/utils/bundle/Messages_pt_PT.properties\nLog:\nSAK-12044: Add Portuguese translation\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom nuno@ufp.pt Thu Dec 13 10:36:26 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 10:36:26 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 10:36:26 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby awakenings.mail.umich.edu () with ESMTP id lBDFaPtC012426;\n\tThu, 13 Dec 2007 10:36:25 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 47615171.4D0B9.5693 ; \n\t13 Dec 2007 10:36:20 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 359159D0ED;\n\tThu, 13 Dec 2007 15:32:44 +0000 (GMT)\nMessage-ID: <200712131527.lBDFRa00009328@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 739\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 15:32:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C449337E3A\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 15:35:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDFRa5V009330\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 10:27:36 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDFRa00009328\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:27:36 -0500\nDate: Thu, 13 Dec 2007 10:27:36 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f\nTo: source@collab.sakaiproject.org\nFrom: nuno@ufp.pt\nSubject: [sakai] svn commit: r39204 - velocity/trunk/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 10:36:26 2007\nX-DSPAM-Confidence: 0.9770\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39204\n\nAuthor: nuno@ufp.pt\nDate: 2007-12-13 10:27:30 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39204\n\nAdded:\nvelocity/trunk/tool/src/bundle/velocity-tool_pt_PT.properties\nLog:\nSAK-12044: Add Portuguese translation\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom nuno@ufp.pt Thu Dec 13 10:36:20 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 10:36:20 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 10:36:20 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby fan.mail.umich.edu () with ESMTP id lBDFaJdH023874;\n\tThu, 13 Dec 2007 10:36:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 4761513F.3552C.11923 ; \n\t13 Dec 2007 10:35:31 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 82C359D0E4;\n\tThu, 13 Dec 2007 15:32:11 +0000 (GMT)\nMessage-ID: <200712131526.lBDFQv3u009316@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 586\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 15:31:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DD0AC37E3A\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 15:34:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDFQvKG009318\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 10:26:57 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDFQv3u009316\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:26:57 -0500\nDate: Thu, 13 Dec 2007 10:26:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f\nTo: source@collab.sakaiproject.org\nFrom: nuno@ufp.pt\nSubject: [sakai] svn commit: r39203 - usermembership/trunk/tool/src/bundle/org/sakaiproject/umem/tool/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 10:36:20 2007\nX-DSPAM-Confidence: 0.9736\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39203\n\nAuthor: nuno@ufp.pt\nDate: 2007-12-13 10:26:52 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39203\n\nModified:\nusermembership/trunk/tool/src/bundle/org/sakaiproject/umem/tool/bundle/Messages_pt_PT.properties\nLog:\nSAK-12044: Add Portuguese translation\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom nuno@ufp.pt Thu Dec 13 10:34:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 10:34:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 10:34:51 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby score.mail.umich.edu () with ESMTP id lBDFYmve015155;\n\tThu, 13 Dec 2007 10:34:48 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 47615113.5EBAE.31078 ; \n\t13 Dec 2007 10:34:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 716AA9D0D6;\n\tThu, 13 Dec 2007 15:31:41 +0000 (GMT)\nMessage-ID: <200712131526.lBDFQSiV009304@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 611\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 15:31:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7B87537E3A\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 15:34:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDFQSAa009306\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 10:26:28 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDFQSiV009304\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:26:28 -0500\nDate: Thu, 13 Dec 2007 10:26:28 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f\nTo: source@collab.sakaiproject.org\nFrom: nuno@ufp.pt\nSubject: [sakai] svn commit: r39202 - search/trunk/search-tool/tool/src/bundle/org/sakaiproject/search/tool/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 10:34:51 2007\nX-DSPAM-Confidence: 0.9760\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39202\n\nAuthor: nuno@ufp.pt\nDate: 2007-12-13 10:26:22 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39202\n\nAdded:\nsearch/trunk/search-tool/tool/src/bundle/org/sakaiproject/search/tool/bundle/Messages_pt_PT.properties\nLog:\nSAK-12044: Add Portuguese translation\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom nuno@ufp.pt Thu Dec 13 10:34:12 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 10:34:12 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 10:34:12 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby mission.mail.umich.edu () with ESMTP id lBDFYAHZ016527;\n\tThu, 13 Dec 2007 10:34:10 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 476150E9.CDECF.12146 ; \n\t13 Dec 2007 10:34:05 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 607209D0DE;\n\tThu, 13 Dec 2007 15:31:10 +0000 (GMT)\nMessage-ID: <200712131525.lBDFPJGJ009292@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 705\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 15:30:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0131137E3A\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 15:33:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDFPJlO009294\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 10:25:19 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDFPJGJ009292\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:25:19 -0500\nDate: Thu, 13 Dec 2007 10:25:19 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f\nTo: source@collab.sakaiproject.org\nFrom: nuno@ufp.pt\nSubject: [sakai] svn commit: r39201 - roster/trunk/roster-app/src/bundle/org/sakaiproject/tool/roster/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 10:34:12 2007\nX-DSPAM-Confidence: 0.9761\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39201\n\nAuthor: nuno@ufp.pt\nDate: 2007-12-13 10:25:14 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39201\n\nAdded:\nroster/trunk/roster-app/src/bundle/org/sakaiproject/tool/roster/bundle/Messages_pt_PT.properties\nLog:\nSAK-12044: Add Portuguese translation\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom nuno@ufp.pt Thu Dec 13 10:32:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 10:32:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 10:32:51 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby panther.mail.umich.edu () with ESMTP id lBDFWoj6032659;\n\tThu, 13 Dec 2007 10:32:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 47615097.4585A.7935 ; \n\t13 Dec 2007 10:32:43 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A8A819D0D1;\n\tThu, 13 Dec 2007 15:30:34 +0000 (GMT)\nMessage-ID: <200712131524.lBDFOCPo009268@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 973\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 15:30:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EFAF237E3A\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 15:31:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDFOChb009270\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 10:24:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDFOCPo009268\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:24:12 -0500\nDate: Thu, 13 Dec 2007 10:24:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f\nTo: source@collab.sakaiproject.org\nFrom: nuno@ufp.pt\nSubject: [sakai] svn commit: r39200 - in content/trunk: content-bundles content-impl/impl/src/bundle content-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 10:32:51 2007\nX-DSPAM-Confidence: 0.9790\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39200\n\nAuthor: nuno@ufp.pt\nDate: 2007-12-13 10:23:57 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39200\n\nAdded:\ncontent/trunk/content-bundles/content_pt_PT.properties\ncontent/trunk/content-bundles/types_pt_PT.properties\ncontent/trunk/content-impl/impl/src/bundle/siteemacon_pt_PT.properties\ncontent/trunk/content-tool/tool/src/bundle/helper_pt_PT.properties\nLog:\nSAK-12044: Add Portuguese translation\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom nuno@ufp.pt Thu Dec 13 10:32:29 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 10:32:29 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 10:32:29 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby sleepers.mail.umich.edu () with ESMTP id lBDFWSA3010849;\n\tThu, 13 Dec 2007 10:32:28 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 47615085.443B2.3114 ; \n\t13 Dec 2007 10:32:25 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CD1B09D0D0;\n\tThu, 13 Dec 2007 15:30:24 +0000 (GMT)\nMessage-ID: <200712131522.lBDFMcOk009253@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 224\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 15:30:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id ED01B37E3B\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 15:30:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDFMc32009255\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 10:22:38 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDFMcOk009253\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:22:38 -0500\nDate: Thu, 13 Dec 2007 10:22:38 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f\nTo: source@collab.sakaiproject.org\nFrom: nuno@ufp.pt\nSubject: [sakai] svn commit: r39199 - citations/trunk/citations-util/util/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 10:32:29 2007\nX-DSPAM-Confidence: 0.9757\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39199\n\nAuthor: nuno@ufp.pt\nDate: 2007-12-13 10:22:32 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39199\n\nAdded:\ncitations/trunk/citations-util/util/src/bundle/citations_pt_PT.properties\nLog:\nSAK-12044: Add Portuguese translation\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom nuno@ufp.pt Thu Dec 13 10:29:39 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 10:29:39 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 10:29:39 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby godsend.mail.umich.edu () with ESMTP id lBDFTc2Y018361;\n\tThu, 13 Dec 2007 10:29:38 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 47614FDB.313EB.30099 ; \n\t13 Dec 2007 10:29:34 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1381655593;\n\tThu, 13 Dec 2007 15:26:45 +0000 (GMT)\nMessage-ID: <200712131518.lBDFIhNd009199@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 466\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 15:26:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 19D3137D27\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 15:26:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDFIh8m009201\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 10:18:43 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDFIhNd009199\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:18:43 -0500\nDate: Thu, 13 Dec 2007 10:18:43 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f\nTo: source@collab.sakaiproject.org\nFrom: nuno@ufp.pt\nSubject: [sakai] svn commit: r39198 - presence/trunk/presence-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 10:29:39 2007\nX-DSPAM-Confidence: 0.9765\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39198\n\nAuthor: nuno@ufp.pt\nDate: 2007-12-13 10:18:38 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39198\n\nAdded:\npresence/trunk/presence-tool/tool/src/bundle/admin_pt_PT.properties\nLog:\nSAK-12044: Add Portuguese translation\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom nuno@ufp.pt Thu Dec 13 10:25:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 10:25:37 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 10:25:37 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby flawless.mail.umich.edu () with ESMTP id lBDFPahD019491;\n\tThu, 13 Dec 2007 10:25:36 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 47614EEA.38545.20994 ; \n\t13 Dec 2007 10:25:33 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 184B89D09B;\n\tThu, 13 Dec 2007 15:25:28 +0000 (GMT)\nMessage-ID: <200712131517.lBDFHSsX009187@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 5\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 15:25:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 74C1D37D27\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 15:25:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDFHSo6009189\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 10:17:28 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDFHSsX009187\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:17:28 -0500\nDate: Thu, 13 Dec 2007 10:17:28 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f\nTo: source@collab.sakaiproject.org\nFrom: nuno@ufp.pt\nSubject: [sakai] svn commit: r39197 - user/trunk/user-tool-prefs/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 10:25:37 2007\nX-DSPAM-Confidence: 0.9783\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39197\n\nAuthor: nuno@ufp.pt\nDate: 2007-12-13 10:17:22 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39197\n\nAdded:\nuser/trunk/user-tool-prefs/tool/src/bundle/user-tool-prefs_pt_PT.properties\nLog:\nSAK-12044: Add Portuguese translation\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom nuno@ufp.pt Thu Dec 13 10:25:18 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 10:25:18 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 10:25:18 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby casino.mail.umich.edu () with ESMTP id lBDFPHLt012352;\n\tThu, 13 Dec 2007 10:25:17 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 47614EC5.B3B3C.26887 ; \n\t13 Dec 2007 10:24:56 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8A61C9D0B4;\n\tThu, 13 Dec 2007 15:24:50 +0000 (GMT)\nMessage-ID: <200712131516.lBDFGmLN009175@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 384\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 15:24:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7971137D27\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 15:24:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDFGm6h009177\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 10:16:48 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDFGmLN009175\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:16:48 -0500\nDate: Thu, 13 Dec 2007 10:16:48 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f\nTo: source@collab.sakaiproject.org\nFrom: nuno@ufp.pt\nSubject: [sakai] svn commit: r39196 - in login/trunk: login-authn-tool/tool/src/bundle login-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 10:25:18 2007\nX-DSPAM-Confidence: 0.9733\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39196\n\nAuthor: nuno@ufp.pt\nDate: 2007-12-13 10:16:36 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39196\n\nAdded:\nlogin/trunk/login-authn-tool/tool/src/bundle/sitenav_pt_PT.properties\nlogin/trunk/login-tool/tool/src/bundle/auth_pt_PT.properties\nLog:\nSAK-12044: Add Portuguese translation\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom nuno@ufp.pt Thu Dec 13 10:22:57 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 10:22:57 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 10:22:57 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby faithful.mail.umich.edu () with ESMTP id lBDFMuTM006229;\n\tThu, 13 Dec 2007 10:22:56 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 47614E4B.ACB7F.15398 ; \n\t13 Dec 2007 10:22:54 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6A6DE9C627;\n\tThu, 13 Dec 2007 15:22:49 +0000 (GMT)\nMessage-ID: <200712131514.lBDFEkFs009163@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 847\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 15:22:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EC08B37E3B\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 15:22:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDFEk0T009165\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 10:14:46 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDFEkFs009163\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:14:46 -0500\nDate: Thu, 13 Dec 2007 10:14:46 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f\nTo: source@collab.sakaiproject.org\nFrom: nuno@ufp.pt\nSubject: [sakai] svn commit: r39195 - in portal/trunk: portal-impl/impl/src/bundle portal-util/util/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 10:22:57 2007\nX-DSPAM-Confidence: 0.7536\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39195\n\nAuthor: nuno@ufp.pt\nDate: 2007-12-13 10:14:32 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39195\n\nAdded:\nportal/trunk/portal-impl/impl/src/bundle/sitenav_pt_PT.properties\nportal/trunk/portal-util/util/src/bundle/portal-util_pt_PT.properties\nLog:\nSAK-12044: Add Portuguese translation\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom nuno@ufp.pt Thu Dec 13 10:19:22 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 10:19:22 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 10:19:22 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby godsend.mail.umich.edu () with ESMTP id lBDFJMfg013171;\n\tThu, 13 Dec 2007 10:19:22 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 47614D5A.7144.4668 ; \n\t13 Dec 2007 10:18:52 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4DAF19D095;\n\tThu, 13 Dec 2007 15:18:50 +0000 (GMT)\nMessage-ID: <200712131510.lBDFAkP7009151@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 648\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 15:18:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DB2FD37E28\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 15:18:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDFAkDH009153\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 10:10:46 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDFAkP7009151\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:10:46 -0500\nDate: Thu, 13 Dec 2007 10:10:46 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f\nTo: source@collab.sakaiproject.org\nFrom: nuno@ufp.pt\nSubject: [sakai] svn commit: r39194 - message/trunk/message-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 10:19:22 2007\nX-DSPAM-Confidence: 0.9735\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39194\n\nAuthor: nuno@ufp.pt\nDate: 2007-12-13 10:10:40 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39194\n\nAdded:\nmessage/trunk/message-tool/tool/src/bundle/recent_pt_PT.properties\nLog:\nSAK-12044: Add Portuguese translation\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom nuno@ufp.pt Thu Dec 13 10:18:18 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 10:18:18 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 10:18:18 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby chaos.mail.umich.edu () with ESMTP id lBDFIH6l021568;\n\tThu, 13 Dec 2007 10:18:17 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 47614D2F.69829.14563 ; \n\t13 Dec 2007 10:18:14 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 36F7F9D090;\n\tThu, 13 Dec 2007 15:18:06 +0000 (GMT)\nMessage-ID: <200712131510.lBDFA5Ao009139@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 619\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 15:17:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6823037E28\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 15:17:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDFA6ZJ009141\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 10:10:06 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDFA5Ao009139\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:10:05 -0500\nDate: Thu, 13 Dec 2007 10:10:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f\nTo: source@collab.sakaiproject.org\nFrom: nuno@ufp.pt\nSubject: [sakai] svn commit: r39193 - msgcntr/trunk/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 10:18:18 2007\nX-DSPAM-Confidence: 0.9721\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39193\n\nAuthor: nuno@ufp.pt\nDate: 2007-12-13 10:10:00 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39193\n\nAdded:\nmsgcntr/trunk/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages_pt_PT.properties\nLog:\nSAK-12044: Add Portuguese translation\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom nuno@ufp.pt Thu Dec 13 10:17:40 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 10:17:40 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 10:17:40 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby chaos.mail.umich.edu () with ESMTP id lBDFHddk021256;\n\tThu, 13 Dec 2007 10:17:39 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 47614CFD.5EF37.14639 ; \n\t13 Dec 2007 10:17:20 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B58D79D091;\n\tThu, 13 Dec 2007 15:17:17 +0000 (GMT)\nMessage-ID: <200712131509.lBDF9HhW009127@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 235\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 15:17:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1169837E28\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 15:17:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDF9HSf009129\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 10:09:17 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDF9HhW009127\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:09:17 -0500\nDate: Thu, 13 Dec 2007 10:09:17 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f\nTo: source@collab.sakaiproject.org\nFrom: nuno@ufp.pt\nSubject: [sakai] svn commit: r39192 - in mailarchive/trunk: mailarchive-impl/impl/src/bundle mailarchive-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 10:17:40 2007\nX-DSPAM-Confidence: 0.8415\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39192\n\nAuthor: nuno@ufp.pt\nDate: 2007-12-13 10:09:06 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39192\n\nAdded:\nmailarchive/trunk/mailarchive-impl/impl/src/bundle/siteemaanc_pt_PT.properties\nmailarchive/trunk/mailarchive-tool/tool/src/bundle/email_pt_PT.properties\nLog:\nSAK-12044: Add Portuguese translation\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom nuno@ufp.pt Thu Dec 13 10:16:29 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 10:16:29 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 10:16:29 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby fan.mail.umich.edu () with ESMTP id lBDFGSVA013958;\n\tThu, 13 Dec 2007 10:16:28 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 47614CC4.E834A.26752 ; \n\t13 Dec 2007 10:16:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6B7129D088;\n\tThu, 13 Dec 2007 15:16:21 +0000 (GMT)\nMessage-ID: <200712131508.lBDF8Fpp009115@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 311\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 15:16:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EC83B37E2A\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 15:16:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDF8FQk009117\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 10:08:15 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDF8Fpp009115\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:08:15 -0500\nDate: Thu, 13 Dec 2007 10:08:15 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f\nTo: source@collab.sakaiproject.org\nFrom: nuno@ufp.pt\nSubject: [sakai] svn commit: r39191 - email/trunk/email-impl/impl/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 10:16:29 2007\nX-DSPAM-Confidence: 0.9738\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39191\n\nAuthor: nuno@ufp.pt\nDate: 2007-12-13 10:08:10 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39191\n\nAdded:\nemail/trunk/email-impl/impl/src/bundle/email-impl_pt_PT.properties\nLog:\nSAK-12044: Add Portuguese translation\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom nuno@ufp.pt Thu Dec 13 10:15:36 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 10:15:36 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 10:15:36 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby casino.mail.umich.edu () with ESMTP id lBDFFZL4007271;\n\tThu, 13 Dec 2007 10:15:35 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 47614C8E.2D8E.25482 ; \n\t13 Dec 2007 10:15:28 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2DBBD5FD67;\n\tThu, 13 Dec 2007 15:15:26 +0000 (GMT)\nMessage-ID: <200712131507.lBDF7KAP009103@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 723\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 15:15:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6544D37E28\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 15:15:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDF7LZM009105\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 10:07:21 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDF7KAP009103\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:07:21 -0500\nDate: Thu, 13 Dec 2007 10:07:21 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f\nTo: source@collab.sakaiproject.org\nFrom: nuno@ufp.pt\nSubject: [sakai] svn commit: r39190 - in chat/trunk: chat-impl/impl/src/bundle chat-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 10:15:36 2007\nX-DSPAM-Confidence: 0.9748\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39190\n\nAuthor: nuno@ufp.pt\nDate: 2007-12-13 10:07:09 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39190\n\nAdded:\nchat/trunk/chat-impl/impl/src/bundle/chat_pt_PT.properties\nchat/trunk/chat-tool/tool/src/bundle/chat_pt_PT.properties\nLog:\nSAK-12044: Add Portuguese translation\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom nuno@ufp.pt Thu Dec 13 10:14:34 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 10:14:34 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 10:14:34 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby awakenings.mail.umich.edu () with ESMTP id lBDFEXOG001357;\n\tThu, 13 Dec 2007 10:14:33 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 47614C53.ECA5B.22664 ; \n\t13 Dec 2007 10:14:31 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 33AE89D05E;\n\tThu, 13 Dec 2007 15:14:28 +0000 (GMT)\nMessage-ID: <200712131506.lBDF6LTv009091@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 797\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 15:14:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 57C1937E28\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 15:14:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDF6MkO009093\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 10:06:22 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDF6LTv009091\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:06:22 -0500\nDate: Thu, 13 Dec 2007 10:06:22 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f\nTo: source@collab.sakaiproject.org\nFrom: nuno@ufp.pt\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 10:14:34 2007\nX-DSPAM-Confidence: 0.8416\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39189\n\nAuthor: nuno@ufp.pt\nDate: 2007-12-13 10:06:04 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39189\n\nAdded:\ncalendar/trunk/calendar-impl/impl/src/bundle/calendarimpl_pt_PT.properties\ncalendar/trunk/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_pt_PT.properties\ncalendar/trunk/calendar-tool/tool/src/bundle/calendar_pt_PT.properties\nLog:\nSAK-12044: Add Portuguese translation\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom nuno@ufp.pt Thu Dec 13 10:12:36 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 10:12:36 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 10:12:36 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby godsend.mail.umich.edu () with ESMTP id lBDFCZ25009018;\n\tThu, 13 Dec 2007 10:12:35 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 47614BDE.952AD.2445 ; \n\t13 Dec 2007 10:12:33 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 839A98C0BB;\n\tThu, 13 Dec 2007 15:12:28 +0000 (GMT)\nMessage-ID: <200712131504.lBDF4NTo009079@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 46\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 15:12:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 376BC37E2F\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 15:12:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDF4NG9009081\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 10:04:23 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDF4NTo009079\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:04:23 -0500\nDate: Thu, 13 Dec 2007 10:04:23 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f\nTo: source@collab.sakaiproject.org\nFrom: nuno@ufp.pt\nSubject: [sakai] svn commit: r39188 - blog/trunk/tool/src/bundle/uk/ac/lancs/e_science/sakai/tools/blogger/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 10:12:36 2007\nX-DSPAM-Confidence: 0.9770\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39188\n\nAuthor: nuno@ufp.pt\nDate: 2007-12-13 10:04:18 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39188\n\nAdded:\nblog/trunk/tool/src/bundle/uk/ac/lancs/e_science/sakai/tools/blogger/bundle/Messages_pt_PT.properties\nLog:\nSAK-12044: Add Portuguese translation\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom nuno@ufp.pt Thu Dec 13 10:10:00 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 10:10:00 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 10:10:00 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby awakenings.mail.umich.edu () with ESMTP id lBDF9wM9031304;\n\tThu, 13 Dec 2007 10:09:58 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 47614B37.32F62.30303 ; \n\t13 Dec 2007 10:09:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 79CBA5E783;\n\tThu, 13 Dec 2007 15:09:42 +0000 (GMT)\nMessage-ID: <200712131501.lBDF1ftp009066@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 894\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 15:09:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8421737E2D\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 15:09:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDF1fL1009068\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 10:01:41 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDF1ftp009066\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:01:41 -0500\nDate: Thu, 13 Dec 2007 10:01:41 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f\nTo: source@collab.sakaiproject.org\nFrom: nuno@ufp.pt\nSubject: [sakai] svn commit: r39187 - in announcement/trunk: announcement-impl/impl/src/bundle announcement-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 10:10:00 2007\nX-DSPAM-Confidence: 0.9741\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39187\n\nAuthor: nuno@ufp.pt\nDate: 2007-12-13 10:01:28 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39187\n\nAdded:\nannouncement/trunk/announcement-impl/impl/src/bundle/annc-access_pt_PT.properties\nannouncement/trunk/announcement-impl/impl/src/bundle/siteemaanc_pt_PT.properties\nannouncement/trunk/announcement-tool/tool/src/bundle/announcement_pt_PT.properties\nLog:\nSAK-12044: Add Portuguese translation\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom nuno@ufp.pt Thu Dec 13 10:08:29 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 10:08:29 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 10:08:29 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby faithful.mail.umich.edu () with ESMTP id lBDF8Pp6031856;\n\tThu, 13 Dec 2007 10:08:26 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 47614ADA.94EC1.11261 ; \n\t13 Dec 2007 10:08:13 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4663B65E53;\n\tThu, 13 Dec 2007 15:08:05 +0000 (GMT)\nMessage-ID: <200712131500.lBDF02av009052@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 971\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 15:07:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 00D8637E2D\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 15:07:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDF02f1009054\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 10:00:02 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDF02av009052\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 10:00:02 -0500\nDate: Thu, 13 Dec 2007 10:00:02 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f\nTo: source@collab.sakaiproject.org\nFrom: nuno@ufp.pt\nSubject: [sakai] svn commit: r39186 - access/trunk/access-impl/impl/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 10:08:29 2007\nX-DSPAM-Confidence: 0.9786\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39186\n\nAuthor: nuno@ufp.pt\nDate: 2007-12-13 09:59:56 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39186\n\nAdded:\naccess/trunk/access-impl/impl/src/bundle/access_pt_PT.properties\nLog:\nSAK-12044: Add Portuguese translation\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Thu Dec 13 09:38:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 09:38:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 09:38:02 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby chaos.mail.umich.edu () with ESMTP id lBDEc2fU001122;\n\tThu, 13 Dec 2007 09:38:02 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 476143C4.9D898.7770 ; \n\t13 Dec 2007 09:37:59 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BDD949C708;\n\tThu, 13 Dec 2007 14:37:52 +0000 (GMT)\nMessage-ID: <200712131429.lBDETktR008990@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 626\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 14:37:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A863E37DF8\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 14:37:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDETk4B008992\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 09:29:46 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDETktR008990\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 09:29:46 -0500\nDate: Thu, 13 Dec 2007 09:29:46 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [sakai] svn commit: r39185 - gradebook/trunk/service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sections\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 09:38:02 2007\nX-DSPAM-Confidence: 0.8470\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39185\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-12-13 09:29:44 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39185\n\nModified:\ngradebook/trunk/service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sections/AuthzSectionsImpl.java\nLog:\nSAK-12432\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12432\nCircular dependency between GradebookService and facade Authz\nfixed class cast exception\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Thu Dec 13 09:35:47 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 09:35:47 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 09:35:47 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby score.mail.umich.edu () with ESMTP id lBDEZk9p018508;\n\tThu, 13 Dec 2007 09:35:46 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 4761433B.7A4E3.16428 ; \n\t13 Dec 2007 09:35:42 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7BC589B820;\n\tThu, 13 Dec 2007 14:35:38 +0000 (GMT)\nMessage-ID: <200712131427.lBDERPYg008971@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 60\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 14:35:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 27A1E37DF8\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 14:35:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDERPQC008973\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 09:27:25 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDERPYg008971\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 09:27:25 -0500\nDate: Thu, 13 Dec 2007 09:27:25 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39184 - oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/skin/default\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 09:35:47 2007\nX-DSPAM-Confidence: 0.9810\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39184\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-13 09:27:24 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39184\n\nModified:\noncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/skin/default/portal.css\nLog:\nmerge r39165 for role swapping.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Thu Dec 13 09:26:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 09:26:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 09:26:02 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby jacknife.mail.umich.edu () with ESMTP id lBDEQ2HJ017997;\n\tThu, 13 Dec 2007 09:26:02 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 476140DF.C6B95.26098 ; \n\t13 Dec 2007 09:25:40 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8377A9D007;\n\tThu, 13 Dec 2007 14:25:21 +0000 (GMT)\nMessage-ID: <200712131417.lBDEHG6Z008957@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 581\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 14:24:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2FF1C37ADF\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 14:25:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDEHGt9008959\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 09:17:17 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDEHG6Z008957\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 09:17:16 -0500\nDate: Thu, 13 Dec 2007 09:17:16 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39183 - search/trunk/search-tool/tool/src/webapp/scripts\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 09:26:02 2007\nX-DSPAM-Confidence: 0.8503\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39183\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-13 09:17:13 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39183\n\nModified:\nsearch/trunk/search-tool/tool/src/webapp/scripts/search.js\nLog:\nReverted the Following Revision on SAK-11014\n\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=36859\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-10-15 13:16:59 -0400 (Mon, 15 Oct 2007)\nNew Revision: 36859\n\nModified:\nsearch/trunk/search-tool/tool/src/webapp/scripts/search.js\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-11014\nFixed\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Thu Dec 13 09:21:54 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 09:21:54 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 09:21:54 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby sleepers.mail.umich.edu () with ESMTP id lBDELr47004725;\n\tThu, 13 Dec 2007 09:21:53 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 47613FFA.56380.23497 ; \n\t13 Dec 2007 09:21:49 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B2F589CE1A;\n\tThu, 13 Dec 2007 14:21:34 +0000 (GMT)\nMessage-ID: <200712131413.lBDEDWnq008927@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 735\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 14:21:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5354437D22\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 14:21:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDEDXnc008929\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 09:13:33 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDEDWnq008927\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 09:13:32 -0500\nDate: Thu, 13 Dec 2007 09:13:32 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39182 - reference/trunk/library/src/webapp/js\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 09:21:54 2007\nX-DSPAM-Confidence: 0.9739\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39182\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-13 09:13:29 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39182\n\nModified:\nreference/trunk/library/src/webapp/js/headscripts.js\nLog:\nSAK-11014 \nReverted,\n\nThe orriginal commit which didnt get into jira is \nhttp://source.sakaiproject.org/viewsvn/?view=rev&rev=36843\n\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gopal.ramasammycook@gmail.com Thu Dec 13 08:53:01 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 08:53:01 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 08:53:01 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby jacknife.mail.umich.edu () with ESMTP id lBDDr0PF002129;\n\tThu, 13 Dec 2007 08:53:00 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 47613937.1614A.23012 ; \n\t13 Dec 2007 08:52:57 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2C43C9CE6A;\n\tThu, 13 Dec 2007 13:52:59 +0000 (GMT)\nMessage-ID: <200712131344.lBDDigtL008890@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 467\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 13:52:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5A11F37D20\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 13:52:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDDigPJ008892\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 08:44:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDDigtL008890\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 08:44:42 -0500\nDate: Thu, 13 Dec 2007 08:44:42 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f\nTo: source@collab.sakaiproject.org\nFrom: gopal.ramasammycook@gmail.com\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 08:53:01 2007\nX-DSPAM-Confidence: 0.8441\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39181\n\nAuthor: gopal.ramasammycook@gmail.com\nDate: 2007-12-13 08:44:03 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39181\n\nModified:\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/AssessmentSettingsBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/authz/AuthorizationBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramQuestionScoresBean.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacadeQueries.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueriesAPI.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/PublishedAssessmentService.java\nLog:\nSAK-12065 Group Release Bug Fixes (Partial)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stuart.freeman@et.gatech.edu Thu Dec 13 08:44:32 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 08:44:32 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 08:44:32 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby brazil.mail.umich.edu () with ESMTP id lBDDiVwG005139;\n\tThu, 13 Dec 2007 08:44:31 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 4761373A.13D5C.28947 ; \n\t13 Dec 2007 08:44:29 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 97ED89CF5F;\n\tThu, 13 Dec 2007 13:44:29 +0000 (GMT)\nMessage-ID: <200712131336.lBDDaKM8008862@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 52\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 13:44:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D9047325DE\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 13:44:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDDaKI7008864\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 08:36:20 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDDaKM8008862\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 08:36:20 -0500\nDate: Thu, 13 Dec 2007 08:36:20 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: stuart.freeman@et.gatech.edu\nSubject: [sakai] svn commit: r39180 - webservices/branches/sakai_2-4-x/axis/src/webapp\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 08:44:32 2007\nX-DSPAM-Confidence: 0.9784\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39180\n\nAuthor: stuart.freeman@et.gatech.edu\nDate: 2007-12-13 08:36:19 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39180\n\nModified:\nwebservices/branches/sakai_2-4-x/axis/src/webapp/SakaiPortalLogin.jws\nLog:\nSAK-9868 Remove cleartext printing of passwords to catalina.out\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Thu Dec 13 08:40:47 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 08:40:47 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 08:40:47 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby faithful.mail.umich.edu () with ESMTP id lBDDek9u023095;\n\tThu, 13 Dec 2007 08:40:46 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 47613659.84181.16312 ; \n\t13 Dec 2007 08:40:44 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D67649CF01;\n\tThu, 13 Dec 2007 13:40:43 +0000 (GMT)\nMessage-ID: <200712131332.lBDDWZBR008839@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 328\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 13:40:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 64BF8372A0\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 13:40:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBDDWZ6K008841\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 08:32:35 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBDDWZBR008839\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 08:32:35 -0500\nDate: Thu, 13 Dec 2007 08:32:35 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39179 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 08:40:47 2007\nX-DSPAM-Confidence: 0.9813\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39179\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-13 08:32:34 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39179\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdate external for role swapping.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Thu Dec 13 04:56:59 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 04:56:59 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 04:56:59 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby mission.mail.umich.edu () with ESMTP id lBD9uwIC031501;\n\tThu, 13 Dec 2007 04:56:58 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 476101E5.64BF7.31950 ; \n\t13 Dec 2007 04:56:56 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C3F4D722C5;\n\tThu, 13 Dec 2007 09:56:48 +0000 (GMT)\nMessage-ID: <200712130948.lBD9mk23008692@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 713\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 09:56:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4F7DF36F6E\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 09:56:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBD9mkrV008694\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 04:48:46 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBD9mk23008692\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 04:48:46 -0500\nDate: Thu, 13 Dec 2007 04:48:46 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39178 - portal/trunk/portal-impl/impl/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 04:56:59 2007\nX-DSPAM-Confidence: 0.9770\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39178\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-13 04:48:42 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39178\n\nModified:\nportal/trunk/portal-impl/impl/src/bundle/sitenav.properties\nLog:\nSAK-12273\nPatch applied\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Thu Dec 13 04:55:01 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 13 Dec 2007 04:55:01 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 13 Dec 2007 04:55:01 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby awakenings.mail.umich.edu () with ESMTP id lBD9t0f9026681;\n\tThu, 13 Dec 2007 04:55:00 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 4761016E.99AFB.7944 ; \n\t13 Dec 2007 04:54:57 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B3B469C64F;\n\tThu, 13 Dec 2007 09:54:52 +0000 (GMT)\nMessage-ID: <200712130946.lBD9kqcG008680@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 53\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 09:54:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C55FD36F61\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 09:54:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBD9kruJ008682\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 04:46:53 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBD9kqcG008680\n\tfor source@collab.sakaiproject.org; Thu, 13 Dec 2007 04:46:52 -0500\nDate: Thu, 13 Dec 2007 04:46:52 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39177 - portal/trunk/portal-charon/charon/src/webapp/scripts\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec 13 04:55:01 2007\nX-DSPAM-Confidence: 0.9784\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39177\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-13 04:46:48 -0500 (Thu, 13 Dec 2007)\nNew Revision: 39177\n\nModified:\nportal/trunk/portal-charon/charon/src/webapp/scripts/portalscripts.js\nLog:\nSAK-12112\nPatch Applied\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Wed Dec 12 22:33:27 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 22:33:27 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 22:33:27 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby awakenings.mail.umich.edu () with ESMTP id lBD3XQGG025974;\n\tWed, 12 Dec 2007 22:33:26 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 4760A801.62903.21783 ; \n\t12 Dec 2007 22:33:24 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5B3F7789E4;\n\tThu, 13 Dec 2007 03:32:59 +0000 (GMT)\nMessage-ID: <200712130325.lBD3PDL3007910@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 432\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 03:32:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7A1753643E\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 03:32:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBD3PD0d007912\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 22:25:13 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBD3PDL3007910\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 22:25:13 -0500\nDate: Wed, 12 Dec 2007 22:25:13 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r39176 - content/branches/sakai_2-5-x/content-tool/tool/src/java/org/sakaiproject/content/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 22:33:27 2007\nX-DSPAM-Confidence: 0.7000\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39176\n\nAuthor: mmmay@indiana.edu\nDate: 2007-12-12 22:25:12 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39176\n\nModified:\ncontent/branches/sakai_2-5-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\nLog:\nsvn merge -r 39124:39125 https://source.sakaiproject.org/svn/content/trunk\nU    content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\nsillybunny:~/java/2-5/sakai_2-5-x/content mmmay$ svn log -r 39124:39125 https://source.sakaiproject.org/svn/content/trunk\n------------------------------------------------------------------------\nr39125 | jimeng@umich.edu | 2007-12-11 18:34:03 -0500 (Tue, 11 Dec 2007) | 3 lines\n\nSAK-12402\nRemove pipe from tool-session when it is found and actioned is not completed, canceled or in error condition.\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Wed Dec 12 21:49:18 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 21:49:18 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 21:49:18 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby score.mail.umich.edu () with ESMTP id lBD2nI8P014638;\n\tWed, 12 Dec 2007 21:49:18 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 47609DA3.71734.27719 ; \n\t12 Dec 2007 21:49:10 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7258950485;\n\tThu, 13 Dec 2007 02:48:57 +0000 (GMT)\nMessage-ID: <200712130241.lBD2f2pr007788@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 906\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 02:48:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 10C5C35F28\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 02:48:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBD2f2Ab007790\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 21:41:02 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBD2f2pr007788\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 21:41:02 -0500\nDate: Wed, 12 Dec 2007 21:41:02 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r39175 - reference/branches/sakai_2-5-x/docs/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 21:49:18 2007\nX-DSPAM-Confidence: 0.7000\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39175\n\nAuthor: mmmay@indiana.edu\nDate: 2007-12-12 21:41:00 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39175\n\nModified:\nreference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql\nreference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\nLog:\nsvn merge -r 39152:39153 https://source.sakaiproject.org/svn/reference/trunk\nU    docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql\nU    docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\nsillybunny:~/java/2-5/sakai_2-5-x/reference mmmay$ svn log -r 39152:39153 https://source.sakaiproject.org/svn/reference/trunk\n------------------------------------------------------------------------\nr39153 | cwen@iupui.edu | 2007-12-12 15:45:36 -0500 (Wed, 12 Dec 2007) | 1 line\n\nSAK-12429 => add index for gradebook.\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Wed Dec 12 21:28:15 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 21:28:15 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 21:28:15 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby sleepers.mail.umich.edu () with ESMTP id lBD2SEv0018596;\n\tWed, 12 Dec 2007 21:28:14 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 476098B9.2CEA4.25775 ; \n\t12 Dec 2007 21:28:12 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D2EF26047E;\n\tThu, 13 Dec 2007 02:28:07 +0000 (GMT)\nMessage-ID: <200712130219.lBD2Jphf007774@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 622\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 02:27:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 68F233619B\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 02:27:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBD2JpST007776\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 21:19:51 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBD2Jphf007774\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 21:19:51 -0500\nDate: Wed, 12 Dec 2007 21:19:51 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r39174 - gradebook/branches/sakai_2-5-x/service/hibernate/src/hibernate/org/sakaiproject/tool/gradebook\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 21:28:15 2007\nX-DSPAM-Confidence: 0.6566\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39174\n\nAuthor: mmmay@indiana.edu\nDate: 2007-12-12 21:19:50 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39174\n\nModified:\ngradebook/branches/sakai_2-5-x/service/hibernate/src/hibernate/org/sakaiproject/tool/gradebook/GradingEvent.hbm.xml\nLog:\nsvn merge -r 39138:39139 https://source.sakaiproject.org/svn/gradebook/trunk\nU    service/hibernate/src/hibernate/org/sakaiproject/tool/gradebook/GradingEvent.hbm.xml\nsillybunny:~/java/2-5/sakai_2-5-x/gradebook mmmay$ svn log -r 39138:39139 https://source.sakaiproject.org/svn/gradebook/trunk\n------------------------------------------------------------------------\nr39138 | wagnermr@iupui.edu | 2007-12-12 10:10:30 -0500 (Wed, 12 Dec 2007) | 3 lines\n\nSAK-12432\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12432\nCircular dependency between GradebookService and facade Authz\n------------------------------------------------------------------------\nr39139 | cwen@iupui.edu | 2007-12-12 10:41:58 -0500 (Wed, 12 Dec 2007) | 2 lines\n\nSAK-12429 =>\nadd index to hibernate mapping.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Wed Dec 12 21:27:12 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 21:27:12 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 21:27:12 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby score.mail.umich.edu () with ESMTP id lBD2RCNv005923;\n\tWed, 12 Dec 2007 21:27:12 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4760987A.10382.31358 ; \n\t12 Dec 2007 21:27:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3255858AD9;\n\tThu, 13 Dec 2007 02:26:53 +0000 (GMT)\nMessage-ID: <200712130218.lBD2IiIZ007762@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 439\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 02:26:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7F9E631D78\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 02:26:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBD2Ii5N007764\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 21:18:44 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBD2IiIZ007762\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 21:18:44 -0500\nDate: Wed, 12 Dec 2007 21:18:44 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r39173 - in gradebook/branches/sakai_2-5-x/app/business/src/sql: mysql oracle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 21:27:12 2007\nX-DSPAM-Confidence: 0.7614\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39173\n\nAuthor: mmmay@indiana.edu\nDate: 2007-12-12 21:18:41 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39173\n\nAdded:\ngradebook/branches/sakai_2-5-x/app/business/src/sql/mysql/SAK-12429.sql\ngradebook/branches/sakai_2-5-x/app/business/src/sql/oracle/SAK-12429.sql\nLog:\nsvn merge -r 39136:39137 https://source.sakaiproject.org/svn/gradebook/trunk\nA    app/business/src/sql/mysql/SAK-12429.sql\nA    app/business/src/sql/oracle/SAK-12429.sql\nsillybunny:~/java/2-5/sakai_2-5-x/gradebook mmmay$ svn log -r 39136:39137 https://source.sakaiproject.org/svn/gradebook/trunk\n------------------------------------------------------------------------\nr39137 | cwen@iupui.edu | 2007-12-12 10:05:59 -0500 (Wed, 12 Dec 2007) | 1 line\n\nSAK-12429 => add index for improving performance.\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Wed Dec 12 21:16:38 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 21:16:38 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 21:16:38 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby casino.mail.umich.edu () with ESMTP id lBD2Gc4x006843;\n\tWed, 12 Dec 2007 21:16:38 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 47609601.7B192.16867 ; \n\t12 Dec 2007 21:16:36 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2539E9984B;\n\tThu, 13 Dec 2007 02:16:29 +0000 (GMT)\nMessage-ID: <200712130208.lBD28LCT007730@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 201\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 02:16:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1232D36507\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 02:16:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBD28LNR007732\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 21:08:21 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBD28LCT007730\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 21:08:21 -0500\nDate: Wed, 12 Dec 2007 21:08:21 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r39172 - syllabus/branches/sakai_2-5-x/syllabus-app/src/java/org/sakaiproject/tool/syllabus\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 21:16:38 2007\nX-DSPAM-Confidence: 0.7612\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39172\n\nAuthor: mmmay@indiana.edu\nDate: 2007-12-12 21:08:19 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39172\n\nModified:\nsyllabus/branches/sakai_2-5-x/syllabus-app/src/java/org/sakaiproject/tool/syllabus/SyllabusTool.java\nLog:\nsvn merge -r 38964:38965 https://source.sakaiproject.org/svn/syllabus/trunk\nU    syllabus-app/src/java/org/sakaiproject/tool/syllabus/SyllabusTool.java\nsillybunny:~/java/2-5/sakai_2-5-x/syllabus mmmay$ svn log -r 38964:38965 https://source.sakaiproject.org/svn/syllabus/trunk\n------------------------------------------------------------------------\nr38965 | josrodri@iupui.edu | 2007-12-04 14:07:49 -0500 (Tue, 04 Dec 2007) | 1 line\n\nSAK-12234 - will check if a SyllabusItem was actually retrieved before grabbing redirect url\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Wed Dec 12 21:07:12 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 21:07:12 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 21:07:12 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby godsend.mail.umich.edu () with ESMTP id lBD27BNc000587;\n\tWed, 12 Dec 2007 21:07:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 476093CA.AC4FF.12984 ; \n\t12 Dec 2007 21:07:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4A4C39B0C5;\n\tThu, 13 Dec 2007 02:07:02 +0000 (GMT)\nMessage-ID: <200712130158.lBD1wavx007660@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 26\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 02:06:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C3DE63636D\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 02:06:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBD1waU6007662\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 20:58:36 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBD1wavx007660\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 20:58:36 -0500\nDate: Wed, 12 Dec 2007 20:58:36 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r39171 - content/branches/sakai_2-5-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 21:07:12 2007\nX-DSPAM-Confidence: 0.7008\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39171\n\nAuthor: mmmay@indiana.edu\nDate: 2007-12-12 20:58:34 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39171\n\nModified:\ncontent/branches/sakai_2-5-x/runconversion.sh\ncontent/branches/sakai_2-5-x/upgradeschema-mysql.config\nLog:\nsvn merge -r 39156:39157 https://source.sakaiproject.org/svn/content/trunk\nU    upgradeschema-mysql.config\nU    runconversion.sh\nsillybunny:~/java/2-5/sakai_2-5-x/content mmmay$ svn log -r 39156:39157 https://source.sakaiproject.org/svn/content/trunk\n------------------------------------------------------------------------\nr39157 | jimeng@umich.edu | 2007-12-12 15:56:53 -0500 (Wed, 12 Dec 2007) | 4 lines\n\nSAK-12249\nAdded mysql config for converting delete table.\nUpdated runconversion script to include commons-collections in classpath.\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Wed Dec 12 20:58:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 20:58:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 20:58:30 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby fan.mail.umich.edu () with ESMTP id lBD1wTXd010999;\n\tWed, 12 Dec 2007 20:58:29 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 476091BF.A5A4B.5818 ; \n\t12 Dec 2007 20:58:26 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 19E549B0C5;\n\tThu, 13 Dec 2007 01:58:20 +0000 (GMT)\nMessage-ID: <200712130150.lBD1oGZe007636@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 516\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 01:58:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6F4143636D\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 01:58:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBD1oHv3007638\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 20:50:17 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBD1oGZe007636\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 20:50:17 -0500\nDate: Wed, 12 Dec 2007 20:50:17 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 20:58:30 2007\nX-DSPAM-Confidence: 0.6519\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39170\n\nAuthor: mmmay@indiana.edu\nDate: 2007-12-12 20:50:12 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39170\n\nModified:\ncitations/branches/sakai_2-5-x/citations-impl/impl/src/java/org/sakaiproject/citation/impl/BaseSearchManager.java\ncitations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/vm/citation/_databases.vm\ncitations/branches/sakai_2-5-x/citations-util/util/src/bundle/citations.properties\nLog:\nsvn merge -r 39121:39122 https://source.sakaiproject.org/svn/citations/trunk\nU    citations-tool/tool/src/webapp/vm/citation/_databases.vm\nU    citations-util/util/src/bundle/citations.properties\nU    citations-impl/impl/src/java/org/sakaiproject/citation/impl/BaseSearchManager.java\nsillybunny:~/java/2-5/sakai_2-5-x/citations mmmay$ svn log -r 39121:39122 https://source.sakaiproject.org/svn/citations/trunk\n------------------------------------------------------------------------\nr39122 | gbhatnag@umich.edu | 2007-12-11 17:34:44 -0500 (Tue, 11 Dec 2007) | 2 lines\n\nSAK-11999 catching for undefined databases and empty categories in BaseSearchManager.BasicSearchDatabaseHierarchy.BasicSearchCategory. Template changes to account for empty categories.\n\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Wed Dec 12 20:55:23 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 20:55:23 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 20:55:24 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby score.mail.umich.edu () with ESMTP id lBD1tNH2028214;\n\tWed, 12 Dec 2007 20:55:23 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 47609100.9F103.4248 ; \n\t12 Dec 2007 20:55:18 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B55099B0C5;\n\tThu, 13 Dec 2007 01:55:08 +0000 (GMT)\nMessage-ID: <200712130147.lBD1l9qt007624@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 259\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 01:54:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 422D93636D\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 01:54:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBD1l9Bt007626\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 20:47:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBD1l9qt007624\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 20:47:09 -0500\nDate: Wed, 12 Dec 2007 20:47:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r39169 - citations/branches/sakai_2-5-x/citations-tool/tool/src/java/org/sakaiproject/citation/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 20:55:24 2007\nX-DSPAM-Confidence: 0.7613\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39169\n\nAuthor: mmmay@indiana.edu\nDate: 2007-12-12 20:47:08 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39169\n\nModified:\ncitations/branches/sakai_2-5-x/citations-tool/tool/src/java/org/sakaiproject/citation/tool/CitationHelperAction.java\nLog:\nsvn merge -r 39114:39115 https://source.sakaiproject.org/svn/citations/trunk\nU    citations-tool/tool/src/java/org/sakaiproject/citation/tool/CitationHelperAction.java\nsillybunny:~/java/2-5/sakai_2-5-x/citations mmmay$ svn log -r 39114:39115 https://source.sakaiproject.org/svn/citations/trunk\n------------------------------------------------------------------------\nr39115 | gbhatnag@umich.edu | 2007-12-11 15:04:40 -0500 (Tue, 11 Dec 2007) | 1 line\n\nSAK-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.\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Wed Dec 12 20:53:00 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 20:53:00 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 20:53:00 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby score.mail.umich.edu () with ESMTP id lBD1r0cG027353;\n\tWed, 12 Dec 2007 20:53:00 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 47609075.AEF0C.6932 ; \n\t12 Dec 2007 20:52:56 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C20249C67E;\n\tThu, 13 Dec 2007 01:52:51 +0000 (GMT)\nMessage-ID: <200712130144.lBD1is9Z007612@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 131\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 01:52:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2E3362F89C\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 01:52:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBD1is0p007614\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 20:44:54 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBD1is9Z007612\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 20:44:54 -0500\nDate: Wed, 12 Dec 2007 20:44:54 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r39168 - citations/branches/sakai_2-5-x/citations-osid/xserver/src/java/org/sakaibrary/xserver\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 20:53:00 2007\nX-DSPAM-Confidence: 0.6192\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39168\n\nAuthor: mmmay@indiana.edu\nDate: 2007-12-12 20:44:51 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39168\n\nModified:\ncitations/branches/sakai_2-5-x/citations-osid/xserver/src/java/org/sakaibrary/xserver/XServer.java\nLog:\nsvn merge -r 38822:38823 https://source.sakaiproject.org/svn/citations/trunk\nU    citations-osid/xserver/src/java/org/sakaibrary/xserver/XServer.java\nsillybunny:~/java/2-5/sakai_2-5-x/citations mmmay$ svn log -r 38822:38823 https://source.sakaiproject.org/svn/citations/trunk\n------------------------------------------------------------------------\nr38823 | ssmail@indiana.edu | 2007-11-28 10:37:41 -0500 (Wed, 28 Nov 2007) | 1 line\n\nSAK-12297: Reworked the asset caching logic to avoid discarding search results\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Wed Dec 12 20:51:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 20:51:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 20:51:16 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby casino.mail.umich.edu () with ESMTP id lBD1pGcQ027951;\n\tWed, 12 Dec 2007 20:51:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 4760900E.20782.2765 ; \n\t12 Dec 2007 20:51:12 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0144D9C67E;\n\tThu, 13 Dec 2007 01:51:05 +0000 (GMT)\nMessage-ID: <200712130143.lBD1h4ea007600@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1019\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 01:50:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AA1A52F89C\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 01:50:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBD1h4Vr007602\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 20:43:04 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBD1h4ea007600\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 20:43:04 -0500\nDate: Wed, 12 Dec 2007 20:43:04 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r39167 - in citations/branches/sakai_2-5-x/citations-osid/xserver/src/java/org/sakaibrary: osid/repository/xserver xserver\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 20:51:16 2007\nX-DSPAM-Confidence: 0.7006\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39167\n\nAuthor: mmmay@indiana.edu\nDate: 2007-12-12 20:43:01 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39167\n\nModified:\ncitations/branches/sakai_2-5-x/citations-osid/xserver/src/java/org/sakaibrary/osid/repository/xserver/AssetIterator.java\ncitations/branches/sakai_2-5-x/citations-osid/xserver/src/java/org/sakaibrary/xserver/XServerException.java\nLog:\nsvn merge -r 38812:38813 https://source.sakaiproject.org/svn/citations/trunk\nU    citations-osid/xserver/src/java/org/sakaibrary/osid/repository/xserver/AssetIterator.java\nU    citations-osid/xserver/src/java/org/sakaibrary/xserver/XServerException.java\nsillybunny:~/java/2-5/sakai_2-5-x/citations mmmay$ svn log -r 38812:38813 https://source.sakaiproject.org/svn/citations/trunk\n------------------------------------------------------------------------\nr38813 | ssmail@indiana.edu | 2007-11-27 17:09:07 -0500 (Tue, 27 Nov 2007) | 1 line\n\nSAK-12282: throw NO_MORE_ITERATOR_ELEMENTS exception for anticipated errors\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Wed Dec 12 20:06:09 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 20:06:09 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 20:06:09 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby awakenings.mail.umich.edu () with ESMTP id lBD168Tq006716;\n\tWed, 12 Dec 2007 20:06:08 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 47608579.88F6C.11032 ; \n\t12 Dec 2007 20:06:06 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 409B69C05B;\n\tThu, 13 Dec 2007 00:32:58 +0000 (GMT)\nMessage-ID: <200712130057.lBD0vjdl007533@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 959\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 00:32:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B435F2B675\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 01:05:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBD0vjDr007535\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 19:57:45 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBD0vjdl007533\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 19:57:45 -0500\nDate: Wed, 12 Dec 2007 19:57:45 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r39166 - portal/branches/oncourse_opc_122007/portal-render-engine-impl/pack/src/webapp/vm/defaultskin\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 20:06:09 2007\nX-DSPAM-Confidence: 0.7549\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39166\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-12 19:57:44 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39166\n\nModified:\nportal/branches/oncourse_opc_122007/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm\nLog:\nSAK-7924 - UI update for oncourse\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Wed Dec 12 20:02:49 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 20:02:49 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 20:02:49 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby faithful.mail.umich.edu () with ESMTP id lBD12nYr000822;\n\tWed, 12 Dec 2007 20:02:49 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 476084A9.7ECD4.9858 ; \n\t12 Dec 2007 20:02:38 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1C6FA9B90A;\n\tThu, 13 Dec 2007 00:28:20 +0000 (GMT)\nMessage-ID: <200712130049.lBD0nIZs007491@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 519\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 00:28:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id ED69831FC9\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 00:57:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBD0nIfM007493\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 19:49:18 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBD0nIZs007491\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 19:49:18 -0500\nDate: Wed, 12 Dec 2007 19:49:18 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r39165 - oncourse/trunk/src/reference/library/src/webapp/skin/default\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 20:02:49 2007\nX-DSPAM-Confidence: 0.9834\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39165\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-12 19:49:17 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39165\n\nModified:\noncourse/trunk/src/reference/library/src/webapp/skin/default/portal.css\nLog:\nSAK-7924 - UI update for oncourse\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Wed Dec 12 19:53:27 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 19:53:27 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 19:53:27 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby faithful.mail.umich.edu () with ESMTP id lBD0rRVM029121;\n\tWed, 12 Dec 2007 19:53:27 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 4760827F.D13BC.10977 ; \n\t12 Dec 2007 19:53:24 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DDA3D9C688;\n\tThu, 13 Dec 2007 00:23:59 +0000 (GMT)\nMessage-ID: <200712130045.lBD0j4Uw007468@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 817\n          for <source@collab.sakaiproject.org>;\n          Thu, 13 Dec 2007 00:23:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C9D2A36414\n\tfor <source@collab.sakaiproject.org>; Thu, 13 Dec 2007 00:52:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBD0j4Tn007470\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 19:45:04 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBD0j4Uw007468\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 19:45:04 -0500\nDate: Wed, 12 Dec 2007 19:45:04 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r39164 - ctools/trunk/builds\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 19:53:27 2007\nX-DSPAM-Confidence: 0.8477\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39164\n\nAuthor: dlhaines@umich.edu\nDate: 2007-12-12 19:45:02 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39164\n\nRemoved:\nctools/trunk/builds/externals/\nLog:\nCTools: delete unused and misleading externals directory.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Wed Dec 12 16:27:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 16:27:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 16:27:02 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby awakenings.mail.umich.edu () with ESMTP id lBCLQxxR005651;\n\tWed, 12 Dec 2007 16:27:01 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 4760521D.B2A31.10834 ; \n\t12 Dec 2007 16:26:56 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6575F9C388;\n\tWed, 12 Dec 2007 21:26:51 +0000 (GMT)\nMessage-ID: <200712122118.lBCLItiD007115@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 651\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 21:26:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E078F31E96\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 21:26:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCLItoH007117\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 16:18:55 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCLItiD007115\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 16:18:55 -0500\nDate: Wed, 12 Dec 2007 16:18:55 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r39163 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 16:27:02 2007\nX-DSPAM-Confidence: 0.9842\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39163\n\nAuthor: dlhaines@umich.edu\nDate: 2007-12-12 16:18:52 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39163\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties\nLog:\nCTools: more updates for assignment and content conversions.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Wed Dec 12 16:20:55 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 16:20:55 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 16:20:55 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby fan.mail.umich.edu () with ESMTP id lBCLKtku019421;\n\tWed, 12 Dec 2007 16:20:55 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 476050B0.9A22B.30845 ; \n\t12 Dec 2007 16:20:51 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5F7239C376;\n\tWed, 12 Dec 2007 21:20:47 +0000 (GMT)\nMessage-ID: <200712122112.lBCLCjcL007103@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 413\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 21:20:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6656B2AD4C\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 21:20:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCLCjxh007105\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 16:12:46 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCLCjcL007103\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 16:12:45 -0500\nDate: Wed, 12 Dec 2007 16:12:45 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39162 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 16:20:55 2007\nX-DSPAM-Confidence: 0.7543\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39162\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-12 16:12:44 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39162\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nrevving up portal for more student view fixes\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Wed Dec 12 16:20:05 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 16:20:05 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 16:20:04 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby casino.mail.umich.edu () with ESMTP id lBCLK4Um025504;\n\tWed, 12 Dec 2007 16:20:04 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 4760507E.33419.6643 ; \n\t12 Dec 2007 16:20:01 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E9C869C370;\n\tWed, 12 Dec 2007 21:19:55 +0000 (GMT)\nMessage-ID: <200712122111.lBCLBsaq007091@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 817\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 21:19:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0C6F92AD4C\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 21:19:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCLBsZN007093\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 16:11:54 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCLBsaq007091\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 16:11:54 -0500\nDate: Wed, 12 Dec 2007 16:11:54 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 16:20:04 2007\nX-DSPAM-Confidence: 0.8442\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39161\n\nAuthor: zqian@umich.edu\nDate: 2007-12-12 16:11:50 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39161\n\nModified:\nassignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/SerializableSubmissionAccess.java\nassignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/AssignmentSubmissionAccess.java\nassignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/CombineDuplicateSubmissionsConversionHandler.java\nassignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/RemoveDuplicateSubmissionsConversionHandler.java\nassignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionController.java\nassignment/branches/post-2-4-umich/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SubmitterIdAssignmentsConversionHandler.java\nassignment/branches/post-2-4-umich/runconversion.sh\nassignment/branches/post-2-4-umich/upgradeschema_mysql.config\nassignment/branches/post-2-4-umich/upgradeschema_oracle.config\nLog:\nfix the CombineDupliateSubmissions error where no combine process is executed during the conversion process. SAK-11281\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Wed Dec 12 16:19:29 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 16:19:29 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 16:19:28 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby panther.mail.umich.edu () with ESMTP id lBCLJRsX008670;\n\tWed, 12 Dec 2007 16:19:28 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4760505A.6F2E4.16566 ; \n\t12 Dec 2007 16:19:25 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DA0239C305;\n\tWed, 12 Dec 2007 21:19:18 +0000 (GMT)\nMessage-ID: <200712122111.lBCLBGs3007079@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 252\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 21:18:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6D0202AD4C\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 21:18:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCLBHo1007081\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 16:11:17 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCLBGs3007079\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 16:11:16 -0500\nDate: Wed, 12 Dec 2007 16:11:16 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r39160 - content/branches/SAK-12239\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 16:19:28 2007\nX-DSPAM-Confidence: 0.9854\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39160\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-12 16:11:15 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39160\n\nModified:\ncontent/branches/SAK-12239/upgradeschema-mysql.config\ncontent/branches/SAK-12239/upgradeschema-oracle.config\nLog:\nSAK-12239\nSAK-12249\nAdded config to deal with delete table.\nUpdated oracle config file.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Wed Dec 12 16:17:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 16:17:50 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 16:17:50 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby brazil.mail.umich.edu () with ESMTP id lBCLHo4E001514;\n\tWed, 12 Dec 2007 16:17:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 47604FF8.53DB2.22822 ; \n\t12 Dec 2007 16:17:47 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9A8A49C10C;\n\tWed, 12 Dec 2007 21:17:42 +0000 (GMT)\nMessage-ID: <200712122109.lBCL9iKA007051@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 680\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 21:17:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4931F2AD4C\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 21:17:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCL9ijZ007054\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 16:09:44 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCL9iKA007051\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 16:09:44 -0500\nDate: Wed, 12 Dec 2007 16:09:44 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r39159 - portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 16:17:50 2007\nX-DSPAM-Confidence: 0.9811\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39159\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-12 16:09:43 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39159\n\nModified:\nportal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java\nLog:\nSAK-7924 - Fix for the \"tab disappearing\" problem\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Wed Dec 12 16:16:35 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 16:16:35 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 16:16:34 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby casino.mail.umich.edu () with ESMTP id lBCLGYZu023834;\n\tWed, 12 Dec 2007 16:16:34 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 47604FAB.F3144.13573 ; \n\t12 Dec 2007 16:16:31 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 874605954A;\n\tWed, 12 Dec 2007 21:16:24 +0000 (GMT)\nMessage-ID: <200712122108.lBCL8Mlp007038@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 180\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 21:16:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 86C632AD4C\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 21:16:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCL8M5A007040\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 16:08:22 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCL8Mlp007038\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 16:08:22 -0500\nDate: Wed, 12 Dec 2007 16:08:22 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r39158 - portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 16:16:34 2007\nX-DSPAM-Confidence: 0.9801\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39158\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-12 16:08:20 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39158\n\nModified:\nportal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java\nLog:\nSAK-7924 - Fix for the \"tab disappearing\" problem\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Wed Dec 12 16:05:10 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 16:05:10 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 16:05:10 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby faithful.mail.umich.edu () with ESMTP id lBCL594M020053;\n\tWed, 12 Dec 2007 16:05:09 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 47604CFF.6B9D2.25667 ; \n\t12 Dec 2007 16:05:06 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9726A96A17;\n\tWed, 12 Dec 2007 21:04:59 +0000 (GMT)\nMessage-ID: <200712122056.lBCKutjx007024@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 506\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 21:04:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 835641D7C8\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 21:04:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCKutlA007026\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 15:56:55 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCKutjx007024\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 15:56:55 -0500\nDate: Wed, 12 Dec 2007 15:56:55 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r39157 - content/trunk\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 16:05:10 2007\nX-DSPAM-Confidence: 0.9886\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39157\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-12 15:56:53 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39157\n\nModified:\ncontent/trunk/runconversion.sh\ncontent/trunk/upgradeschema-mysql.config\nLog:\nSAK-12249\nAdded mysql config for converting delete table.\nUpdated runconversion script to include commons-collections in classpath.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Wed Dec 12 16:02:35 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 16:02:35 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 16:02:35 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby awakenings.mail.umich.edu () with ESMTP id lBCL2YLB024060;\n\tWed, 12 Dec 2007 16:02:34 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 47604C63.DC1DF.27224 ; \n\t12 Dec 2007 16:02:30 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 81DDF4EB62;\n\tWed, 12 Dec 2007 21:02:21 +0000 (GMT)\nMessage-ID: <200712122054.lBCKs4La007012@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 36\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 20:54:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D83641D7C8\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 21:01:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCKs4CV007014\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 15:54:04 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCKs4La007012\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 15:54:04 -0500\nDate: Wed, 12 Dec 2007 15:54:04 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39156 - assignment/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 16:02:35 2007\nX-DSPAM-Confidence: 0.9837\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39156\n\nAuthor: zqian@umich.edu\nDate: 2007-12-12 15:54:02 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39156\n\nAdded:\nassignment/branches/post-2-4-umich/\nLog:\nAdd this brach as the testbed for assignment conversion SAK-11821\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Wed Dec 12 16:02:01 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 16:02:01 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 16:02:01 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby fan.mail.umich.edu () with ESMTP id lBCL209X007648;\n\tWed, 12 Dec 2007 16:02:00 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 47604C40.8336E.4759 ; \n\t12 Dec 2007 16:01:55 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DC5BC96A17;\n\tWed, 12 Dec 2007 20:54:48 +0000 (GMT)\nMessage-ID: <200712122053.lBCKrm7a007000@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 786\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 20:54:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4A6831D7C8\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 21:01:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCKrmMR007002\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 15:53:49 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCKrm7a007000\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 15:53:48 -0500\nDate: Wed, 12 Dec 2007 15:53:48 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39155 - reference/trunk/docs/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 16:02:01 2007\nX-DSPAM-Confidence: 0.9801\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39155\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-12 15:53:46 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39155\n\nModified:\nreference/trunk/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql\nreference/trunk/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\nLog:\nmore conversion statements for SAK-10427.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom arwhyte@umich.edu Wed Dec 12 15:57:10 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 15:57:10 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 15:57:10 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby godsend.mail.umich.edu () with ESMTP id lBCKv9xd022985;\n\tWed, 12 Dec 2007 15:57:09 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 47604B17.E77AF.7668 ; \n\t12 Dec 2007 15:56:58 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 599139C106;\n\tWed, 12 Dec 2007 20:49:39 +0000 (GMT)\nMessage-ID: <200712122048.lBCKmqmY006988@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 533\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 20:49:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AC9E51D7C8\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 20:56:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCKmqPe006990\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 15:48:52 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCKmqmY006988\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 15:48:52 -0500\nDate: Wed, 12 Dec 2007 15:48:52 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: arwhyte@umich.edu\nSubject: [sakai] svn commit: r39154 - reference/trunk/docs/releaseweb/images\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 15:57:10 2007\nX-DSPAM-Confidence: 0.9843\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39154\n\nAuthor: arwhyte@umich.edu\nDate: 2007-12-12 15:48:48 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39154\n\nAdded:\nreference/trunk/docs/releaseweb/images/sakailogo_51X31.gif\nreference/trunk/docs/releaseweb/images/sakailogo_74X45.gif\nreference/trunk/docs/releaseweb/images/sakailogo_98X59.gif\nLog:\nSakai logos for releaseweb docs.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Wed Dec 12 15:54:48 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 15:54:48 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 15:54:48 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby flawless.mail.umich.edu () with ESMTP id lBCKslOj023027;\n\tWed, 12 Dec 2007 15:54:47 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 47604A92.6D9A8.9230 ; \n\t12 Dec 2007 15:54:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2AE649C32F;\n\tWed, 12 Dec 2007 20:47:40 +0000 (GMT)\nMessage-ID: <200712122017.lBCKHHeF006841@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 713\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 20:47:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9A9EF360B1\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 20:24:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCKHHJB006843\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 15:17:17 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCKHHeF006841\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 15:17:17 -0500\nDate: Wed, 12 Dec 2007 15:17:17 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39149 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 15:54:48 2007\nX-DSPAM-Confidence: 0.9805\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39149\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-12 15:17:16 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39149\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdating citations revision\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Wed Dec 12 15:53:44 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 15:53:44 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 15:53:45 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby sleepers.mail.umich.edu () with ESMTP id lBCKrim2022252;\n\tWed, 12 Dec 2007 15:53:44 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 47604A52.614C7.20109 ; \n\t12 Dec 2007 15:53:41 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B3F5D9BB3F;\n\tWed, 12 Dec 2007 20:46:34 +0000 (GMT)\nMessage-ID: <200712122045.lBCKjcXt006976@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 555\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 20:46:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 94AF735FEB\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 20:53:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCKjcTF006978\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 15:45:38 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCKjcXt006976\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 15:45:38 -0500\nDate: Wed, 12 Dec 2007 15:45:38 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39153 - reference/trunk/docs/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 15:53:45 2007\nX-DSPAM-Confidence: 0.8433\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39153\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-12 15:45:36 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39153\n\nModified:\nreference/trunk/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql\nreference/trunk/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\nLog:\nSAK-12429 => add index for gradebook.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Wed Dec 12 15:44:10 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 15:44:10 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 15:44:10 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby score.mail.umich.edu () with ESMTP id lBCKi9wS015898;\n\tWed, 12 Dec 2007 15:44:09 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 47604812.A78D5.30323 ; \n\t12 Dec 2007 15:44:05 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 572A59C104;\n\tWed, 12 Dec 2007 20:37:00 +0000 (GMT)\nMessage-ID: <200712122035.lBCKZuf6006953@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 938\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 20:36:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0329535FEB\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 20:43:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCKZuC9006955\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 15:35:56 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCKZuf6006953\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 15:35:56 -0500\nDate: Wed, 12 Dec 2007 15:35:56 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39152 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 15:44:10 2007\nX-DSPAM-Confidence: 0.8432\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39152\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-12 15:35:55 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39152\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nrevving up portal and citations\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Wed Dec 12 15:42:09 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 15:42:09 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 15:42:09 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby jacknife.mail.umich.edu () with ESMTP id lBCKg8Um022819;\n\tWed, 12 Dec 2007 15:42:08 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 4760479B.A1F17.23036 ; \n\t12 Dec 2007 15:42:06 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A0D559C2DC;\n\tWed, 12 Dec 2007 20:34:57 +0000 (GMT)\nMessage-ID: <200712122033.lBCKXvkY006941@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 751\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 20:34:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id F292835FA7\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 20:41:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCKXvXb006943\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 15:33:57 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCKXvkY006941\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 15:33:57 -0500\nDate: Wed, 12 Dec 2007 15:33:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39151 - oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/skin/default\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 15:42:09 2007\nX-DSPAM-Confidence: 0.8440\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39151\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-12 15:33:56 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39151\n\nModified:\noncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/skin/default/portal.css\nLog:\nadjusting the border color for the timeout popup to be IU-ish\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Wed Dec 12 15:40:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 15:40:13 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 15:40:13 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby mission.mail.umich.edu () with ESMTP id lBCKeC0B005132;\n\tWed, 12 Dec 2007 15:40:12 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 47604717.577CD.28486 ; \n\t12 Dec 2007 15:39:54 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BD12F9BB89;\n\tWed, 12 Dec 2007 20:32:48 +0000 (GMT)\nMessage-ID: <200712122031.lBCKVjb5006907@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 949\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 20:32:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1A3B135EEF\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 20:39:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCKVjtI006909\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 15:31:45 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCKVjb5006907\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 15:31:45 -0500\nDate: Wed, 12 Dec 2007 15:31:45 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r39150 - portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 15:40:13 2007\nX-DSPAM-Confidence: 0.9816\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39150\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-12 15:31:44 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39150\n\nModified:\nportal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchHandler.java\nportal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchOutHandler.java\nportal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java\nLog:\nSAK-7924 - Fix for the \"tab disappearing\" problem\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Wed Dec 12 14:54:03 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 14:54:03 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 14:54:04 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby panther.mail.umich.edu () with ESMTP id lBCJs3NX018797;\n\tWed, 12 Dec 2007 14:54:03 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 47603C55.9D53D.31117 ; \n\t12 Dec 2007 14:54:00 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 86F9B9C121;\n\tWed, 12 Dec 2007 19:52:57 +0000 (GMT)\nMessage-ID: <200712121945.lBCJjnCa006799@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 597\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 19:52:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E4E6B35DDA\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 19:53:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCJjnmO006801\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 14:45:49 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCJjnCa006799\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 14:45:49 -0500\nDate: Wed, 12 Dec 2007 14:45:49 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r39148 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 14:54:04 2007\nX-DSPAM-Confidence: 0.9871\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39148\n\nAuthor: dlhaines@umich.edu\nDate: 2007-12-12 14:45:48 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39148\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties\nLog:\nCTools: update for new tool configuration for project sites.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Wed Dec 12 14:53:08 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 14:53:08 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 14:53:09 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby fan.mail.umich.edu () with ESMTP id lBCJr8M4000690;\n\tWed, 12 Dec 2007 14:53:08 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 47603BF2.7CDB.26754 ; \n\t12 Dec 2007 14:52:20 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 027639C121;\n\tWed, 12 Dec 2007 19:51:15 +0000 (GMT)\nMessage-ID: <200712121944.lBCJiCHT006776@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 289\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 19:50:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 96C8B2EDC4\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 19:51:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCJiCVs006778\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 14:44:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCJiCHT006776\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 14:44:12 -0500\nDate: Wed, 12 Dec 2007 14:44:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r39147 - ctools/trunk/builds/ctools_2-4/tools\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 14:53:09 2007\nX-DSPAM-Confidence: 0.9864\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39147\n\nAuthor: dlhaines@umich.edu\nDate: 2007-12-12 14:44:11 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39147\n\nModified:\nctools/trunk/builds/ctools_2-4/tools/build-ctools.xml\nLog:\nCTools: update to remove melete and drop box from project sites.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom josrodri@iupui.edu Wed Dec 12 14:49:07 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 14:49:07 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 14:49:06 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby brazil.mail.umich.edu () with ESMTP id lBCJn5im014571;\n\tWed, 12 Dec 2007 14:49:06 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 47603B25.DD591.26174 ; \n\t12 Dec 2007 14:48:56 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EFE6C9C1A2;\n\tWed, 12 Dec 2007 19:47:47 +0000 (GMT)\nMessage-ID: <200712121940.lBCJeY9M006756@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 648\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 19:47:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BFCC62B027\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 19:48:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCJeYG6006758\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 14:40:34 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCJeY9M006756\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 14:40:34 -0500\nDate: Wed, 12 Dec 2007 14:40:34 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: josrodri@iupui.edu\nSubject: [sakai] svn commit: r39146 - in podcasts/trunk/podcasts-app/src/webapp: css images podcasts\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 14:49:06 2007\nX-DSPAM-Confidence: 0.9832\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39146\n\nAuthor: josrodri@iupui.edu\nDate: 2007-12-12 14:40:33 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39146\n\nRemoved:\npodcasts/trunk/podcasts-app/src/webapp/images/rss-feed-icon.png\npodcasts/trunk/podcasts-app/src/webapp/podcasts/podPermissions.jsp\nModified:\npodcasts/trunk/podcasts-app/src/webapp/css/podcaster.css\npodcasts/trunk/podcasts-app/src/webapp/podcasts/podDelete.jsp\npodcasts/trunk/podcasts-app/src/webapp/podcasts/podMain.jsp\npodcasts/trunk/podcasts-app/src/webapp/podcasts/podNoResource.jsp\npodcasts/trunk/podcasts-app/src/webapp/podcasts/podOptions.jsp\nLog:\nSAK-9882: refactored the other pages as well to take advantage of proper jsp components as well as validation cleanup.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Wed Dec 12 14:24:20 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 14:24:20 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 14:24:19 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby mission.mail.umich.edu () with ESMTP id lBCJOJlb025316;\n\tWed, 12 Dec 2007 14:24:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 47603542.92A74.7059 ; \n\t12 Dec 2007 14:23:49 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E4B6C9C088;\n\tWed, 12 Dec 2007 19:23:44 +0000 (GMT)\nMessage-ID: <200712121915.lBCJFqX1006595@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 351\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 19:23:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C169D2F071\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 19:23:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCJFqhU006597\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 14:15:52 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCJFqX1006595\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 14:15:52 -0500\nDate: Wed, 12 Dec 2007 14:15:52 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r39145 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 14:24:19 2007\nX-DSPAM-Confidence: 0.8470\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39145\n\nAuthor: dlhaines@umich.edu\nDate: 2007-12-12 14:15:51 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39145\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties\nLog:\nCTools: update 2.4.xQ build with resources conversion again.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Wed Dec 12 14:17:28 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 14:17:28 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 14:17:28 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby godsend.mail.umich.edu () with ESMTP id lBCJHREk029496;\n\tWed, 12 Dec 2007 14:17:27 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 476033C0.98989.4053 ; \n\t12 Dec 2007 14:17:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 186DA9C0F5;\n\tWed, 12 Dec 2007 19:17:20 +0000 (GMT)\nMessage-ID: <200712121909.lBCJ9U7d006476@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 879\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 19:17:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E809F2AD5C\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 19:17:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCJ9USG006478\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 14:09:30 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCJ9U7d006476\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 14:09:30 -0500\nDate: Wed, 12 Dec 2007 14:09:30 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r39144 - db/branches/SAK-12239/db-util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 14:17:28 2007\nX-DSPAM-Confidence: 0.9824\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39144\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-12 14:09:29 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39144\n\nModified:\ndb/branches/SAK-12239/db-util/.classpath\nLog:\nSAK-12239\nSet svn:eol-style=native recursively in db module of SAK-12239 branch\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Wed Dec 12 14:17:01 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 14:17:01 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 14:17:01 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby mission.mail.umich.edu () with ESMTP id lBCJH0Oc021038;\n\tWed, 12 Dec 2007 14:17:00 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 47603398.2932C.23850 ; \n\t12 Dec 2007 14:16:43 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EFB029C0F3;\n\tWed, 12 Dec 2007 19:16:38 +0000 (GMT)\nMessage-ID: <200712121908.lBCJ8dtO006464@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 357\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 19:16:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 10C6A2AD5C\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 19:16:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCJ8eiL006466\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 14:08:40 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCJ8dtO006464\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 14:08:40 -0500\nDate: Wed, 12 Dec 2007 14:08:40 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r39143 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 14:17:01 2007\nX-DSPAM-Confidence: 0.9847\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39143\n\nAuthor: dlhaines@umich.edu\nDate: 2007-12-12 14:08:38 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39143\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties\nLog:\nCTools: update 2.4.xQ build with resources conversion.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Wed Dec 12 14:16:36 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 14:16:36 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 14:16:36 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby jacknife.mail.umich.edu () with ESMTP id lBCJGZ1b009120;\n\tWed, 12 Dec 2007 14:16:35 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 47603389.75E70.31935 ; \n\t12 Dec 2007 14:16:28 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id ED9619BF2C;\n\tWed, 12 Dec 2007 19:16:22 +0000 (GMT)\nMessage-ID: <200712121908.lBCJ8UOY006452@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 997\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 19:16:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0443F2AD5C\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 19:16:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCJ8U2p006454\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 14:08:30 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCJ8UOY006452\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 14:08:30 -0500\nDate: Wed, 12 Dec 2007 14:08:30 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 14:16:36 2007\nX-DSPAM-Confidence: 0.7603\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39142\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-12 14:08:13 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39142\n\nModified:\ncontent/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/DavManager.java\ncontent/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/ExpandableResourceType.java\ncontent/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/InteractionAction.java\ncontent/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/ResourceToolAction.java\ncontent/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/ResourceToolActionPipe.java\ncontent/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/ResourceType.java\ncontent/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/ResourceTypeRegistry.java\ncontent/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/ServiceLevelAction.java\ncontent/branches/SAK-12239/content-bundles/content.metaprops\ncontent/branches/SAK-12239/content-bundles/content_ar.properties\ncontent/branches/SAK-12239/content-bundles/content_ca.metaprops\ncontent/branches/SAK-12239/content-bundles/content_es.metaprops\ncontent/branches/SAK-12239/content-bundles/content_fr_CA.metaprops\ncontent/branches/SAK-12239/content-bundles/content_ja.metaprops\ncontent/branches/SAK-12239/content-bundles/content_ko.metaprops\ncontent/branches/SAK-12239/content-bundles/content_nl.metaprops\ncontent/branches/SAK-12239/content-bundles/content_zh_CN.metaprops\ncontent/branches/SAK-12239/content-bundles/types.properties\ncontent/branches/SAK-12239/content-bundles/types_ar.properties\ncontent/branches/SAK-12239/content-bundles/types_ca.properties\ncontent/branches/SAK-12239/content-bundles/types_es.properties\ncontent/branches/SAK-12239/content-bundles/types_fr_CA.properties\ncontent/branches/SAK-12239/content-bundles/types_ja.properties\ncontent/branches/SAK-12239/content-help/project.xml\ncontent/branches/SAK-12239/content-help/src/sakai_resources/aqyi.html\ncontent/branches/SAK-12239/content-help/src/sakai_resources/aqyy.html\ncontent/branches/SAK-12239/content-help/src/sakai_resources/araf.html\ncontent/branches/SAK-12239/content-help/src/sakai_resources/arsl.html\ncontent/branches/SAK-12239/content-help/src/sakai_resources/atkh.html\ncontent/branches/SAK-12239/content-help/src/sakai_resources/atla.html\ncontent/branches/SAK-12239/content-help/src/sakai_resources/aude.html\ncontent/branches/SAK-12239/content-help/src/sakai_resources/audh.html\ncontent/branches/SAK-12239/content-help/src/sakai_resources/auen.html\ncontent/branches/SAK-12239/content-help/src/sakai_resources/aukb.html\ncontent/branches/SAK-12239/content-help/src/sakai_resources/auta.html\ncontent/branches/SAK-12239/content-help/src/sakai_resources/auze.html\ncontent/branches/SAK-12239/content-help/src/sakai_resources/avbw.html\ncontent/branches/SAK-12239/content-help/src/sakai_resources/avby.html\ncontent/branches/SAK-12239/content-help/src/sakai_resources/avbz.html\ncontent/branches/SAK-12239/content-help/src/sakai_resources/avcb.html\ncontent/branches/SAK-12239/content-help/src/sakai_resources/avcc.html\ncontent/branches/SAK-12239/content-help/src/sakai_resources/avcd.html\ncontent/branches/SAK-12239/content-help/src/sakai_resources/avcg.html\ncontent/branches/SAK-12239/content-impl/impl/src/bundle/siteemacon.metaprops\ncontent/branches/SAK-12239/content-impl/impl/src/bundle/siteemacon_ar.properties\ncontent/branches/SAK-12239/content-impl/impl/src/bundle/siteemacon_ca.metaprops\ncontent/branches/SAK-12239/content-impl/impl/src/bundle/siteemacon_fr_CA.metaprops\ncontent/branches/SAK-12239/content-impl/impl/src/bundle/siteemacon_sv.properties\ncontent/branches/SAK-12239/content-impl/impl/src/bundle/siteemacon_zh_CN.properties\ncontent/branches/SAK-12239/content-impl/impl/src/config/content_type_images_ja.properties\ncontent/branches/SAK-12239/content-impl/impl/src/config/content_type_names_ca.properties\ncontent/branches/SAK-12239/content-impl/impl/src/config/content_type_names_ja.properties\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/BasicResourceToolActionPipe.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/ResourceTypeRegistryImpl.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/upgradeschema.config\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/types/FileUploadType.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/types/HtmlDocumentType.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/types/TextDocumentType.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/types/UrlResourceType.java\ncontent/branches/SAK-12239/content-tool/tool/src/bundle/helper.metaprops\ncontent/branches/SAK-12239/content-tool/tool/src/bundle/helper_ar.properties\ncontent/branches/SAK-12239/content-tool/tool/src/bundle/helper_ca.metaprops\ncontent/branches/SAK-12239/content-tool/tool/src/bundle/helper_es.metaprops\ncontent/branches/SAK-12239/content-tool/tool/src/bundle/helper_fr_CA.metaprops\ncontent/branches/SAK-12239/content-tool/tool/src/bundle/helper_ja.metaprops\ncontent/branches/SAK-12239/content-tool/tool/src/bundle/helper_ko.metaprops\ncontent/branches/SAK-12239/content-tool/tool/src/bundle/helper_nl.metaprops\ncontent/branches/SAK-12239/content-tool/tool/src/bundle/helper_zh_CN.metaprops\ncontent/branches/SAK-12239/content-tool/tool/src/bundle/right.metaprops\ncontent/branches/SAK-12239/content-tool/tool/src/bundle/right_ar.properties\ncontent/branches/SAK-12239/content-tool/tool/src/bundle/right_ca.metaprops\ncontent/branches/SAK-12239/content-tool/tool/src/bundle/right_fr_CA.properties\ncontent/branches/SAK-12239/content-tool/tool/src/bundle/right_ja.properties\ncontent/branches/SAK-12239/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java\ncontent/branches/SAK-12239/content-tool/tool/src/webapp/tools/sakai.resource.type.helper.xml\ncontent/branches/SAK-12239/content-tool/tool/src/webapp/vm/content/chef_resources_reorder.vm\ncontent/branches/SAK-12239/content-tool/tool/src/webapp/vm/content/sakai_resources_columns.vm\ncontent/branches/SAK-12239/content-tool/tool/src/webapp/vm/content/sakai_resources_list.vm\ncontent/branches/SAK-12239/content-tool/tool/src/webapp/vm/content/sakai_resources_props.vm\ncontent/branches/SAK-12239/content-tool/tool/src/webapp/vm/resources/sakai_access_text.vm\ncontent/branches/SAK-12239/content-tool/tool/src/webapp/vm/resources/sakai_create_text.vm\ncontent/branches/SAK-12239/content-tool/tool/src/webapp/vm/resources/sakai_revise_text.vm\ncontent/branches/SAK-12239/content-util/util/src/java/org/sakaiproject/content/util/BaseResourceType.java\ncontent/branches/SAK-12239/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/ContentHostingMultiplexService.java\ncontent/branches/SAK-12239/upgradeschema-mysql.config\ncontent/branches/SAK-12239/upgradeschema-oracle.config\nLog:\nSAK-12239\nSet svn:eol-style=native for all files in content module of SAK-12239 branch\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Wed Dec 12 13:00:27 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 13:00:27 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 13:00:27 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby awakenings.mail.umich.edu () with ESMTP id lBCI0QxN010036;\n\tWed, 12 Dec 2007 13:00:26 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 476021B3.CB56C.16602 ; \n\t12 Dec 2007 13:00:22 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E540A9BDDE;\n\tWed, 12 Dec 2007 18:00:18 +0000 (GMT)\nMessage-ID: <200712121752.lBCHq5uZ006283@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 547\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 17:59:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2217E353F5\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 17:59:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCHq5uo006285\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 12:52:05 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCHq5uZ006283\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 12:52:05 -0500\nDate: Wed, 12 Dec 2007 12:52:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 13:00:27 2007\nX-DSPAM-Confidence: 0.7599\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39141\n\nAuthor: ray@media.berkeley.edu\nDate: 2007-12-12 12:51:57 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39141\n\nModified:\ncomponent/branches/SAK-8315/component-api/api/pom.xml\ncomponent/branches/SAK-8315/component-api/component/pom.xml\ncomponent/branches/SAK-8315/component-impl/impl/pom.xml\ncomponent/branches/SAK-8315/component-impl/integration-test/pom.xml\ncomponent/branches/SAK-8315/component-impl/pack/pom.xml\ncomponent/branches/SAK-8315/component-shared-deploy/pom.xml\ncomponent/branches/SAK-8315/pom.xml\nLog:\nMerge -c38279 from trunk\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Wed Dec 12 12:40:44 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 12:40:44 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 12:40:44 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby jacknife.mail.umich.edu () with ESMTP id lBCHehbw014303;\n\tWed, 12 Dec 2007 12:40:43 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 47601D12.43CF3.18274 ; \n\t12 Dec 2007 12:40:37 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0F31C5DA04;\n\tWed, 12 Dec 2007 17:40:37 +0000 (GMT)\nMessage-ID: <200712121732.lBCHWVFh006140@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 779\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 17:40:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 60E8935F7A\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 17:40:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCHWWvH006142\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 12:32:32 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCHWVFh006140\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 12:32:31 -0500\nDate: Wed, 12 Dec 2007 12:32:31 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39140 - event/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 12:40:44 2007\nX-DSPAM-Confidence: 0.9802\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39140\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-12 12:32:29 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39140\n\nAdded:\nevent/branches/SAK-6216/\nLog:\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Wed Dec 12 10:50:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 10:50:37 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 10:50:37 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby mission.mail.umich.edu () with ESMTP id lBCFoYYt018353;\n\tWed, 12 Dec 2007 10:50:34 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 47600336.F163E.3184 ; \n\t12 Dec 2007 10:50:19 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DC1FC9A46E;\n\tWed, 12 Dec 2007 15:46:15 +0000 (GMT)\nMessage-ID: <200712121541.lBCFfxWG005972@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 26\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 15:45:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D794335F60\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 15:49:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCFfxS5005974\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 10:41:59 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCFfxWG005972\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 10:41:59 -0500\nDate: Wed, 12 Dec 2007 10:41:59 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39139 - gradebook/trunk/service/hibernate/src/hibernate/org/sakaiproject/tool/gradebook\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 10:50:37 2007\nX-DSPAM-Confidence: 0.9817\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39139\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-12 10:41:58 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39139\n\nModified:\ngradebook/trunk/service/hibernate/src/hibernate/org/sakaiproject/tool/gradebook/GradingEvent.hbm.xml\nLog:\nSAK-12429 =>\nadd index to hibernate mapping.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Wed Dec 12 10:18:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 10:18:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 10:18:51 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby fan.mail.umich.edu () with ESMTP id lBCFIogC026281;\n\tWed, 12 Dec 2007 10:18:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 475FFBD4.B27F8.22102 ; \n\t12 Dec 2007 10:18:47 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9AE329BB8B;\n\tWed, 12 Dec 2007 15:18:23 +0000 (GMT)\nMessage-ID: <200712121510.lBCFAaHS005894@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 848\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 15:18:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5080531B89\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 15:18:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCFAb0p005896\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 10:10:37 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCFAaHS005894\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 10:10:37 -0500\nDate: Wed, 12 Dec 2007 10:10:37 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 10:18:51 2007\nX-DSPAM-Confidence: 0.8430\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39138\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-12-12 10:10:30 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39138\n\nModified:\ngradebook/trunk/app/sakai-tool/src/webapp/WEB-INF/spring-facades.xml\ngradebook/trunk/app/standalone-app/src/webapp/WEB-INF/spring-facades.xml\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/GradebookDependentBean.java\ngradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookPermissionService.java\ngradebook/trunk/service/api/src/java/org/sakaiproject/tool/gradebook/facades/Authz.java\ngradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookPermissionServiceImpl.java\ngradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java\ngradebook/trunk/service/impl/src/java/org/sakaiproject/tool/gradebook/facades/sections/AuthzSectionsImpl.java\ngradebook/trunk/service/sakai-pack/src/webapp/WEB-INF/components.xml\nLog:\nSAK-12432\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12432\nCircular dependency between GradebookService and facade Authz\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Wed Dec 12 10:14:14 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 10:14:14 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 10:14:14 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby casino.mail.umich.edu () with ESMTP id lBCFEDJQ018438;\n\tWed, 12 Dec 2007 10:14:13 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 475FFABE.13299.9399 ; \n\t12 Dec 2007 10:14:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 78F759BB91;\n\tWed, 12 Dec 2007 15:13:48 +0000 (GMT)\nMessage-ID: <200712121506.lBCF62NU005882@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 996\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 15:13:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AB18231B89\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 15:13:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCF62LP005884\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 10:06:02 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCF62NU005882\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 10:06:02 -0500\nDate: Wed, 12 Dec 2007 10:06:02 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39137 - in gradebook/trunk/app/business/src/sql: mysql oracle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 10:14:14 2007\nX-DSPAM-Confidence: 0.9836\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39137\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-12 10:05:59 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39137\n\nAdded:\ngradebook/trunk/app/business/src/sql/mysql/SAK-12429.sql\ngradebook/trunk/app/business/src/sql/oracle/SAK-12429.sql\nLog:\nSAK-12429 => add index for improving performance.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ssmail@indiana.edu Wed Dec 12 09:34:59 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 09:34:59 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 09:34:59 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby mission.mail.umich.edu () with ESMTP id lBCEYwcq007405;\n\tWed, 12 Dec 2007 09:34:58 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 475FF186.A3F57.4473 ; \n\t12 Dec 2007 09:34:49 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D87BB9BB40;\n\tWed, 12 Dec 2007 14:34:56 +0000 (GMT)\nMessage-ID: <200712121427.lBCER8Zo005798@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 625\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 14:34:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CC69735EBC\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 14:34:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCER8cu005800\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 09:27:08 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCER8Zo005798\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 09:27:08 -0500\nDate: Wed, 12 Dec 2007 09:27:08 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ssmail@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ssmail@indiana.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 09:34:59 2007\nX-DSPAM-Confidence: 0.7551\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39136\n\nAuthor: ssmail@indiana.edu\nDate: 2007-12-12 09:27:04 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39136\n\nModified:\ncitations/branches/oncourse_2-4-x/citations-osid/xserver/src/java/org/sakaibrary/osid/repository/xserver/AssetIterator.java\ncitations/branches/oncourse_2-4-x/citations-osid/xserver/src/java/org/sakaibrary/xserver/XServer.java\ncitations/branches/oncourse_2-4-x/citations-osid/xserver/src/java/org/sakaibrary/xserver/XServerException.java\ncitations/branches/oncourse_2-4-x/citations-tool/tool/src/java/org/sakaiproject/citation/tool/CitationHelperAction.java\ncitations/branches/oncourse_2-4-x/oncourse-config/config/src/java/edu/indiana/osid/oncourse/OncourseOsidConfiguration.java\ncitations/branches/oncourse_2-4-x/oncourse-config/config/src/java/edu/iu/oncourse/util/CampusAffiliationService.java\nLog:\nUpdate to support Library Search at IUPUI\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Wed Dec 12 09:32:40 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 09:32:40 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 09:32:40 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby mission.mail.umich.edu () with ESMTP id lBCEWet6005946;\n\tWed, 12 Dec 2007 09:32:40 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 475FF100.21D76.32370 ; \n\t12 Dec 2007 09:32:35 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C44215055B;\n\tWed, 12 Dec 2007 14:32:52 +0000 (GMT)\nMessage-ID: <200712121424.lBCEOpEM005786@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 72\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 14:32:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5A2B735EBC\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 14:32:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCEOpWI005788\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 09:24:51 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCEOpEM005786\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 09:24:51 -0500\nDate: Wed, 12 Dec 2007 09:24:51 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39135 - oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/skin/default\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 09:32:40 2007\nX-DSPAM-Confidence: 0.7542\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39135\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-12 09:24:50 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39135\n\nModified:\noncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/skin/default/portal.css\nLog:\nmaking adjustments for IU color scheme\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Wed Dec 12 09:22:39 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 09:22:39 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 09:22:39 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby fan.mail.umich.edu () with ESMTP id lBCEMcaJ027700;\n\tWed, 12 Dec 2007 09:22:38 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 475FEEA9.3FC60.2011 ; \n\t12 Dec 2007 09:22:36 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3220D6496E;\n\tWed, 12 Dec 2007 14:22:38 +0000 (GMT)\nMessage-ID: <200712121414.lBCEEen5005760@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 434\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 14:22:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B7DF73583F\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 14:22:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCEEeC3005762\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 09:14:40 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCEEen5005760\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 09:14:40 -0500\nDate: Wed, 12 Dec 2007 09:14:40 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39134 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 09:22:39 2007\nX-DSPAM-Confidence: 0.8440\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39134\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-12 09:14:39 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39134\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nrevving up portal to get the timeout alert stuff\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Wed Dec 12 09:21:40 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 09:21:40 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 09:21:40 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby fan.mail.umich.edu () with ESMTP id lBCELZNE026722;\n\tWed, 12 Dec 2007 09:21:35 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 475FEE66.DE0B5.29176 ; \n\t12 Dec 2007 09:21:29 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 930F35055B;\n\tWed, 12 Dec 2007 14:21:48 +0000 (GMT)\nMessage-ID: <200712121413.lBCEDjxP005747@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 126\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 14:21:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5FA0C3583F\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 14:21:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCEDjDM005749\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 09:13:45 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCEDjxP005747\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 09:13:45 -0500\nDate: Wed, 12 Dec 2007 09:13:45 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39133 - portal/branches/oncourse_opc_122007/portal-render-engine-impl/pack/src/webapp/vm/defaultskin\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 09:21:40 2007\nX-DSPAM-Confidence: 0.6527\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39133\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-12 09:13:44 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39133\n\nModified:\nportal/branches/oncourse_opc_122007/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm\nLog:\nsvn merge -c 39132 https://source.sakaiproject.org/svn/portal/branches/SAK-8152\nU    portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm\n\nsvn log -r 39132 https://source.sakaiproject.org/svn/portal/branches/SAK-8152\n------------------------------------------------------------------------\nr39132 | josrodri@iupui.edu | 2007-12-12 09:08:18 -0500 (Wed, 12 Dec 2007) | 1 line\n\nSAK-8152: forgot the changes to macros.vm (ie, popup page - oops)\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom josrodri@iupui.edu Wed Dec 12 09:16:16 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 09:16:16 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 09:16:16 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby sleepers.mail.umich.edu () with ESMTP id lBCEGFX3001219;\n\tWed, 12 Dec 2007 09:16:15 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 475FED29.EDC6.19323 ; \n\t12 Dec 2007 09:16:11 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 10A7C5055B;\n\tWed, 12 Dec 2007 14:16:17 +0000 (GMT)\nMessage-ID: <200712121408.lBCE8JOg005727@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 535\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 14:15:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 290A83583F\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 14:15:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBCE8JxL005729\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 09:08:19 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBCE8JOg005727\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 09:08:19 -0500\nDate: Wed, 12 Dec 2007 09:08:19 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: josrodri@iupui.edu\nSubject: [sakai] svn commit: r39132 - portal/branches/SAK-8152/portal-render-engine-impl/pack/src/webapp/vm/defaultskin\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 09:16:16 2007\nX-DSPAM-Confidence: 0.6951\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39132\n\nAuthor: josrodri@iupui.edu\nDate: 2007-12-12 09:08:18 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39132\n\nModified:\nportal/branches/SAK-8152/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm\nLog:\nSAK-8152: forgot the changes to macros.vm (ie, popup page - oops)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Wed Dec 12 01:29:34 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 12 Dec 2007 01:29:34 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 12 Dec 2007 01:29:34 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby mission.mail.umich.edu () with ESMTP id lBC6TXER003628;\n\tWed, 12 Dec 2007 01:29:33 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 475F7FC5.C66A4.24956 ; \n\t12 Dec 2007 01:29:29 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 134CD9B5B7;\n\tWed, 12 Dec 2007 06:16:06 +0000 (GMT)\nMessage-ID: <200712120603.lBC63S17004247@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 663\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 06:04:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 528B935A06\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 06:10:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBC63TtC004249\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 01:03:29 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBC63S17004247\n\tfor source@collab.sakaiproject.org; Wed, 12 Dec 2007 01:03:28 -0500\nDate: Wed, 12 Dec 2007 01:03:28 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec 12 01:29:34 2007\nX-DSPAM-Confidence: 0.9791\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39131\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-12-12 01:03:24 -0500 (Wed, 12 Dec 2007)\nNew Revision: 39131\n\nAdded:\ngradebook/trunk/helper-app/\ngradebook/trunk/helper-app/pom.xml\ngradebook/trunk/helper-app/src/\ngradebook/trunk/helper-app/src/java/\ngradebook/trunk/helper-app/src/java/org/\ngradebook/trunk/helper-app/src/java/org/sakaiproject/\ngradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/\ngradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/\ngradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/entity/\ngradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/entity/GradebookEntryEntityProducer.java\ngradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/helper/\ngradebook/trunk/helper-app/src/java/org/sakaiproject/gradebook/tool/helper/AddGradebookItemProducer.java\ngradebook/trunk/helper-app/src/webapp/\ngradebook/trunk/helper-app/src/webapp/WEB-INF/\ngradebook/trunk/helper-app/src/webapp/WEB-INF/applicationContext.xml\ngradebook/trunk/helper-app/src/webapp/WEB-INF/requestContext.xml\ngradebook/trunk/helper-app/src/webapp/WEB-INF/web.xml\ngradebook/trunk/helper-app/src/webapp/content/\ngradebook/trunk/helper-app/src/webapp/content/css/\ngradebook/trunk/helper-app/src/webapp/content/js/\ngradebook/trunk/helper-app/src/webapp/content/templates/\ngradebook/trunk/helper-app/src/webapp/content/templates/assignment_add-gradebook-item.html\ngradebook/trunk/helper-app/src/webapp/tools/\ngradebook/trunk/helper-app/src/webapp/tools/sakai.gradebook.helpers.xml\nLog:\nNOJIRA Working on POST style Gradeitem Helper\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Tue Dec 11 23:56:36 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 23:56:36 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 23:56:36 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby panther.mail.umich.edu () with ESMTP id lBC4uZHk031437;\n\tTue, 11 Dec 2007 23:56:35 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 475F69FD.A4EA3.13803 ; \n\t11 Dec 2007 23:56:32 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5CA499B461;\n\tWed, 12 Dec 2007 04:56:27 +0000 (GMT)\nMessage-ID: <200712120448.lBC4mn2B004010@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 63\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 04:56:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8D16131B0D\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 04:56:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBC4mnfM004012\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 23:48:49 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBC4mn2B004010\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 23:48:49 -0500\nDate: Tue, 11 Dec 2007 23:48:49 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r39130 - content/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 23:56:36 2007\nX-DSPAM-Confidence: 0.9861\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39130\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-11 23:48:45 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39130\n\nModified:\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java\nLog:\nSAK-12238\nMerging in changes from sak jira ticket 12426 to allow quota query to replace cache for getting size of site resources collection.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Tue Dec 11 23:34:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 23:34:42 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 23:34:42 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby brazil.mail.umich.edu () with ESMTP id lBC4YfJC020812;\n\tTue, 11 Dec 2007 23:34:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 475F64DA.1342D.30317 ; \n\t11 Dec 2007 23:34:37 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4F1445A8CE;\n\tWed, 12 Dec 2007 04:34:45 +0000 (GMT)\nMessage-ID: <200712120426.lBC4QqUa003998@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 38\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 04:34:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C3CFD3560A\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 04:34:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBC4Qqnm004000\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 23:26:52 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBC4QqUa003998\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 23:26:52 -0500\nDate: Tue, 11 Dec 2007 23:26:52 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 23:34:42 2007\nX-DSPAM-Confidence: 0.9827\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39129\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-11 23:26:44 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39129\n\nModified:\ncontent/trunk/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingService.java\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\nLog:\nSAK-12426\nUse new query if new columns are ready.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ktsao@stanford.edu Tue Dec 11 20:19:22 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 20:19:22 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 20:19:22 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby chaos.mail.umich.edu () with ESMTP id lBC1JLFf014594;\n\tTue, 11 Dec 2007 20:19:21 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 475F3712.6A5D6.6102 ; \n\t11 Dec 2007 20:19:18 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C9AF69B356;\n\tWed, 12 Dec 2007 00:34:33 +0000 (GMT)\nMessage-ID: <200712120008.lBC08Qvc003703@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 494\n          for <source@collab.sakaiproject.org>;\n          Wed, 12 Dec 2007 00:33:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B983135096\n\tfor <source@collab.sakaiproject.org>; Wed, 12 Dec 2007 00:15:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBC08QDH003705\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 19:08:26 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBC08Qvc003703\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 19:08:26 -0500\nDate: Tue, 11 Dec 2007 19:08:26 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ktsao@stanford.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ktsao@stanford.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 20:19:22 2007\nX-DSPAM-Confidence: 0.9801\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39128\n\nAuthor: ktsao@stanford.edu\nDate: 2007-12-11 19:08:16 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39128\n\nModified:\nsam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/TotalScoreListener.java\nsam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/TotalScoreUpdateListener.java\nsam/trunk/samigo-app/src/webapp/jsf/evaluation/totalScores.jsp\nsam/trunk/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacadeQueries.java\nsam/trunk/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacadeQueriesAPI.java\nsam/trunk/samigo-services/src/java/org/sakaiproject/tool/assessment/services/GradingService.java\nLog:\nrevert last checkin for SAK-12098\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Tue Dec 11 19:00:21 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 19:00:21 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 19:00:21 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby score.mail.umich.edu () with ESMTP id lBC00JUc024481;\n\tTue, 11 Dec 2007 19:00:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 475F248C.D9CC1.13253 ; \n\t11 Dec 2007 19:00:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 968709988F;\n\tWed, 12 Dec 2007 00:00:07 +0000 (GMT)\nMessage-ID: <200712112352.lBBNqKOM003656@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 504\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 23:59:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9D69F34EAE\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 23:59:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBNqKsq003658\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 18:52:20 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBNqKOM003656\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 18:52:20 -0500\nDate: Tue, 11 Dec 2007 18:52:20 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [sakai] svn commit: r39127 - in component/branches/SAK-8315-SAK-12166/component-api/component/src/java/org/sakaiproject: component/impl util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 19:00:21 2007\nX-DSPAM-Confidence: 0.6945\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39127\n\nAuthor: ray@media.berkeley.edu\nDate: 2007-12-11 18:52:11 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39127\n\nAdded:\ncomponent/branches/SAK-8315-SAK-12166/component-api/component/src/java/org/sakaiproject/util/ComponentApplicationContext.java\ncomponent/branches/SAK-8315-SAK-12166/component-api/component/src/java/org/sakaiproject/util/ContainerApplicationContext.java\nRemoved:\ncomponent/branches/SAK-8315-SAK-12166/component-api/component/src/java/org/sakaiproject/util/SakaiApplicationContext.java\nModified:\ncomponent/branches/SAK-8315-SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/SpringCompMgr.java\ncomponent/branches/SAK-8315-SAK-12166/component-api/component/src/java/org/sakaiproject/util/ComponentsLoader.java\ncomponent/branches/SAK-8315-SAK-12166/component-api/component/src/java/org/sakaiproject/util/ReversiblePropertyOverrideConfigurer.java\nLog:\nShow 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\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Tue Dec 11 18:51:40 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 18:51:40 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 18:51:40 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby flawless.mail.umich.edu () with ESMTP id lBBNpdfV011970;\n\tTue, 11 Dec 2007 18:51:39 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 475F2280.13E5E.727 ; \n\t11 Dec 2007 18:51:30 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 869FB50B73;\n\tTue, 11 Dec 2007 23:51:27 +0000 (GMT)\nMessage-ID: <200712112343.lBBNho2t003644@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 830\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 23:51:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A753434EAE\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 23:51:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBNhovc003646\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 18:43:50 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBNho2t003644\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 18:43:50 -0500\nDate: Tue, 11 Dec 2007 18:43:50 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [sakai] svn commit: r39126 - component/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 18:51:40 2007\nX-DSPAM-Confidence: 0.7548\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39126\n\nAuthor: ray@media.berkeley.edu\nDate: 2007-12-11 18:43:47 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39126\n\nAdded:\ncomponent/branches/SAK-8315-SAK-12166/\nLog:\nTemporary branch for proof of concept combination of standard bean definition configurations and proxied component services\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Tue Dec 11 18:42:03 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 18:42:03 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 18:42:03 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby awakenings.mail.umich.edu () with ESMTP id lBBNg18f011569;\n\tTue, 11 Dec 2007 18:42:01 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 475F2044.FD1.7445 ; \n\t11 Dec 2007 18:41:58 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id ED7E1517C3;\n\tTue, 11 Dec 2007 23:41:52 +0000 (GMT)\nMessage-ID: <200712112334.lBBNY7s0003632@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 527\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 23:41:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 285AB34E38\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 23:41:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBNY8Ef003634\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 18:34:08 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBNY7s0003632\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 18:34:07 -0500\nDate: Tue, 11 Dec 2007 18:34:07 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r39125 - content/trunk/content-tool/tool/src/java/org/sakaiproject/content/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 18:42:03 2007\nX-DSPAM-Confidence: 0.9840\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39125\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-11 18:34:03 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39125\n\nModified:\ncontent/trunk/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\nLog:\nSAK-12402\nRemove pipe from tool-session when it is found and actioned is not completed, canceled or in error condition.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom louis@media.berkeley.edu Tue Dec 11 18:23:36 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 18:23:36 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 18:23:36 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby sleepers.mail.umich.edu () with ESMTP id lBBNNY4F003476;\n\tTue, 11 Dec 2007 18:23:34 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 475F1BF1.8F5F2.19991 ; \n\t11 Dec 2007 18:23:32 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E944251AC2;\n\tTue, 11 Dec 2007 23:23:26 +0000 (GMT)\nMessage-ID: <200712112315.lBBNFpqX003595@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 411\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 23:23:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BB55A316EF\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 23:23:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBNFpSX003597\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 18:15:51 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBNFpqX003595\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 18:15:51 -0500\nDate: Tue, 11 Dec 2007 18:15:51 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: louis@media.berkeley.edu\nSubject: [sakai] svn commit: r39124 - sections/branches/sakai_2-5-x/sections-app-util/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 18:23:36 2007\nX-DSPAM-Confidence: 0.6939\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39124\n\nAuthor: louis@media.berkeley.edu\nDate: 2007-12-11 18:15:47 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39124\n\nModified:\nsections/branches/sakai_2-5-x/sections-app-util/src/bundle/sections.properties\nLog:\nSAK-9274 TA role can't assign TAs in Section Info; instructions indicate that TAs can\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ktsao@stanford.edu Tue Dec 11 17:56:15 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 17:56:15 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 17:56:15 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby flawless.mail.umich.edu () with ESMTP id lBBMuEZu019299;\n\tTue, 11 Dec 2007 17:56:14 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 475F1587.C45B8.12352 ; \n\t11 Dec 2007 17:56:10 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5C9689B12F;\n\tTue, 11 Dec 2007 22:56:06 +0000 (GMT)\nMessage-ID: <200712112248.lBBMmVOR003557@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1022\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 22:55:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D0AE7350CB\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 22:55:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBMmVNU003559\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 17:48:32 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBMmVOR003557\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 17:48:31 -0500\nDate: Tue, 11 Dec 2007 17:48:31 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ktsao@stanford.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ktsao@stanford.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 17:56:15 2007\nX-DSPAM-Confidence: 0.9804\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39123\n\nAuthor: ktsao@stanford.edu\nDate: 2007-12-11 17:48:22 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39123\n\nModified:\nsam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/QuestionScoreUpdateListener.java\nsam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/StudentScoreUpdateListener.java\nsam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/TotalScoreUpdateListener.java\nsam/trunk/samigo-services/pom.xml\nsam/trunk/samigo-services/src/java/org/sakaiproject/tool/assessment/services/GradingService.java\nLog:\nSAK-12348\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gbhatnag@umich.edu Tue Dec 11 17:42:41 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 17:42:41 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 17:42:41 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby brazil.mail.umich.edu () with ESMTP id lBBMgeZH005085;\n\tTue, 11 Dec 2007 17:42:40 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 475F1259.9E08E.9848 ; \n\t11 Dec 2007 17:42:36 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 539636D6F2;\n\tTue, 11 Dec 2007 22:42:31 +0000 (GMT)\nMessage-ID: <200712112234.lBBMYoHA003526@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 859\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 22:42:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1B8DB316EA\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 22:42:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBMYpl5003528\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 17:34:51 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBMYoHA003526\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 17:34:50 -0500\nDate: Tue, 11 Dec 2007 17:34:50 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gbhatnag@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gbhatnag@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 17:42:41 2007\nX-DSPAM-Confidence: 0.8473\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39122\n\nAuthor: gbhatnag@umich.edu\nDate: 2007-12-11 17:34:44 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39122\n\nModified:\ncitations/trunk/citations-impl/impl/src/java/org/sakaiproject/citation/impl/BaseSearchManager.java\ncitations/trunk/citations-tool/tool/src/webapp/vm/citation/_databases.vm\ncitations/trunk/citations-util/util/src/bundle/citations.properties\nLog:\nSAK-11999 catching for undefined databases and empty categories in BaseSearchManager.BasicSearchDatabaseHierarchy.BasicSearchCategory. Template changes to account for empty categories.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ktsao@stanford.edu Tue Dec 11 17:13:12 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 17:13:12 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 17:13:12 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby chaos.mail.umich.edu () with ESMTP id lBBMDBQY030296;\n\tTue, 11 Dec 2007 17:13:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 475F0B6E.AD148.7188 ; \n\t11 Dec 2007 17:13:05 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 07C8B9ABD6;\n\tTue, 11 Dec 2007 22:13:00 +0000 (GMT)\nMessage-ID: <200712112205.lBBM58ab003483@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 591\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 22:12:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EC4EF316EF\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 22:12:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBM583a003485\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 17:05:08 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBM58ab003483\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 17:05:08 -0500\nDate: Tue, 11 Dec 2007 17:05:08 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ktsao@stanford.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ktsao@stanford.edu\nSubject: [sakai] svn commit: r39121 - sam/trunk/samigo-app/src/webapp/jsf/delivery\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 17:13:12 2007\nX-DSPAM-Confidence: 0.9804\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39121\n\nAuthor: ktsao@stanford.edu\nDate: 2007-12-11 17:05:03 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39121\n\nModified:\nsam/trunk/samigo-app/src/webapp/jsf/delivery/deliverAssessment.jsp\nLog:\nSAK-12269\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Tue Dec 11 16:06:29 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 16:06:29 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 16:06:29 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby faithful.mail.umich.edu () with ESMTP id lBBL6Sox006081;\n\tTue, 11 Dec 2007 16:06:28 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 475EFBCF.6C858.13190 ; \n\t11 Dec 2007 16:06:26 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4757A9B189;\n\tTue, 11 Dec 2007 21:06:12 +0000 (GMT)\nMessage-ID: <200712112058.lBBKwVn0003283@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 830\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 21:05:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C7CEB3152D\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 21:05:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBKwVTx003285\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 15:58:31 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBKwVn0003283\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 15:58:31 -0500\nDate: Tue, 11 Dec 2007 15:58:31 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39120 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 16:06:29 2007\nX-DSPAM-Confidence: 0.9795\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39120\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-11 15:58:30 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39120\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nIncluding some more gradebook stuff and timeout alert\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Tue Dec 11 15:59:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 15:59:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 15:59:51 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby casino.mail.umich.edu () with ESMTP id lBBKxoTG013578;\n\tTue, 11 Dec 2007 15:59:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 475EFA40.30B6A.19991 ; \n\t11 Dec 2007 15:59:47 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 34EFB9B17A;\n\tTue, 11 Dec 2007 20:59:43 +0000 (GMT)\nMessage-ID: <200712112052.lBBKqBPe003270@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 629\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 20:59:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4163234EA0\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 20:59:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBKqBBc003272\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 15:52:11 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBKqBPe003270\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 15:52:11 -0500\nDate: Tue, 11 Dec 2007 15:52:11 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39119 - in portal/branches/oncourse_opc_122007/portal-impl/impl/src: bundle java/org/sakaiproject/portal/charon\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 15:59:51 2007\nX-DSPAM-Confidence: 0.9888\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39119\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-11 15:52:09 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39119\n\nModified:\nportal/branches/oncourse_opc_122007/portal-impl/impl/src/bundle/sitenav.properties\nportal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java\nLog:\n\nsvn merge -c 39109 https://source.sakaiproject.org/svn/portal/branches/SAK-8152\nU    portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java\nC    portal-impl/impl/src/bundle/sitenav.properties\n\nsvn log -r 39109 https://source.sakaiproject.org/svn/portal/branches/SAK-8152\n------------------------------------------------------------------------\nr39109 | josrodri@iupui.edu | 2007-12-11 14:10:26 -0500 (Tue, 11 Dec 2007) | 1 line\n\nSAK-8152: changes to support timeout alert popup - bundle messages for UI, changes to SkinnableCharonPortal.java to put additional values into context\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Tue Dec 11 15:58:22 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 15:58:22 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 15:58:22 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby brazil.mail.umich.edu () with ESMTP id lBBKwLTA005931;\n\tTue, 11 Dec 2007 15:58:21 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 475EF9E5.7DA3.15408 ; \n\t11 Dec 2007 15:58:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0752E9B148;\n\tTue, 11 Dec 2007 20:58:12 +0000 (GMT)\nMessage-ID: <200712112050.lBBKoefm003258@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 986\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 20:58:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D0D9134EA0\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 20:58:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBKoeUA003260\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 15:50:40 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBKoefm003258\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 15:50:40 -0500\nDate: Tue, 11 Dec 2007 15:50:40 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39118 - in oncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp: js skin/default\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 15:58:22 2007\nX-DSPAM-Confidence: 0.8496\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39118\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-11 15:50:39 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39118\n\nModified:\noncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/js/headscripts.js\noncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/skin/default/portal.css\nLog:\nsvn merge -c 39110 https://source.sakaiproject.org/svn/reference/branches/SAK-8152\nC    library/src/webapp/skin/default/portal.css\nC    library/src/webapp/js/headscripts.js\n\nsvn log -r 39110 https://source.sakaiproject.org/svn/reference/branches/SAK-8152\n------------------------------------------------------------------------\nr39110 | josrodri@iupui.edu | 2007-12-11 14:16:48 -0500 (Tue, 11 Dec 2007) | 1 line\n\nSAK-8152: display/hiding of timeout alert does via javascript, promoted css class portletTitleWrap to be on its own and not within #col1, etc.\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Tue Dec 11 15:47:14 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 15:47:14 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 15:47:14 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby godsend.mail.umich.edu () with ESMTP id lBBKlDpO011631;\n\tTue, 11 Dec 2007 15:47:13 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 475EF74B.86657.24164 ; \n\t11 Dec 2007 15:47:10 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 674EA9B148;\n\tTue, 11 Dec 2007 20:47:03 +0000 (GMT)\nMessage-ID: <200712112039.lBBKdGgQ003212@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 723\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 20:46:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 821BA34EA0\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 20:46:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBKdGJF003214\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 15:39:16 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBKdGgQ003212\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 15:39:16 -0500\nDate: Tue, 11 Dec 2007 15:39:16 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 15:47:14 2007\nX-DSPAM-Confidence: 0.9792\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39117\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-11 15:39:14 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39117\n\nRemoved:\noncourse/branches/reference_overlay_oncourse_opc_122007/library/maven.xml\noncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/content/\noncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/image/\noncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/js/jquery-1.1.2.js\noncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/js/jquery.js\noncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/js/searchbox.js\noncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/skin/default/access.css\noncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/skin/default/images/\noncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/skin/default/tool.css\noncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/skin/home/\noncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/skin/portfolio/\noncourse/branches/reference_overlay_oncourse_opc_122007/library/src/webapp/skin/tool_base.css\nLog:\nremoving unneeded stuff\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Tue Dec 11 15:39:40 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 15:39:40 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 15:39:40 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby casino.mail.umich.edu () with ESMTP id lBBKddAl001070;\n\tTue, 11 Dec 2007 15:39:39 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 475EF585.8C047.18010 ; \n\t11 Dec 2007 15:39:36 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 476609B14B;\n\tTue, 11 Dec 2007 20:39:29 +0000 (GMT)\nMessage-ID: <200712112031.lBBKVoed003200@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 160\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 20:39:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7B8FC34EA0\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 20:39:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBKVom2003202\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 15:31:50 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBKVoed003200\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 15:31:50 -0500\nDate: Tue, 11 Dec 2007 15:31:50 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39116 - oncourse/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 15:39:40 2007\nX-DSPAM-Confidence: 0.9797\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39116\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-11 15:31:49 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39116\n\nAdded:\noncourse/branches/reference_overlay_oncourse_opc_122007/\nLog:\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gbhatnag@umich.edu Tue Dec 11 15:12:31 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 15:12:31 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 15:12:30 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby casino.mail.umich.edu () with ESMTP id lBBKCUuq018779;\n\tTue, 11 Dec 2007 15:12:30 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 475EEF26.E5853.15117 ; \n\t11 Dec 2007 15:12:25 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 10EB59B114;\n\tTue, 11 Dec 2007 20:12:22 +0000 (GMT)\nMessage-ID: <200712112004.lBBK4f6W003089@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 517\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 20:12:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 21FB933C77\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 20:12:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBK4gJW003091\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 15:04:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBK4f6W003089\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 15:04:42 -0500\nDate: Tue, 11 Dec 2007 15:04:42 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gbhatnag@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gbhatnag@umich.edu\nSubject: [sakai] svn commit: r39115 - citations/trunk/citations-tool/tool/src/java/org/sakaiproject/citation/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 15:12:30 2007\nX-DSPAM-Confidence: 0.9825\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39115\n\nAuthor: gbhatnag@umich.edu\nDate: 2007-12-11 15:04:40 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39115\n\nModified:\ncitations/trunk/citations-tool/tool/src/java/org/sakaiproject/citation/tool/CitationHelperAction.java\nLog:\nSAK-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.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Tue Dec 11 15:11:08 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 15:11:08 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 15:11:08 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby fan.mail.umich.edu () with ESMTP id lBBKB7Dn023033;\n\tTue, 11 Dec 2007 15:11:07 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 475EEEC9.5DDDB.19253 ; \n\t11 Dec 2007 15:10:52 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8B7F29B116;\n\tTue, 11 Dec 2007 20:10:45 +0000 (GMT)\nMessage-ID: <200712112003.lBBK37pb003077@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 154\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 20:10:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C3B9134E24\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 20:10:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBK37oX003079\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 15:03:07 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBK37pb003077\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 15:03:07 -0500\nDate: Tue, 11 Dec 2007 15:03:07 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r39114 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 15:11:08 2007\nX-DSPAM-Confidence: 0.9864\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39114\n\nAuthor: dlhaines@umich.edu\nDate: 2007-12-11 15:03:06 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39114\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties\nLog:\nCTools: update patch configuration for 2.4.xQ\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Tue Dec 11 15:02:54 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 15:02:54 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 15:02:54 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby mission.mail.umich.edu () with ESMTP id lBBK2p8h015907;\n\tTue, 11 Dec 2007 15:02:51 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 475EECE4.34BEC.27016 ; \n\t11 Dec 2007 15:02:47 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A41A39AC21;\n\tTue, 11 Dec 2007 20:02:41 +0000 (GMT)\nMessage-ID: <200712111954.lBBJspCF003045@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 366\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 20:02:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 199BE34E1A\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 20:02:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBJsqrB003047\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 14:54:52 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBJspCF003045\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 14:54:51 -0500\nDate: Tue, 11 Dec 2007 14:54:51 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 15:02:54 2007\nX-DSPAM-Confidence: 0.7626\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39113\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-11 14:54:49 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39113\n\nModified:\ngradebook/branches/oncourse_opc_122007/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties\ngradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java\ngradebook/branches/oncourse_opc_122007/app/ui/src/webapp/addAssignment.jsp\ngradebook/branches/oncourse_opc_122007/app/ui/src/webapp/inc/bulkNewItems.jspf\ngradebook/branches/oncourse_opc_122007/app/ui/src/webapp/js/multiItemAdd.js\nLog:\nsvn merge -c 38968 https://source.sakaiproject.org/svn/gradebook/trunk\nU    app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java\nU    app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties\nU    app/ui/src/webapp/inc/bulkNewItems.jspf\nU    app/ui/src/webapp/js/multiItemAdd.js\nU    app/ui/src/webapp/addAssignment.jsp\n\nsvn log -r 38968 https://source.sakaiproject.org/svn/gradebook/trunk\n------------------------------------------------------------------------\nr38968 | josrodri@iupui.edu | 2007-12-04 15:36:51 -0500 (Tue, 04 Dec 2007) | 4 lines\n\nSAK-12285: removed dropdown to expose a specific number of add panes at once\nSAK-12287: added highlight for alternate add panes (Resources file upload pane styling/coloring) \nSAK-12288: trivial capitalization fix\nSAK-12286: re-added '* means required' text to add page\n------------------------------------------------------------------------\n\nsvn merge -c 39030 https://source.sakaiproject.org/svn/gradebook/trunk\nG    app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java\nG    app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties\nG    app/ui/src/webapp/inc/bulkNewItems.jspf\nG    app/ui/src/webapp/js/multiItemAdd.js\n\nsvn log -r 39030 https://source.sakaiproject.org/svn/gradebook/trunk\n------------------------------------------------------------------------\nr39030 | josrodri@iupui.edu | 2007-12-07 10:51:35 -0500 (Fri, 07 Dec 2007) | 3 lines\n\nSAK-12114: main bulk gradebook item add\nSAK-12287: redid styling\nSAK-12284: removal of item in FF with exactly 2 items now working\n------------------------------------------------------------------------\n\nsvn merge -c 39111 https://source.sakaiproject.org/svn/gradebook/trunk\nU    app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\n\nsvn log -r 39111 https://source.sakaiproject.org/svn/gradebook/trunk\n------------------------------------------------------------------------\nr39111 | cwen@iupui.edu | 2007-12-11 14:26:27 -0500 (Tue, 11 Dec 2007) | 1 line\n\nSAK-10427 & SAK-12114 => bulk creation for ungraded items.\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Tue Dec 11 14:51:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 14:51:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 14:51:17 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby fan.mail.umich.edu () with ESMTP id lBBJpGEa010402;\n\tTue, 11 Dec 2007 14:51:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 475EEA2E.E49E3.1817 ; \n\t11 Dec 2007 14:51:13 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3DA509B0E5;\n\tTue, 11 Dec 2007 19:50:57 +0000 (GMT)\nMessage-ID: <200712111943.lBBJh6XA003023@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 410\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 19:50:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C0A9934C67\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 19:50:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBJh60Z003025\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 14:43:06 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBJh6XA003023\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 14:43:06 -0500\nDate: Tue, 11 Dec 2007 14:43:06 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 14:51:17 2007\nX-DSPAM-Confidence: 0.9810\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39112\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-11 14:43:02 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39112\n\nModified:\ngradebook/branches/oncourse_opc_122007/app/business/src/java/org/sakaiproject/tool/gradebook/business/GradebookManager.java\ngradebook/branches/oncourse_opc_122007/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\ngradebook/branches/oncourse_opc_122007/app/business/src/sql/mysql/SAK-10427.sql\ngradebook/branches/oncourse_opc_122007/app/business/src/sql/oracle/SAK-10427.sql\ngradebook/branches/oncourse_opc_122007/app/standalone-app/src/test/org/sakaiproject/tool/gradebook/test/GradebookManagerOPCTest.java\ngradebook/branches/oncourse_opc_122007/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties\ngradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/jsf/ClassAvgConverter.java\ngradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentDetailsBean.java\ngradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/GradebookDependentBean.java\ngradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/GradebookSetupBean.java\ngradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/InstructorViewBean.java\ngradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/ViewByStudentBean.java\ngradebook/branches/oncourse_opc_122007/app/ui/src/webapp/assignmentDetails.jsp\ngradebook/branches/oncourse_opc_122007/app/ui/src/webapp/gradebookSetup.jsp\ngradebook/branches/oncourse_opc_122007/app/ui/src/webapp/inc/assignmentEditing.jspf\ngradebook/branches/oncourse_opc_122007/app/ui/src/webapp/instructorView.jsp\ngradebook/branches/oncourse_opc_122007/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java\ngradebook/branches/oncourse_opc_122007/service/hibernate/src/hibernate/org/sakaiproject/tool/gradebook/GradeRecord.hbm.xml\ngradebook/branches/oncourse_opc_122007/service/hibernate/src/java/org/sakaiproject/tool/gradebook/Assignment.java\ngradebook/branches/oncourse_opc_122007/service/hibernate/src/java/org/sakaiproject/tool/gradebook/AssignmentGradeRecord.java\ngradebook/branches/oncourse_opc_122007/service/hibernate/src/java/org/sakaiproject/tool/gradebook/Category.java\ngradebook/branches/oncourse_opc_122007/service/impl/src/java/org/sakaiproject/component/gradebook/BaseHibernateManager.java\ngradebook/branches/oncourse_opc_122007/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java\nLog:\nmerge for SAK-10427\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Tue Dec 11 14:34:28 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 14:34:28 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 14:34:28 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby awakenings.mail.umich.edu () with ESMTP id lBBJYRgX029388;\n\tTue, 11 Dec 2007 14:34:27 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 475EE63D.78748.25369 ; \n\t11 Dec 2007 14:34:24 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 562369B0B2;\n\tTue, 11 Dec 2007 19:34:19 +0000 (GMT)\nMessage-ID: <200712111926.lBBJQSrv002975@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 424\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 19:33:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A25C634C9D\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 19:33:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBJQShD002977\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 14:26:28 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBJQSrv002975\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 14:26:28 -0500\nDate: Tue, 11 Dec 2007 14:26:28 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r39111 - gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 14:34:28 2007\nX-DSPAM-Confidence: 0.9811\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39111\n\nAuthor: cwen@iupui.edu\nDate: 2007-12-11 14:26:27 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39111\n\nModified:\ngradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\nLog:\nSAK-10427 & SAK-12114 => bulk creation for ungraded items.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom josrodri@iupui.edu Tue Dec 11 14:24:48 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 14:24:48 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 14:24:48 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby faithful.mail.umich.edu () with ESMTP id lBBJOk4I006053;\n\tTue, 11 Dec 2007 14:24:46 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 475EE3F9.63D0.23778 ; \n\t11 Dec 2007 14:24:43 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 46D179B021;\n\tTue, 11 Dec 2007 19:24:37 +0000 (GMT)\nMessage-ID: <200712111916.lBBJGomV002954@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 412\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 19:24:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 49D1F34C9D\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 19:24:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBJGo5J002956\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 14:16:50 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBJGomV002954\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 14:16:50 -0500\nDate: Tue, 11 Dec 2007 14:16:50 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: josrodri@iupui.edu\nSubject: [sakai] svn commit: r39110 - in reference/branches/SAK-8152/library/src/webapp: js skin/default\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 14:24:48 2007\nX-DSPAM-Confidence: 0.8434\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39110\n\nAuthor: josrodri@iupui.edu\nDate: 2007-12-11 14:16:48 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39110\n\nModified:\nreference/branches/SAK-8152/library/src/webapp/js/headscripts.js\nreference/branches/SAK-8152/library/src/webapp/skin/default/portal.css\nLog:\nSAK-8152: display/hiding of timeout alert does via javascript, promoted css class portletTitleWrap to be on its own and not within #col1, etc.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom josrodri@iupui.edu Tue Dec 11 14:18:16 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 14:18:16 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 14:18:16 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby panther.mail.umich.edu () with ESMTP id lBBJIF9J018204;\n\tTue, 11 Dec 2007 14:18:15 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 475EE26F.5CBCA.26175 ; \n\t11 Dec 2007 14:18:10 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0037F99753;\n\tTue, 11 Dec 2007 19:18:04 +0000 (GMT)\nMessage-ID: <200712111910.lBBJASdb002942@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 919\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 19:17:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 32FF734D47\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 19:17:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBJASSg002944\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 14:10:28 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBJASdb002942\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 14:10:28 -0500\nDate: Tue, 11 Dec 2007 14:10:28 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: josrodri@iupui.edu\nSubject: [sakai] svn commit: r39109 - in portal/branches/SAK-8152/portal-impl/impl/src: bundle java/org/sakaiproject/portal/charon\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 14:18:16 2007\nX-DSPAM-Confidence: 0.9826\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39109\n\nAuthor: josrodri@iupui.edu\nDate: 2007-12-11 14:10:26 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39109\n\nModified:\nportal/branches/SAK-8152/portal-impl/impl/src/bundle/sitenav.properties\nportal/branches/SAK-8152/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java\nLog:\nSAK-8152: changes to support timeout alert popup - bundle messages for UI, changes to SkinnableCharonPortal.java to put additional values into context\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Tue Dec 11 13:28:39 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 13:28:39 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 13:28:39 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby fan.mail.umich.edu () with ESMTP id lBBIScu1024968;\n\tTue, 11 Dec 2007 13:28:38 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 475ED6C8.19C8C.23078 ; \n\t11 Dec 2007 13:28:32 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 63C8E9984B;\n\tTue, 11 Dec 2007 18:28:09 +0000 (GMT)\nMessage-ID: <200712111808.lBBI8Blt002875@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 398\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 18:15:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 32F4234C9D\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 18:15:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBI8BY2002877\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 13:08:11 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBI8Blt002875\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 13:08:11 -0500\nDate: Tue, 11 Dec 2007 13:08:11 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r39108 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 13:28:39 2007\nX-DSPAM-Confidence: 0.9851\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39108\n\nAuthor: dlhaines@umich.edu\nDate: 2007-12-11 13:08:09 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39108\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties\nLog:\nCTools: add latest assignments post-2-4 to build.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Tue Dec 11 12:58:11 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 12:58:11 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 12:58:11 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby brazil.mail.umich.edu () with ESMTP id lBBHwBZE013206;\n\tTue, 11 Dec 2007 12:58:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 475ECFAE.35CA9.12543 ; \n\t11 Dec 2007 12:58:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D4C0A9AFD8;\n\tTue, 11 Dec 2007 17:40:59 +0000 (GMT)\nMessage-ID: <200712111719.lBBHJMGp002734@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 480\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 17:40:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B507A34C85\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 17:26:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBHJMqC002736\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 12:19:23 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBHJMGp002734\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 12:19:22 -0500\nDate: Tue, 11 Dec 2007 12:19:22 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39107 - assignment/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 12:58:11 2007\nX-DSPAM-Confidence: 0.9902\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39107\n\nAuthor: zqian@umich.edu\nDate: 2007-12-11 12:19:21 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39107\n\nRemoved:\nassignment/branches/post-2-4-solution1/\nLog:\nThe branch is no longer needed. Was created for testing a fix only. And the fix has been merged into post-2-4 in r39106.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Tue Dec 11 12:42:20 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 12:42:20 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 12:42:20 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby faithful.mail.umich.edu () with ESMTP id lBBHgJAV027157;\n\tTue, 11 Dec 2007 12:42:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 475ECBEE.75097.20141 ; \n\t11 Dec 2007 12:42:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id ACA9F9AF41;\n\tTue, 11 Dec 2007 17:25:00 +0000 (GMT)\nMessage-ID: <200712111716.lBBHGCaC002708@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 520\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 17:23:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2BFB334C7B\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 17:23:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBHGC0e002710\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 12:16:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBHGCaC002708\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 12:16:12 -0500\nDate: Tue, 11 Dec 2007 12:16:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39106 - assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 12:42:20 2007\nX-DSPAM-Confidence: 0.9834\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39106\n\nAuthor: zqian@umich.edu\nDate: 2007-12-11 12:16:10 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39106\n\nModified:\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionController.java\nLog:\nFix to SAK-11821:\n\ncommit the connection to avoid the 'set transaction' problem message when running with Oracle.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Tue Dec 11 10:21:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 10:21:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 10:21:17 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby panther.mail.umich.edu () with ESMTP id lBBFLG25004960;\n\tTue, 11 Dec 2007 10:21:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 475EAAE1.16046.31199 ; \n\t11 Dec 2007 10:21:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id F053E9AAD6;\n\tTue, 11 Dec 2007 15:21:03 +0000 (GMT)\nMessage-ID: <200712111513.lBBFDMjt002426@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 672\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 15:20:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9580134B46\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 15:20:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBFDMRB002428\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 10:13:22 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBFDMjt002426\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 10:13:22 -0500\nDate: Tue, 11 Dec 2007 10:13:22 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [sakai] svn commit: r39105 - in gradebook/trunk/service: api/src/java/org/sakaiproject/service/gradebook/shared impl/src/java/org/sakaiproject/component/gradebook\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 10:21:17 2007\nX-DSPAM-Confidence: 0.9806\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39105\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-12-11 10:13:21 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39105\n\nModified:\ngradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java\ngradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java\nLog:\nSAK-12175\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12175\nCreate methods required for gb integration with the Assignment2 tool\ngetAllGbItems\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Tue Dec 11 10:06:08 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 10:06:08 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 10:06:08 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby fan.mail.umich.edu () with ESMTP id lBBF672u021652;\n\tTue, 11 Dec 2007 10:06:07 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 475EA744.405FE.23734 ; \n\t11 Dec 2007 10:05:43 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 296529AA72;\n\tTue, 11 Dec 2007 15:05:11 +0000 (GMT)\nMessage-ID: <200712111458.lBBEw6Jt002360@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 684\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 15:04:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3775831555\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 15:05:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBEw6vj002362\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 09:58:06 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBEw6Jt002360\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 09:58:06 -0500\nDate: Tue, 11 Dec 2007 09:58:06 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39104 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 10:06:08 2007\nX-DSPAM-Confidence: 0.8419\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39104\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-11 09:58:05 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39104\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nRevving up externals\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Tue Dec 11 09:51:29 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 09:51:29 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 09:51:29 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby jacknife.mail.umich.edu () with ESMTP id lBBEpTvj019488;\n\tTue, 11 Dec 2007 09:51:29 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 475EA3E2.B10F9.4939 ; \n\t11 Dec 2007 09:51:17 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C8F129AAAE;\n\tTue, 11 Dec 2007 14:49:12 +0000 (GMT)\nMessage-ID: <200712111442.lBBEg4BV002332@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 168\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 14:48:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9B17234AA5\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 14:49:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBEg4ew002334\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 09:42:04 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBEg4BV002332\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 09:42:04 -0500\nDate: Tue, 11 Dec 2007 09:42:04 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39103 - msgcntr/branches/oncourse_opc_122007/messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 09:51:29 2007\nX-DSPAM-Confidence: 0.7613\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39103\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-11 09:42:03 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39103\n\nModified:\nmsgcntr/branches/oncourse_opc_122007/messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/AreaManagerImpl.java\nLog:\nsvn merge -c 39087 https://source.sakaiproject.org/svn/msgcntr/trunk\nU    messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/AreaManagerImpl.java\n\nsvn log -r 39087 https://source.sakaiproject.org/svn/msgcntr/trunk\n------------------------------------------------------------------------\nr39087 | wang58@iupui.edu | 2007-12-10 13:48:59 -0500 (Mon, 10 Dec 2007) | 1 line\n\nSAK-12176 Messages-Send cc to recipients' email address(es).\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Tue Dec 11 09:39:18 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 09:39:18 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 09:39:18 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby flawless.mail.umich.edu () with ESMTP id lBBEdIRv019319;\n\tTue, 11 Dec 2007 09:39:18 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 475EA10F.E9C15.24282 ; \n\t11 Dec 2007 09:39:14 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E4D176AB54;\n\tTue, 11 Dec 2007 14:39:04 +0000 (GMT)\nMessage-ID: <200712111431.lBBEVULf002293@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1015\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 14:38:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 96BFD2DFFA\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 14:38:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBEVUNe002295\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 09:31:30 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBEVULf002293\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 09:31:30 -0500\nDate: Tue, 11 Dec 2007 09:31:30 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r39102 - portal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 09:39:18 2007\nX-DSPAM-Confidence: 0.9777\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39102\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-11 09:31:30 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39102\n\nModified:\nportal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java\nLog:\nSAK-7924 - Adding some debugging for oncourse\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Tue Dec 11 09:38:18 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 09:38:18 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 09:38:18 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby flawless.mail.umich.edu () with ESMTP id lBBEcImC018826;\n\tTue, 11 Dec 2007 09:38:18 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 475EA0D4.7104A.9601 ; \n\t11 Dec 2007 09:38:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D7E4F9AA8E;\n\tTue, 11 Dec 2007 14:37:57 +0000 (GMT)\nMessage-ID: <200712111430.lBBEUUIX002267@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 261\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 14:37:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 699FF2DFFA\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 14:37:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBEUUHM002269\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 09:30:30 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBEUUIX002267\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 09:30:30 -0500\nDate: Tue, 11 Dec 2007 09:30:30 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r39101 - authz/branches/oncourse_opc_122007/authz-impl/impl/src/java/org/sakaiproject/authz/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 09:38:18 2007\nX-DSPAM-Confidence: 0.8428\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39101\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-11 09:30:29 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39101\n\nModified:\nauthz/branches/oncourse_opc_122007/authz-impl/impl/src/java/org/sakaiproject/authz/impl/DbAuthzGroupService.java\nauthz/branches/oncourse_opc_122007/authz-impl/impl/src/java/org/sakaiproject/authz/impl/SakaiSecurity.java\nLog:\nSAK-7924 - Adding some debugging for oncourse\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Tue Dec 11 09:37:07 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 09:37:07 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 09:37:07 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby jacknife.mail.umich.edu () with ESMTP id lBBEb7EE012228;\n\tTue, 11 Dec 2007 09:37:07 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 475EA08D.E48E.13066 ; \n\t11 Dec 2007 09:37:03 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0744863792;\n\tTue, 11 Dec 2007 14:36:28 +0000 (GMT)\nMessage-ID: <200712111429.lBBETM4I002254@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 529\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 14:36:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BCDD434A90\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 14:36:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBBETNFn002256\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 09:29:23 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBBETM4I002254\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 09:29:22 -0500\nDate: Tue, 11 Dec 2007 09:29:22 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r39100 - authz/branches/oncourse_opc_122007/authz-impl/impl/src/sql/oracle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 09:37:07 2007\nX-DSPAM-Confidence: 0.9815\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39100\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-11 09:29:21 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39100\n\nModified:\nauthz/branches/oncourse_opc_122007/authz-impl/impl/src/sql/oracle/sakai_realm.sql\nLog:\nSQL Update - will move related SQL to a seperate file\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Tue Dec 11 03:00:52 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 11 Dec 2007 03:00:52 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 11 Dec 2007 03:00:52 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby score.mail.umich.edu () with ESMTP id lBB80pnm026214;\n\tTue, 11 Dec 2007 03:00:51 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 475E43AD.40DF1.31037 ; \n\t11 Dec 2007 03:00:47 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CC5A64FFC2;\n\tTue, 11 Dec 2007 08:00:43 +0000 (GMT)\nMessage-ID: <200712110753.lBB7r9Ph001318@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 761\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 08:00:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B44EE309C9\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 08:00:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBB7r920001320\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 02:53:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBB7r9Ph001318\n\tfor source@collab.sakaiproject.org; Tue, 11 Dec 2007 02:53:09 -0500\nDate: Tue, 11 Dec 2007 02:53:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec 11 03:00:52 2007\nX-DSPAM-Confidence: 0.7604\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39099\n\nAuthor: aaronz@vt.edu\nDate: 2007-12-11 02:52:59 -0500 (Tue, 11 Dec 2007)\nNew Revision: 39099\n\nAdded:\nentitybroker/trunk/api/src/java/org/sakaiproject/entitybroker/util/\nentitybroker/trunk/api/src/java/org/sakaiproject/entitybroker/util/ClassLoaderReporter.java\nModified:\nentitybroker/trunk/tool/src/java/org/sakaiproject/entitybroker/servlet/DirectServlet.java\nLog:\nSAK-12408: Completed fix for the failures caused by classloader confusion, also added in ability for the direct servlet to handle all types of requests\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Mon Dec 10 23:27:38 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 10 Dec 2007 23:27:38 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 10 Dec 2007 23:27:38 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby jacknife.mail.umich.edu () with ESMTP id lBB4Rbnq015615;\n\tMon, 10 Dec 2007 23:27:37 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 475E11B3.6A66A.31465 ; \n\t10 Dec 2007 23:27:34 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 627D650F59;\n\tTue, 11 Dec 2007 04:26:54 +0000 (GMT)\nMessage-ID: <200712110419.lBB4Jln5001162@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 468\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 04:26:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CA4F9346F6\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 04:27:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBB4JlVH001164\n\tfor <source@collab.sakaiproject.org>; Mon, 10 Dec 2007 23:19:47 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBB4Jln5001162\n\tfor source@collab.sakaiproject.org; Mon, 10 Dec 2007 23:19:47 -0500\nDate: Mon, 10 Dec 2007 23:19:47 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r39098 - metaobj/branches/sakai_2-4-x/metaobj-impl/api-impl/src/java/org/sakaiproject/metaobj/registry\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 10 23:27:38 2007\nX-DSPAM-Confidence: 0.9840\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39098\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-10 23:19:44 -0500 (Mon, 10 Dec 2007)\nNew Revision: 39098\n\nModified:\nmetaobj/branches/sakai_2-4-x/metaobj-impl/api-impl/src/java/org/sakaiproject/metaobj/registry/FormResourceType.java\nLog:\nSAK-12413\nAdding impl's for two new methods.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Mon Dec 10 21:36:11 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 10 Dec 2007 21:36:11 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 10 Dec 2007 21:36:10 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby godsend.mail.umich.edu () with ESMTP id lBB2aAMo009227;\n\tMon, 10 Dec 2007 21:36:10 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 475DF791.ECEBD.979 ; \n\t10 Dec 2007 21:36:04 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 083459A29E;\n\tTue, 11 Dec 2007 02:36:03 +0000 (GMT)\nMessage-ID: <200712110228.lBB2SMm8001138@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 261\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 02:35:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1194F34658\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 02:35:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBB2SNZr001140\n\tfor <source@collab.sakaiproject.org>; Mon, 10 Dec 2007 21:28:23 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBB2SMm8001138\n\tfor source@collab.sakaiproject.org; Mon, 10 Dec 2007 21:28:22 -0500\nDate: Mon, 10 Dec 2007 21:28:22 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 10 21:36:10 2007\nX-DSPAM-Confidence: 0.8491\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39097\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-10 21:28:06 -0500 (Mon, 10 Dec 2007)\nNew Revision: 39097\n\nAdded:\nentity/branches/SAK-12239/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/\nentity/branches/SAK-12239/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/DataStreamEntitySerializer.java\nentity/branches/SAK-12239/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/EntityDoubleReader.java\nentity/branches/SAK-12239/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/EntityDoubleReaderHandler.java\nentity/branches/SAK-12239/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/EntityParseException.java\nentity/branches/SAK-12239/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/EntityReader.java\nentity/branches/SAK-12239/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/EntityReaderHandler.java\nentity/branches/SAK-12239/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/EntitySerializer.java\nentity/branches/SAK-12239/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/SerializableEntity.java\nentity/branches/SAK-12239/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/SerializablePropertiesAccess.java\nentity/branches/SAK-12239/entity-util/util/src/java/org/sakaiproject/util/serialize/\nentity/branches/SAK-12239/entity-util/util/src/java/org/sakaiproject/util/serialize/Type1BaseResourcePropertiesSerializer.java\nLog:\nSAK-12239\nAdded classes for serialization and migration in SAK-12239 branch of entity\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Mon Dec 10 21:33:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 10 Dec 2007 21:33:42 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 10 Dec 2007 21:33:42 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby fan.mail.umich.edu () with ESMTP id lBB2XfX1012339;\n\tMon, 10 Dec 2007 21:33:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 475DF6FF.449D6.19501 ; \n\t10 Dec 2007 21:33:38 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E96BE9A2B0;\n\tTue, 11 Dec 2007 02:33:39 +0000 (GMT)\nMessage-ID: <200712110226.lBB2Q2XT001126@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 534\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 02:33:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0A5A534656\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 02:33:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBB2Q23N001128\n\tfor <source@collab.sakaiproject.org>; Mon, 10 Dec 2007 21:26:02 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBB2Q2XT001126\n\tfor source@collab.sakaiproject.org; Mon, 10 Dec 2007 21:26:02 -0500\nDate: Mon, 10 Dec 2007 21:26:02 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r39096 - content/branches/SAK-12239\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 10 21:33:42 2007\nX-DSPAM-Confidence: 0.9847\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39096\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-10 21:25:57 -0500 (Mon, 10 Dec 2007)\nNew Revision: 39096\n\nModified:\ncontent/branches/SAK-12239/runconversion.sh\nLog:\nSAK-12239\nAdded dependencies for runconversion script in SAK-12239 branch\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Mon Dec 10 21:30:14 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 10 Dec 2007 21:30:14 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 10 Dec 2007 21:30:14 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby jacknife.mail.umich.edu () with ESMTP id lBB2UD4B031674;\n\tMon, 10 Dec 2007 21:30:13 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 475DF62F.89592.24656 ; \n\t10 Dec 2007 21:30:10 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B825298F3B;\n\tTue, 11 Dec 2007 02:30:11 +0000 (GMT)\nMessage-ID: <200712110222.lBB2MXU1001112@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 690\n          for <source@collab.sakaiproject.org>;\n          Tue, 11 Dec 2007 02:29:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E7DB634654\n\tfor <source@collab.sakaiproject.org>; Tue, 11 Dec 2007 02:29:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBB2MXew001114\n\tfor <source@collab.sakaiproject.org>; Mon, 10 Dec 2007 21:22:33 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBB2MXU1001112\n\tfor source@collab.sakaiproject.org; Mon, 10 Dec 2007 21:22:33 -0500\nDate: Mon, 10 Dec 2007 21:22:33 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 10 21:30:14 2007\nX-DSPAM-Confidence: 0.9860\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39095\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-10 21:21:30 -0500 (Mon, 10 Dec 2007)\nNew Revision: 39095\n\nAdded:\ndb/branches/SAK-12239/db-impl/ext/src/java/org/sakaiproject/springframework/orm/hibernate/dialect/\ndb/branches/SAK-12239/db-impl/ext/src/java/org/sakaiproject/springframework/orm/hibernate/dialect/SQLServerDialect2005.java\ndb/branches/SAK-12239/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlDb2.java\ndb/branches/SAK-12239/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlDefault.java\ndb/branches/SAK-12239/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlHSql.java\ndb/branches/SAK-12239/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlMsSql.java\ndb/branches/SAK-12239/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlMySql.java\ndb/branches/SAK-12239/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlOracle.java\ndb/branches/SAK-12239/db-impl/impl/src/java/org/sakaiproject/db/impl/SqlServiceSql.java\ndb/branches/SAK-12239/db-util/conversion/\ndb/branches/SAK-12239/db-util/conversion/pom.xml\ndb/branches/SAK-12239/db-util/conversion/project.xml\ndb/branches/SAK-12239/db-util/conversion/runconversion.sh\ndb/branches/SAK-12239/db-util/conversion/src/\ndb/branches/SAK-12239/db-util/conversion/src/java/\ndb/branches/SAK-12239/db-util/conversion/src/java/org/\ndb/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/\ndb/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/util/\ndb/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/util/conversion/\ndb/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/util/conversion/CheckConnection.java\ndb/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionController.java\ndb/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionDriver.java\ndb/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionException.java\ndb/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionHandler.java\ndb/branches/SAK-12239/db-util/conversion/src/java/org/sakaiproject/util/conversion/UpgradeSchema.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/BaseDbBinarySingleStorage.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/BaseDbDualSingleStorage.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/ByteStorageConversion.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/DbSingleStorage.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/DbSingleStorageReader.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/DoubleStorageSql.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/DoubleStorageSqlDb2.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/DoubleStorageSqlDefault.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/DoubleStorageSqlHSql.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/DoubleStorageSqlMsSql.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/DoubleStorageSqlMySql.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/DoubleStorageSqlOracle.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/EntityReaderAdapter.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/FlatStorageSql.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/FlatStorageSqlDb2.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/FlatStorageSqlDefault.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/FlatStorageSqlHSql.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/FlatStorageSqlMsSql.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/FlatStorageSqlMySql.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/FlatStorageSqlOracle.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/MultiSingleStorageSql.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/MultiSingleStorageSqlDb2.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/MultiSingleStorageSqlDefault.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/MultiSingleStorageSqlHSql.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/MultiSingleStorageSqlMsSql.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/MultiSingleStorageSqlMySql.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/MultiSingleStorageSqlOracle.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/SingleStorageSql.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/SingleStorageSqlDb2.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/SingleStorageSqlDefault.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/SingleStorageSqlHSql.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/SingleStorageSqlMsSql.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/SingleStorageSqlMySql.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/SingleStorageSqlOracle.java\nLog:\nSAK-12239 \nadded classes to db needed for SAK-12239 on post-2-4 branch\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Mon Dec 10 17:10:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 10 Dec 2007 17:10:42 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 10 Dec 2007 17:10:42 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby score.mail.umich.edu () with ESMTP id lBAMAfSo029512;\n\tMon, 10 Dec 2007 17:10:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 475DB955.B6464.13341 ; \n\t10 Dec 2007 17:10:32 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DA38A98AFF;\n\tMon, 10 Dec 2007 22:10:29 +0000 (GMT)\nMessage-ID: <200712102202.lBAM2odW024273@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 989\n          for <source@collab.sakaiproject.org>;\n          Mon, 10 Dec 2007 22:10:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E7B782D4A8\n\tfor <source@collab.sakaiproject.org>; Mon, 10 Dec 2007 22:10:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBAM2oNS024275\n\tfor <source@collab.sakaiproject.org>; Mon, 10 Dec 2007 17:02:50 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBAM2odW024273\n\tfor source@collab.sakaiproject.org; Mon, 10 Dec 2007 17:02:50 -0500\nDate: Mon, 10 Dec 2007 17:02:50 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [sakai] svn commit: r39094 - in gradebook/trunk/service: api/src/java/org/sakaiproject/service/gradebook/shared impl/src/java/org/sakaiproject/component/gradebook\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 10 17:10:42 2007\nX-DSPAM-Confidence: 0.9839\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39094\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-12-10 17:02:49 -0500 (Mon, 10 Dec 2007)\nNew Revision: 39094\n\nModified:\ngradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java\ngradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java\nLog:\nSAK-12175\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12175\nCreate methods required for gb integration with the Assignment2 tool\nRevise getViewableAssignmentsForCurrentUser to return assignments if in student role, as well\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Mon Dec 10 16:55:56 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 10 Dec 2007 16:55:56 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 10 Dec 2007 16:55:56 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby awakenings.mail.umich.edu () with ESMTP id lBALtr8U005077;\n\tMon, 10 Dec 2007 16:55:53 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 475DB5E4.BCE6.26990 ; \n\t10 Dec 2007 16:55:50 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C25229A102;\n\tMon, 10 Dec 2007 21:55:46 +0000 (GMT)\nMessage-ID: <200712102148.lBALm8Br024215@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 425\n          for <source@collab.sakaiproject.org>;\n          Mon, 10 Dec 2007 21:55:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EBFBE30E3B\n\tfor <source@collab.sakaiproject.org>; Mon, 10 Dec 2007 21:55:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBALm8YM024217\n\tfor <source@collab.sakaiproject.org>; Mon, 10 Dec 2007 16:48:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBALm8Br024215\n\tfor source@collab.sakaiproject.org; Mon, 10 Dec 2007 16:48:08 -0500\nDate: Mon, 10 Dec 2007 16:48:08 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r39093 - authz/branches/oncourse_opc_122007/authz-impl/impl/src/sql/oracle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 10 16:55:56 2007\nX-DSPAM-Confidence: 0.8424\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39093\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-10 16:48:06 -0500 (Mon, 10 Dec 2007)\nNew Revision: 39093\n\nModified:\nauthz/branches/oncourse_opc_122007/authz-impl/impl/src/sql/oracle/sakai_realm.sql\nLog:\nSQL Update\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Mon Dec 10 14:10:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 10 Dec 2007 14:10:53 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 10 Dec 2007 14:10:53 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby brazil.mail.umich.edu () with ESMTP id lBAJAqN5022211;\n\tMon, 10 Dec 2007 14:10:52 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 475D8F37.86FB.31138 ; \n\t10 Dec 2007 14:10:49 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D636E99EF4;\n\tMon, 10 Dec 2007 19:11:02 +0000 (GMT)\nMessage-ID: <200712101903.lBAJ30Rl022842@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 134\n          for <source@collab.sakaiproject.org>;\n          Mon, 10 Dec 2007 19:10:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 395773430C\n\tfor <source@collab.sakaiproject.org>; Mon, 10 Dec 2007 19:10:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBAJ30hF022844\n\tfor <source@collab.sakaiproject.org>; Mon, 10 Dec 2007 14:03:01 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBAJ30Rl022842\n\tfor source@collab.sakaiproject.org; Mon, 10 Dec 2007 14:03:00 -0500\nDate: Mon, 10 Dec 2007 14:03:00 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r39090 - reference/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 10 14:10:53 2007\nX-DSPAM-Confidence: 0.8434\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39090\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-12-10 14:02:59 -0500 (Mon, 10 Dec 2007)\nNew Revision: 39090\n\nAdded:\nreference/branches/SAK-8152/\nLog:\nBranch for SAK-8152\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Mon Dec 10 14:10:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 10 Dec 2007 14:10:13 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 10 Dec 2007 14:10:13 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby panther.mail.umich.edu () with ESMTP id lBAJACut026659;\n\tMon, 10 Dec 2007 14:10:12 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 475D8F00.706F5.21642 ; \n\t10 Dec 2007 14:09:55 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6956199B78;\n\tMon, 10 Dec 2007 19:09:55 +0000 (GMT)\nMessage-ID: <200712101902.lBAJ2GOb022828@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 418\n          for <source@collab.sakaiproject.org>;\n          Mon, 10 Dec 2007 19:09:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 81C8D3430C\n\tfor <source@collab.sakaiproject.org>; Mon, 10 Dec 2007 19:09:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBAJ2GZ3022830\n\tfor <source@collab.sakaiproject.org>; Mon, 10 Dec 2007 14:02:16 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBAJ2GOb022828\n\tfor source@collab.sakaiproject.org; Mon, 10 Dec 2007 14:02:16 -0500\nDate: Mon, 10 Dec 2007 14:02:16 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r39089 - portal/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 10 14:10:13 2007\nX-DSPAM-Confidence: 0.9821\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39089\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-12-10 14:02:15 -0500 (Mon, 10 Dec 2007)\nNew Revision: 39089\n\nAdded:\nportal/branches/SAK-8152/\nLog:\nBranch for SAK-8152\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Mon Dec 10 13:35:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 10 Dec 2007 13:35:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 10 Dec 2007 13:35:51 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby awakenings.mail.umich.edu () with ESMTP id lBAIZomv028190;\n\tMon, 10 Dec 2007 13:35:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 475D86F9.9CADD.9533 ; \n\t10 Dec 2007 13:35:40 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 48D7A99DA5;\n\tMon, 10 Dec 2007 18:27:17 +0000 (GMT)\nMessage-ID: <200712101826.lBAIQRPT022688@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 635\n          for <source@collab.sakaiproject.org>;\n          Mon, 10 Dec 2007 18:26:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2AD64342C7\n\tfor <source@collab.sakaiproject.org>; Mon, 10 Dec 2007 18:33:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBAIQRJI022690\n\tfor <source@collab.sakaiproject.org>; Mon, 10 Dec 2007 13:26:27 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBAIQRPT022688\n\tfor source@collab.sakaiproject.org; Mon, 10 Dec 2007 13:26:27 -0500\nDate: Mon, 10 Dec 2007 13:26:27 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r39086 - in entitybroker/trunk: impl tool/src/java/org/sakaiproject/entitybroker/servlet\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 10 13:35:51 2007\nX-DSPAM-Confidence: 0.8481\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39086\n\nAuthor: aaronz@vt.edu\nDate: 2007-12-10 13:26:21 -0500 (Mon, 10 Dec 2007)\nNew Revision: 39086\n\nModified:\nentitybroker/trunk/impl/pom.xml\nentitybroker/trunk/tool/src/java/org/sakaiproject/entitybroker/servlet/DirectServlet.java\nLog:\nSAK-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\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Mon Dec 10 11:35:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 10 Dec 2007 11:35:53 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 10 Dec 2007 11:35:53 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby sleepers.mail.umich.edu () with ESMTP id lBAGZl7q005687;\n\tMon, 10 Dec 2007 11:35:47 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 475D6ADC.B4063.31872 ; \n\t10 Dec 2007 11:35:43 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E33CB7A2B9;\n\tMon, 10 Dec 2007 16:35:39 +0000 (GMT)\nMessage-ID: <200712101628.lBAGSFiL022489@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 983\n          for <source@collab.sakaiproject.org>;\n          Mon, 10 Dec 2007 16:35:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9FEF5B253\n\tfor <source@collab.sakaiproject.org>; Mon, 10 Dec 2007 16:35:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBAGSFAp022491\n\tfor <source@collab.sakaiproject.org>; Mon, 10 Dec 2007 11:28:15 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBAGSFiL022489\n\tfor source@collab.sakaiproject.org; Mon, 10 Dec 2007 11:28:15 -0500\nDate: Mon, 10 Dec 2007 11:28:15 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r39085 - authz/branches/oncourse_opc_122007/authz-impl/impl/src/sql/oracle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 10 11:35:53 2007\nX-DSPAM-Confidence: 0.9808\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39085\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-10 11:28:14 -0500 (Mon, 10 Dec 2007)\nNew Revision: 39085\n\nModified:\nauthz/branches/oncourse_opc_122007/authz-impl/impl/src/sql/oracle/sakai_realm.sql\nLog:\nSQL Update\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Mon Dec 10 11:11:48 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 10 Dec 2007 11:11:48 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 10 Dec 2007 11:11:48 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby flawless.mail.umich.edu () with ESMTP id lBAGBlOq025410;\n\tMon, 10 Dec 2007 11:11:47 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 475D6534.E60CF.4919 ; \n\t10 Dec 2007 11:11:41 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BEEC850869;\n\tMon, 10 Dec 2007 16:11:27 +0000 (GMT)\nMessage-ID: <200712101603.lBAG3kvd022322@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 787\n          for <source@collab.sakaiproject.org>;\n          Mon, 10 Dec 2007 16:10:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9C5232BEFD\n\tfor <source@collab.sakaiproject.org>; Mon, 10 Dec 2007 16:10:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBAG3kvk022324\n\tfor <source@collab.sakaiproject.org>; Mon, 10 Dec 2007 11:03:46 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBAG3kvd022322\n\tfor source@collab.sakaiproject.org; Mon, 10 Dec 2007 11:03:46 -0500\nDate: Mon, 10 Dec 2007 11:03:46 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39084 - in site-manage/trunk/site-manage-tool/tool/src: java/org/sakaiproject/site/tool webapp/vm/sitesetup\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 10 11:11:48 2007\nX-DSPAM-Confidence: 0.7602\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39084\n\nAuthor: zqian@umich.edu\nDate: 2007-12-10 11:03:43 -0500 (Mon, 10 Dec 2007)\nNew Revision: 39084\n\nRemoved:\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-changeRoles-confirm.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-changeRoles.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSitePublishUnpublish.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-publishUnpublish-confirm.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-publishUnpublish-sendEmail.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-publishUnpublish.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-removeParticipants.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-editAccess-globalAccess-confirm.vm\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-editAccess-globalAccess.vm\nModified:\nsite-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nLog:\nfix to SAK-12407: remove the no longer used vm templates from Worksite Setup tool\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom josrodri@iupui.edu Mon Dec 10 10:04:39 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 10 Dec 2007 10:04:39 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 10 Dec 2007 10:04:39 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby fan.mail.umich.edu () with ESMTP id lBAF4cqN021547;\n\tMon, 10 Dec 2007 10:04:38 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 475D557F.DE41F.398 ; \n\t10 Dec 2007 10:04:34 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 84AB34F538;\n\tMon, 10 Dec 2007 15:04:41 +0000 (GMT)\nMessage-ID: <200712101456.lBAEur5L022222@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 176\n          for <source@collab.sakaiproject.org>;\n          Mon, 10 Dec 2007 15:04:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3F351238F7\n\tfor <source@collab.sakaiproject.org>; Mon, 10 Dec 2007 15:04:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBAEur3u022224\n\tfor <source@collab.sakaiproject.org>; Mon, 10 Dec 2007 09:56:53 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBAEur5L022222\n\tfor source@collab.sakaiproject.org; Mon, 10 Dec 2007 09:56:53 -0500\nDate: Mon, 10 Dec 2007 09:56:53 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: josrodri@iupui.edu\nSubject: [sakai] svn commit: r39083 - syllabus/trunk/syllabus-impl/src/java/org/sakaiproject/component/app/syllabus\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec 10 10:04:39 2007\nX-DSPAM-Confidence: 0.8479\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39083\n\nAuthor: josrodri@iupui.edu\nDate: 2007-12-10 09:56:51 -0500 (Mon, 10 Dec 2007)\nNew Revision: 39083\n\nModified:\nsyllabus/trunk/syllabus-impl/src/java/org/sakaiproject/component/app/syllabus/SyllabusServiceImpl.java\nLog:\nSAK-10894: merged patch back in, some code cleanup (removed commented out code)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Sun Dec  9 23:27:07 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 09 Dec 2007 23:27:07 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 09 Dec 2007 23:27:07 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby casino.mail.umich.edu () with ESMTP id lBA4R6R1009269;\n\tSun, 9 Dec 2007 23:27:06 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 475CC015.3CB3.13202 ; \n\t 9 Dec 2007 23:27:03 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0361F5886B;\n\tMon, 10 Dec 2007 04:24:57 +0000 (GMT)\nMessage-ID: <200712100419.lBA4JV48021471@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 949\n          for <source@collab.sakaiproject.org>;\n          Mon, 10 Dec 2007 04:24:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C9A3034120\n\tfor <source@collab.sakaiproject.org>; Mon, 10 Dec 2007 04:26:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBA4JVCI021473\n\tfor <source@collab.sakaiproject.org>; Sun, 9 Dec 2007 23:19:31 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBA4JV48021471\n\tfor source@collab.sakaiproject.org; Sun, 9 Dec 2007 23:19:31 -0500\nDate: Sun, 9 Dec 2007 23:19:31 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Dec  9 23:27:07 2007\nX-DSPAM-Confidence: 0.8500\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39082\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-09 23:19:14 -0500 (Sun, 09 Dec 2007)\nNew Revision: 39082\n\nAdded:\ncontent/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/OperationDelegationException.java\ncontent/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/providers/\ncontent/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/providers/SiteContentAdvisor.java\ncontent/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/providers/SiteContentAdvisorProvider.java\ncontent/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/providers/SiteContentAdvisorTypeRegistry.java\ncontent/branches/SAK-12239/content-impl/impl/src/sql/mssql/\ncontent/branches/SAK-12239/content-impl/impl/src/sql/mssql/sakai_content.sql\ncontent/branches/SAK-12239/content-impl/impl/src/sql/mssql/sakai_content_delete.sql\ncontent/branches/SAK-12239/content-impl/impl/src/sql/mssql/sakai_content_registry.sql\ncontent/branches/SAK-12239/content-impl/impl/src/test/\ncontent/branches/SAK-12239/content-impl/impl/src/test/org/\ncontent/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/\ncontent/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/\ncontent/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/\ncontent/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/\ncontent/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/\ncontent/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/\ncontent/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/AllTests.java\ncontent/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/ByteStorageConversionCheck.java\ncontent/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/GMTDateformatterTest.java\ncontent/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/MockSerializableCollectionAcccess.java\ncontent/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/MockSerializablePropertiesAccess.java\ncontent/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/MockSerializableResourceAcccess.java\ncontent/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/MockTime.java\ncontent/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/MockTimeService.java\ncontent/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/MySQLByteStorage.java\ncontent/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/ProfileSerializerTest.java\ncontent/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/Type1BaseContentCollectionSerializerTest.java\ncontent/branches/SAK-12239/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/Type1BaseContentResourceSerializerTest.java\nModified:\ncontent/branches/SAK-12239/content-api/api/pom.xml\nLog:\nSAK-12239\nAdding more classes from 2.5.x that are dependencies in the recent changes\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Sun Dec  9 22:01:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 09 Dec 2007 22:01:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 09 Dec 2007 22:01:17 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby panther.mail.umich.edu () with ESMTP id lBA31HKI025318;\n\tSun, 9 Dec 2007 22:01:17 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 475CABF7.5FF45.26786 ; \n\t 9 Dec 2007 22:01:14 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 98F6850A9C;\n\tMon, 10 Dec 2007 03:01:07 +0000 (GMT)\nMessage-ID: <200712100253.lBA2rgFw021442@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 875\n          for <source@collab.sakaiproject.org>;\n          Mon, 10 Dec 2007 03:00:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 64FAF2CEE7\n\tfor <source@collab.sakaiproject.org>; Mon, 10 Dec 2007 03:00:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBA2rhJ7021444\n\tfor <source@collab.sakaiproject.org>; Sun, 9 Dec 2007 21:53:43 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBA2rgFw021442\n\tfor source@collab.sakaiproject.org; Sun, 9 Dec 2007 21:53:42 -0500\nDate: Sun, 9 Dec 2007 21:53:42 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r39081 - content/trunk/content-api/api/src/java/org/sakaiproject/content/cover\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Dec  9 22:01:17 2007\nX-DSPAM-Confidence: 0.9827\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39081\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-09 21:53:40 -0500 (Sun, 09 Dec 2007)\nNew Revision: 39081\n\nModified:\ncontent/trunk/content-api/api/src/java/org/sakaiproject/content/cover/ContentHostingService.java\nLog:\nSAK-12359\nDepracating the ContentHosting cover.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Sun Dec  9 21:57:32 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 09 Dec 2007 21:57:32 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 09 Dec 2007 21:57:32 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby score.mail.umich.edu () with ESMTP id lBA2vVYZ011434;\n\tSun, 9 Dec 2007 21:57:31 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 475CAB16.863D9.20851 ; \n\t 9 Dec 2007 21:57:29 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E0AAA99267;\n\tMon, 10 Dec 2007 02:57:23 +0000 (GMT)\nMessage-ID: <200712100249.lBA2nxmI021430@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 188\n          for <source@collab.sakaiproject.org>;\n          Mon, 10 Dec 2007 02:57:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D53FE2CEE7\n\tfor <source@collab.sakaiproject.org>; Mon, 10 Dec 2007 02:57:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lBA2nxMw021432\n\tfor <source@collab.sakaiproject.org>; Sun, 9 Dec 2007 21:49:59 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lBA2nxmI021430\n\tfor source@collab.sakaiproject.org; Sun, 9 Dec 2007 21:49:59 -0500\nDate: Sun, 9 Dec 2007 21:49:59 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Dec  9 21:57:32 2007\nX-DSPAM-Confidence: 0.9895\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39080\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-09 21:49:46 -0500 (Sun, 09 Dec 2007)\nNew Revision: 39080\n\nAdded:\ncontent/branches/SAK-12239/content-impl-jcr/\ncontent/branches/SAK-12239/content-impl-jcr/.classpath\ncontent/branches/SAK-12239/content-impl-jcr/.project\ncontent/branches/SAK-12239/content-impl-jcr/impl/\ncontent/branches/SAK-12239/content-impl-jcr/impl/pom.xml\ncontent/branches/SAK-12239/content-impl-jcr/impl/src/\ncontent/branches/SAK-12239/content-impl-providers/\ncontent/branches/SAK-12239/content-impl-providers/.classpath\ncontent/branches/SAK-12239/content-impl-providers/.project\ncontent/branches/SAK-12239/content-impl-providers/impl/\ncontent/branches/SAK-12239/content-impl-providers/impl/pom.xml\ncontent/branches/SAK-12239/content-impl-providers/impl/src/\ncontent/branches/SAK-12239/contentmultiplex-impl/\ncontent/branches/SAK-12239/contentmultiplex-impl/.classpath\ncontent/branches/SAK-12239/contentmultiplex-impl/.project\ncontent/branches/SAK-12239/contentmultiplex-impl/impl/\ncontent/branches/SAK-12239/contentmultiplex-impl/impl/pom.xml\ncontent/branches/SAK-12239/contentmultiplex-impl/impl/src/\ncontent/branches/SAK-12239/contentmultiplex-impl/impl/src/java/\ncontent/branches/SAK-12239/contentmultiplex-impl/impl/src/java/org/\ncontent/branches/SAK-12239/contentmultiplex-impl/impl/src/java/org/sakaiproject/\ncontent/branches/SAK-12239/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/\ncontent/branches/SAK-12239/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/\ncontent/branches/SAK-12239/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/ContentHostingMultiplexService.java\ncontent/branches/SAK-12239/readme.txt\ncontent/branches/SAK-12239/runconversion.sh\ncontent/branches/SAK-12239/upgradeschema-mysql.config\ncontent/branches/SAK-12239/upgradeschema-oracle.config\nLog:\nSAK-12239\nAdded jcr-related modules to SAK-12239 (because there are interactions and/or dependencies with other changes in the content area) \n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Sat Dec  8 13:33:35 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 08 Dec 2007 13:33:35 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 08 Dec 2007 13:33:35 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby jacknife.mail.umich.edu () with ESMTP id lB8IXYxG004424;\n\tSat, 8 Dec 2007 13:33:34 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 475AE374.77739.22226 ; \n\t 8 Dec 2007 13:33:30 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5A77797E84;\n\tSat,  8 Dec 2007 18:25:21 +0000 (GMT)\nMessage-ID: <200712081825.lB8IPiL4007650@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 867\n          for <source@collab.sakaiproject.org>;\n          Sat, 8 Dec 2007 18:24:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1350132AC2\n\tfor <source@collab.sakaiproject.org>; Sat,  8 Dec 2007 18:32:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB8IPisD007652\n\tfor <source@collab.sakaiproject.org>; Sat, 8 Dec 2007 13:25:44 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB8IPiL4007650\n\tfor source@collab.sakaiproject.org; Sat, 8 Dec 2007 13:25:44 -0500\nDate: Sat, 8 Dec 2007 13:25:44 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec  8 13:33:35 2007\nX-DSPAM-Confidence: 0.5922\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39079\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-08 13:25:34 -0500 (Sat, 08 Dec 2007)\nNew Revision: 39079\n\nModified:\nportal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java\nportal/branches/SAK-12350/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm\nLog:\nSAK-12350\nFixed templates, but there is still a strange layout below the tools, where the project sites appear.\nNeed to investigate this.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Sat Dec  8 01:10:03 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 08 Dec 2007 01:10:03 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 08 Dec 2007 01:10:03 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby godsend.mail.umich.edu () with ESMTP id lB86A2hU012524;\n\tSat, 8 Dec 2007 01:10:02 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 475A352E.D2B89.27831 ; \n\t 8 Dec 2007 01:09:58 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 74069973CA;\n\tSat,  8 Dec 2007 06:07:13 +0000 (GMT)\nMessage-ID: <200712080602.lB862JP2006906@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 59\n          for <source@collab.sakaiproject.org>;\n          Sat, 8 Dec 2007 06:06:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4CF4927DBA\n\tfor <source@collab.sakaiproject.org>; Sat,  8 Dec 2007 06:09:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB862JRE006908\n\tfor <source@collab.sakaiproject.org>; Sat, 8 Dec 2007 01:02:20 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB862JP2006906\n\tfor source@collab.sakaiproject.org; Sat, 8 Dec 2007 01:02:19 -0500\nDate: Sat, 8 Dec 2007 01:02:19 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec  8 01:10:03 2007\nX-DSPAM-Confidence: 0.6184\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39078\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-08 01:01:45 -0500 (Sat, 08 Dec 2007)\nNew Revision: 39078\n\nAdded:\nportal/branches/SAK-12350/portal-api/api/src/java/org/sakaiproject/portal/api/PortalSiteHelper.java\nportal/branches/SAK-12350/portal-api/api/src/java/org/sakaiproject/portal/api/SiteView.java\nportal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/ToolHelperImpl.java\nportal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/\nportal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/AbstractSiteViewImpl.java\nportal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/AllSitesViewImpl.java\nportal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/CurrentSiteVIewImpl.java\nportal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/DefaultSiteViewImpl.java\nportal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/MoreSiteViewImpl.java\nportal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/PortalSiteHelperImpl.java\nportal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/site/SubSiteViewImpl.java\nRemoved:\nportal/branches/SAK-12350/portal-util/util/src/java/org/sakaiproject/portal/util/PortalSiteHelper.java\nModified:\nportal/branches/SAK-12350/portal-api/api/src/java/org/sakaiproject/portal/api/Portal.java\nportal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/CharonPortal.java\nportal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java\nportal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/GalleryHandler.java\nportal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/PageHandler.java\nportal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java\nportal/branches/SAK-12350/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/WorksiteHandler.java\nLog:\nSAK-12350\nPhase 1\nExtracted the site views into a single space interface with a number of view types, for more, all sites, subsite and current site.\nThe markup is not yet corrected for the new structure and although sakai starts, behaves and looks Ok, there are a whole load of missing\nor mismapped properties in the velocity markup.\n\nThere is no site hierarchy as yet, but the views can now generate their site lists in context making it possible to replace\nthe all sites list with a hierarchy awaire site list.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 16:43:28 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 16:43:28 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 16:43:28 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby sleepers.mail.umich.edu () with ESMTP id lB7LhOXm015789;\n\tFri, 7 Dec 2007 16:43:24 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4759BE6F.97DE2.7140 ; \n\t 7 Dec 2007 16:43:17 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DD68196F1A;\n\tFri,  7 Dec 2007 21:43:10 +0000 (GMT)\nMessage-ID: <200712072135.lB7LZk8V004602@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 208\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 21:42:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 110C231F67\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 21:42:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7LZkkT004604\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 16:35:46 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7LZk8V004602\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 16:35:46 -0500\nDate: Fri, 7 Dec 2007 16:35:46 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39077 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 16:43:28 2007\nX-DSPAM-Confidence: 0.8510\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39077\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 16:35:44 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39077\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerge into post-2-4:\n\n#38984\tThu Dec 06 08:17:47 MST 2007\tzqian@umich.edu\t fix to SAK-12353:Gradebook does not show the point correctly\nFiles Changed\nMODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 16:41:23 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 16:41:23 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 16:41:23 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby sleepers.mail.umich.edu () with ESMTP id lB7LfNtd014539;\n\tFri, 7 Dec 2007 16:41:23 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 4759BDFD.1F014.13537 ; \n\t 7 Dec 2007 16:41:19 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EF09E96F11;\n\tFri,  7 Dec 2007 21:41:15 +0000 (GMT)\nMessage-ID: <200712072133.lB7LXxcw004579@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 283\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 21:40:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 353B031F67\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 21:41:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7LXxfg004581\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 16:33:59 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7LXxcw004579\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 16:33:59 -0500\nDate: Fri, 7 Dec 2007 16:33:59 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 16:41:23 2007\nX-DSPAM-Confidence: 0.8514\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39076\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 16:33:56 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39076\n\nModified:\nassignment/branches/post-2-4/assignment-api/api/src/java/org/sakaiproject/assignment/api/AssignmentService.java\nassignment/branches/post-2-4/assignment-api/api/src/java/org/sakaiproject/assignment/cover/AssignmentService.java\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerge into post-2-4:\n\n#38958\tMon Dec 03 14:39:49 MST 2007\tzqian@umich.edu\t fix to SAK-11623:The student column, should only display a list of students, and not display instructor.\nFiles Changed\nMODIFY /assignment/trunk/assignment-api/api/src/java/org/sakaiproject/assignment/api/AssignmentService.java \nMODIFY /assignment/trunk/assignment-api/api/src/java/org/sakaiproject/assignment/cover/AssignmentService.java \nMODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 16:16:16 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 16:16:16 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 16:16:16 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby casino.mail.umich.edu () with ESMTP id lB7LGF2F007785;\n\tFri, 7 Dec 2007 16:16:15 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 4759B80C.889B2.32694 ; \n\t 7 Dec 2007 16:15:59 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id F41609644A;\n\tFri,  7 Dec 2007 21:15:53 +0000 (GMT)\nMessage-ID: <200712072108.lB7L8YWI004403@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 112\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 21:15:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 46A7131F30\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 21:15:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7L8YS4004405\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 16:08:34 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7L8YWI004403\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 16:08:34 -0500\nDate: Fri, 7 Dec 2007 16:08:34 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39070 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 16:16:16 2007\nX-DSPAM-Confidence: 0.9847\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39070\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 16:08:33 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39070\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerge r37723 into post-2-4:\n\nsvn merge -r 37722:37723 https://source.sakaiproject.org/svn/assignment/trunk/\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 16:10:21 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 16:10:21 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 16:10:21 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby awakenings.mail.umich.edu () with ESMTP id lB7LAJ5t016620;\n\tFri, 7 Dec 2007 16:10:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 4759B6B5.51841.8780 ; \n\t 7 Dec 2007 16:10:16 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4EB6D96EB1;\n\tFri,  7 Dec 2007 21:10:12 +0000 (GMT)\nMessage-ID: <200712072102.lB7L2nCo004372@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 358\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 21:09:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 112AC23828\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 21:09:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7L2nhp004374\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 16:02:49 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7L2nCo004372\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 16:02:49 -0500\nDate: Fri, 7 Dec 2007 16:02:49 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39069 - assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 16:10:21 2007\nX-DSPAM-Confidence: 0.8518\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39069\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 16:02:47 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39069\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_uploadAll.vm\nLog:\nmerge into post-2-4:\n\n#37713\tFri Nov 02 12:00:36 MST 2007\tzqian@umich.edu\t fix to SAK-11769:Assignments Confirmation before Upload All\nFiles Changed\nMODIFY /assignment/trunk/assignment-bundles/assignment.properties \nMODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_uploadAll.vm \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 16:07:05 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 16:07:05 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 16:07:05 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby score.mail.umich.edu () with ESMTP id lB7L74KT008944;\n\tFri, 7 Dec 2007 16:07:04 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 4759B5F0.E0AE4.8421 ; \n\t 7 Dec 2007 16:07:00 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EA24D96E03;\n\tFri,  7 Dec 2007 20:36:19 +0000 (GMT)\nMessage-ID: <200712072029.lB7KT5iv004126@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 872\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 20:36:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BF93131F02\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 20:36:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7KT5s2004128\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 15:29:05 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7KT5iv004126\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:29:05 -0500\nDate: Fri, 7 Dec 2007 15:29:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39056 - assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 16:07:05 2007\nX-DSPAM-Confidence: 0.8515\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39056\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 15:29:03 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39056\n\nModified:\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nmerge into post-2-4:\n\n#37328\tTue Oct 23 09:36:01 MST 2007\tzqian@umich.edu\t fix to SAK-11634:Assignment uses UsageSession rather than normal Session\nFiles Changed\nMODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Fri Dec  7 16:07:03 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 16:07:03 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 16:07:03 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby awakenings.mail.umich.edu () with ESMTP id lB7L72ta014827;\n\tFri, 7 Dec 2007 16:07:02 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4759B5F0.D3C92.25002 ; \n\t 7 Dec 2007 16:06:59 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D47FA96E7D;\n\tFri,  7 Dec 2007 20:37:08 +0000 (GMT)\nMessage-ID: <200712072029.lB7KTnmq004138@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 95\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 20:36:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 75FEA31F20\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 20:36:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7KTnUk004140\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 15:29:49 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7KTnmq004138\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:29:49 -0500\nDate: Fri, 7 Dec 2007 15:29:49 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 16:07:03 2007\nX-DSPAM-Confidence: 0.9824\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39057\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-07 15:29:46 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39057\n\nAdded:\ngradebook/branches/oncourse_opc_122007/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GbSynchronizerImpl.java\ngradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/ExportForSISOncourseUtility.java\ngradebook/branches/oncourse_opc_122007/service/hibernate/src/java/org/sakaiproject/tool/gradebook/GradeRecordSet.java\nModified:\ngradebook/branches/oncourse_opc_122007/app/project.xml\ngradebook/branches/oncourse_opc_122007/app/sakai-tool/src/webapp/tools/sakai.gradebook.tool.xml\ngradebook/branches/oncourse_opc_122007/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties\ngradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/jsf/AssignmentGradeValidator.java\ngradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/CourseGradeDetailsBean.java\ngradebook/branches/oncourse_opc_122007/app/ui/src/webapp/WEB-INF/spring-beans.xml\ngradebook/branches/oncourse_opc_122007/app/ui/src/webapp/WEB-INF/spring-hib.xml\ngradebook/branches/oncourse_opc_122007/app/ui/src/webapp/courseGradeDetails.jsp\ngradebook/branches/oncourse_opc_122007/service/impl/project.xml\ngradebook/branches/oncourse_opc_122007/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java\ngradebook/branches/oncourse_opc_122007/service/sakai-pack/src/webapp/WEB-INF/components.xml\nLog:\nmerging in stuff from oncourse overlay\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Fri Dec  7 16:07:03 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 16:07:03 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 16:07:03 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby mission.mail.umich.edu () with ESMTP id lB7L71t0028880;\n\tFri, 7 Dec 2007 16:07:02 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 4759B5F0.DDBE1.30081 ; \n\t 7 Dec 2007 16:06:59 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id F075A96E85;\n\tFri,  7 Dec 2007 20:38:47 +0000 (GMT)\nMessage-ID: <200712072031.lB7KVQ7Y004162@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 441\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 20:38:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0EFFB31F20\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 20:38:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7KVQ4V004164\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 15:31:26 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7KVQ7Y004162\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:31:26 -0500\nDate: Fri, 7 Dec 2007 15:31:26 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r39059 - in assignment/branches/sakai_2-5-x/assignment-tool/tool/src: java/org/sakaiproject/assignment/tool webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 16:07:03 2007\nX-DSPAM-Confidence: 0.6526\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39059\n\nAuthor: mmmay@indiana.edu\nDate: 2007-12-07 15:31:19 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39059\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_view_assignment.vm\nLog:\nsvn merge -r 38952:38954 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nU    assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_view_assignment.vm\n0:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 38952:38954 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr38953 | zqian@umich.edu | 2007-12-03 12:24:50 -0500 (Mon, 03 Dec 2007) | 1 line\n\nFix to SAK-5956: Assignment Tool Exceptions\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Fri Dec  7 16:07:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 16:07:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 16:07:02 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby flawless.mail.umich.edu () with ESMTP id lB7L71CA007811;\n\tFri, 7 Dec 2007 16:07:01 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 4759B5F0.5FFEC.1881 ; \n\t 7 Dec 2007 16:06:59 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A6AD596E86;\n\tFri,  7 Dec 2007 20:38:23 +0000 (GMT)\nMessage-ID: <200712072031.lB7KV89p004150@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 651\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 20:38:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 67E9631F20\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 20:38:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7KV8Mo004152\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 15:31:08 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7KV89p004150\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:31:08 -0500\nDate: Fri, 7 Dec 2007 15:31:08 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39058 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 16:07:02 2007\nX-DSPAM-Confidence: 0.9809\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39058\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-07 15:31:07 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39058\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdating externals for gradebook updates\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Fri Dec  7 16:07:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 16:07:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 16:07:02 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby awakenings.mail.umich.edu () with ESMTP id lB7L71fL014794;\n\tFri, 7 Dec 2007 16:07:01 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 4759B5F0.1111B.30031 ; \n\t 7 Dec 2007 16:06:58 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 16F5F9664C;\n\tFri,  7 Dec 2007 20:35:33 +0000 (GMT)\nMessage-ID: <200712072028.lB7KSBX0004114@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 896\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 20:35:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 12E6831F02\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 20:35:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7KSBHt004116\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 15:28:11 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7KSBX0004114\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:28:11 -0500\nDate: Fri, 7 Dec 2007 15:28:11 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 16:07:02 2007\nX-DSPAM-Confidence: 0.7009\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39055\n\nAuthor: mmmay@indiana.edu\nDate: 2007-12-07 15:28:00 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39055\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/upgradeschema.config\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nsvn merge -r 38926:38928 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nU    assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/upgradeschema.config\n0:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 38926:38928 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr38927 | zqian@umich.edu | 2007-11-30 16:55:44 -0500 (Fri, 30 Nov 2007) | 1 line\n\nmerge fix to SAK-12289 into trunk:svn merge -r 38925:38926 https://source.sakaiproject.org/svn/assignment/branches/post-2-4/\n------------------------------------------------------------------------\nr38928 | zqian@umich.edu | 2007-11-30 17:03:42 -0500 (Fri, 30 Nov 2007) | 1 line\n\nfix to SAK-12289, remove the unnecessary checkins made in 38927\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 16:05:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 16:05:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 16:05:51 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby awakenings.mail.umich.edu () with ESMTP id lB7L5oFJ014161;\n\tFri, 7 Dec 2007 16:05:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 4759B5A8.946B.18874 ; \n\t 7 Dec 2007 16:05:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 487155693D;\n\tFri,  7 Dec 2007 21:05:42 +0000 (GMT)\nMessage-ID: <200712072058.lB7KwRe1004358@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 273\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 21:05:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 466E823828\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 21:05:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7KwRpQ004360\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 15:58:27 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7KwRe1004358\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:58:27 -0500\nDate: Fri, 7 Dec 2007 15:58:27 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39068 - assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 16:05:51 2007\nX-DSPAM-Confidence: 0.8510\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39068\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 15:58:25 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39068\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm\nLog:\nmerge into post-2-4:\n\n#37700\tFri Nov 02 07:26:09 MST 2007\tzqian@umich.edu\t Fix to SAK-12085:Long group list in For column does not wrap\nFiles Changed\nMODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 16:03:11 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 16:03:11 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 16:03:11 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby chaos.mail.umich.edu () with ESMTP id lB7L3APU021851;\n\tFri, 7 Dec 2007 16:03:10 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4759B504.39A8A.22341 ; \n\t 7 Dec 2007 16:03:04 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 03AFF5271B;\n\tFri,  7 Dec 2007 21:02:57 +0000 (GMT)\nMessage-ID: <200712072055.lB7KtfaQ004342@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 874\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 21:02:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2622023828\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 21:02:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7Ktfn1004344\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 15:55:41 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7KtfaQ004342\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:55:41 -0500\nDate: Fri, 7 Dec 2007 15:55:41 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39067 - assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 16:03:11 2007\nX-DSPAM-Confidence: 0.8517\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39067\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 15:55:40 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39067\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm\nLog:\nmerge into post-2-4:\n\n#37659\tTue Oct 30 20:20:08 MST 2007\tzqian@umich.edu\t Fix to SAK-11898: View or grade submissions: Pager is shown even when there aren't submissions\nFiles Changed\nMODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 16:00:18 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 16:00:18 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 16:00:18 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby chaos.mail.umich.edu () with ESMTP id lB7L0EV4019534;\n\tFri, 7 Dec 2007 16:00:14 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4759B452.51974.12149 ; \n\t 7 Dec 2007 16:00:05 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 51BFC96E7B;\n\tFri,  7 Dec 2007 20:59:48 +0000 (GMT)\nMessage-ID: <200712072052.lB7KqVfp004315@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 683\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 20:59:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E9D5023828\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 20:59:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7KqV1C004317\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 15:52:31 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7KqVfp004315\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:52:31 -0500\nDate: Fri, 7 Dec 2007 15:52:31 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39066 - in assignment/branches/post-2-4/assignment-tool/tool/src: java/org/sakaiproject/assignment/tool webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 16:00:18 2007\nX-DSPAM-Confidence: 0.8513\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39066\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 15:52:27 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39066\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm\nLog:\nmerge into post-2-4:\n\n#37483\tMon Oct 29 12:15:04 MST 2007\tzqian@umich.edu\t fix to SAK-12075:assignment tool requires both 'asn.new' and 'asn.grade' for a TA to see the Grade link\nFiles Changed\nMODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm \nMODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Fri Dec  7 15:53:31 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 15:53:31 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 15:53:31 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby panther.mail.umich.edu () with ESMTP id lB7KrUPh014714;\n\tFri, 7 Dec 2007 15:53:30 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 4759B2C2.16D87.6803 ; \n\t 7 Dec 2007 15:53:25 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 54D2696EB1;\n\tFri,  7 Dec 2007 20:53:21 +0000 (GMT)\nMessage-ID: <200712072045.lB7Kjrfp004264@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 780\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 20:52:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DBE2A31F20\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 20:52:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7Kjrld004266\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 15:45:53 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7Kjrfp004264\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:45:53 -0500\nDate: Fri, 7 Dec 2007 15:45:53 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39065 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 15:53:31 2007\nX-DSPAM-Confidence: 0.8434\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39065\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-07 15:45:52 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39065\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nrevving down authz, portal, site to back out the student view stuff \n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Fri Dec  7 15:51:09 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 15:51:09 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 15:51:09 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby jacknife.mail.umich.edu () with ESMTP id lB7Kp84n023644;\n\tFri, 7 Dec 2007 15:51:08 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4759B1FD.7ED59.17022 ; \n\t 7 Dec 2007 15:50:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2A94996EB0;\n\tFri,  7 Dec 2007 20:50:04 +0000 (GMT)\nMessage-ID: <200712072042.lB7KglfS004251@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 177\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 20:49:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C87AC31F20\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 20:49:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7KglA2004253\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 15:42:47 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7KglfS004251\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:42:47 -0500\nDate: Fri, 7 Dec 2007 15:42:47 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r39064 - site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 15:51:09 2007\nX-DSPAM-Confidence: 0.7616\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39064\n\nAuthor: mmmay@indiana.edu\nDate: 2007-12-07 15:42:43 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39064\n\nModified:\nsite-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nLog:\nsvn merge -r 38976:38977 https://source.sakaiproject.org/svn/site-manage/trunk\nU    site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\n0:~/java/2-5/sakai_2-5-x/site-manage mmmay$ svn log -r 38976:38977 https://source.sakaiproject.org/svn/site-manage/trunk\n------------------------------------------------------------------------\nr38977 | zqian@umich.edu | 2007-12-05 11:45:19 -0500 (Wed, 05 Dec 2007) | 1 line\n\nfix to SAK-12338:exception in the manually request course site page if no course information is entered\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Fri Dec  7 15:47:32 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 15:47:32 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 15:47:32 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby score.mail.umich.edu () with ESMTP id lB7KlVHY025665;\n\tFri, 7 Dec 2007 15:47:31 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4759B150.5BDCE.6724 ; \n\t 7 Dec 2007 15:47:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 412D796EA4;\n\tFri,  7 Dec 2007 20:47:12 +0000 (GMT)\nMessage-ID: <200712072039.lB7KdvFj004232@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 786\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 20:47:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3220D31F21\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 20:47:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7KdvND004234\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 15:39:57 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7KdvFj004232\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:39:57 -0500\nDate: Fri, 7 Dec 2007 15:39:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r39063 - polls/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/poll/tool/producers\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 15:47:32 2007\nX-DSPAM-Confidence: 0.7001\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39063\n\nAuthor: mmmay@indiana.edu\nDate: 2007-12-07 15:39:51 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39063\n\nModified:\npolls/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/poll/tool/producers/PollOptionProducer.java\nLog:\nsvn merge -r 38947:38948 https://source.sakaiproject.org/svn/polls/trunk\nU    tool/src/java/org/sakaiproject/poll/tool/producers/PollOptionProducer.java\n0:~/java/2-5/sakai_2-5-x/polls mmmay$ svn log -r 38947:38948 https://source.sakaiproject.org/svn/polls/trunk\n------------------------------------------------------------------------\nr38948 | david.horwitz@uct.ac.za | 2007-12-03 10:18:02 -0500 (Mon, 03 Dec 2007) | 1 line\n\nSAK-12317 render the edit options header\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Fri Dec  7 15:46:48 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 15:46:48 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 15:46:48 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby chaos.mail.umich.edu () with ESMTP id lB7KkhZn010151;\n\tFri, 7 Dec 2007 15:46:43 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 4759B12C.56D0C.8275 ; \n\t 7 Dec 2007 15:46:39 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C328E968C3;\n\tFri,  7 Dec 2007 20:46:32 +0000 (GMT)\nMessage-ID: <200712072039.lB7KdEMQ004217@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 183\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 20:46:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id ED30A31F21\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 20:46:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7KdEIH004219\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 15:39:14 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7KdEMQ004217\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:39:14 -0500\nDate: Fri, 7 Dec 2007 15:39:14 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39062 - authz/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 15:46:48 2007\nX-DSPAM-Confidence: 0.9783\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39062\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-07 15:39:13 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39062\n\nRemoved:\nauthz/branches/oncourse_opc_122007_overlay/\nLog:\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 15:44:15 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 15:44:15 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 15:44:15 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby awakenings.mail.umich.edu () with ESMTP id lB7KiEW1031603;\n\tFri, 7 Dec 2007 15:44:14 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 4759B090.82723.12696 ; \n\t 7 Dec 2007 15:44:03 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7035C5D4CC;\n\tFri,  7 Dec 2007 20:44:00 +0000 (GMT)\nMessage-ID: <200712072036.lB7Kaj9h004202@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 267\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 20:43:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 002BA31F21\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 20:43:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7KajgC004204\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 15:36:45 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7Kaj9h004202\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:36:45 -0500\nDate: Fri, 7 Dec 2007 15:36:45 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39061 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 15:44:15 2007\nX-DSPAM-Confidence: 0.8514\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39061\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 15:36:43 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39061\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerge into post-2-4:\n\n#37421\tFri Oct 26 10:58:49 MST 2007\tzqian@umich.edu\t fix to SAK-12058:Grade Report in Assignments orders by default by Last Name, should order by Last Name, First Name\nFiles Changed\nMODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Fri Dec  7 15:43:07 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 15:43:07 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 15:43:07 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby score.mail.umich.edu () with ESMTP id lB7Kh6R7022340;\n\tFri, 7 Dec 2007 15:43:06 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4759B053.74B5A.24480 ; \n\t 7 Dec 2007 15:43:02 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 26CFD80094;\n\tFri,  7 Dec 2007 20:42:58 +0000 (GMT)\nMessage-ID: <200712072035.lB7KZewk004182@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 800\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 20:42:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 011C031F20\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 20:42:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7KZeH0004184\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 15:35:40 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7KZewk004182\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:35:40 -0500\nDate: Fri, 7 Dec 2007 15:35:40 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r39060 - in gradebook/branches/sakai_2-5-x/app/ui/src: bundle/org/sakaiproject/tool/gradebook/bundle webapp\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 15:43:07 2007\nX-DSPAM-Confidence: 0.7619\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39060\n\nAuthor: mmmay@indiana.edu\nDate: 2007-12-07 15:35:29 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39060\n\nModified:\ngradebook/branches/sakai_2-5-x/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties\ngradebook/branches/sakai_2-5-x/app/ui/src/webapp/assignmentDetails.jsp\nLog:\nsvn merge -r 36790:36791 https://source.sakaiproject.org/svn/gradebook/trunk\nU    app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties\nU    app/ui/src/webapp/assignmentDetails.jsp\n0:~/java/2-5/sakai_2-5-x/gradebook mmmay$ svn log -r 36790:36791 https://source.sakaiproject.org/svn/gradebook/trunk\n------------------------------------------------------------------------\nr36791 | rjlowe@iupui.edu | 2007-10-12 10:04:56 -0400 (Fri, 12 Oct 2007) | 1 line\n\nSAK-11915 - Paging tool ignores current page changes\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 15:30:39 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 15:30:39 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 15:30:39 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby fan.mail.umich.edu () with ESMTP id lB7KUc2Z017147;\n\tFri, 7 Dec 2007 15:30:38 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4759AD59.AE7DD.20773 ; \n\t 7 Dec 2007 15:30:20 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 81D415E69C;\n\tFri,  7 Dec 2007 20:30:16 +0000 (GMT)\nMessage-ID: <200712072022.lB7KMql9004102@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 31\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 20:29:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 25CCB31F02\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 20:29:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7KMquh004104\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 15:22:52 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7KMql9004102\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:22:52 -0500\nDate: Fri, 7 Dec 2007 15:22:52 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39054 - assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 15:30:39 2007\nX-DSPAM-Confidence: 0.8517\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39054\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 15:22:51 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39054\n\nModified:\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nmerge into post-2-4:\n\n#37053\tTue Oct 16 11:20:48 MST 2007\tzqian@umich.edu\t Fix to SAK-11639:all columns in the downloaded 'grade report' spreadsheet should be 'bold' or 'not bold'\n\nMake all columns 'not bold'\nFiles Changed\nMODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 15:26:54 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 15:26:54 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 15:26:54 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby godsend.mail.umich.edu () with ESMTP id lB7KQrl8023941;\n\tFri, 7 Dec 2007 15:26:54 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 4759AC87.9E652.4245 ; \n\t 7 Dec 2007 15:26:50 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 81E77743F9;\n\tFri,  7 Dec 2007 20:26:46 +0000 (GMT)\nMessage-ID: <200712072019.lB7KJV1d004090@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 971\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 20:26:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BDCC72B008\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 20:26:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7KJV5G004092\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 15:19:31 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7KJV1d004090\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:19:31 -0500\nDate: Fri, 7 Dec 2007 15:19:31 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39053 - assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 15:26:54 2007\nX-DSPAM-Confidence: 0.8520\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39053\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 15:19:29 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39053\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission.vm\nLog:\nmerged into post-2-4:\n\n#36803\tFri Oct 12 12:44:01 MST 2007\tzqian@umich.edu\t fix to SAK-11919:student cannot see instructor feedback for his return submission which he hasn't started yet\nFiles Changed\nMODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission.vm \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 15:23:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 15:23:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 15:23:30 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby godsend.mail.umich.edu () with ESMTP id lB7KNSTc020780;\n\tFri, 7 Dec 2007 15:23:28 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 4759ABBA.6B520.17007 ; \n\t 7 Dec 2007 15:23:25 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2AD25743F8;\n\tFri,  7 Dec 2007 20:23:21 +0000 (GMT)\nMessage-ID: <200712072016.lB7KG49G004078@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 401\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 20:23:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DDDA92B008\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 20:23:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7KG4FX004080\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 15:16:04 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7KG49G004078\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 15:16:04 -0500\nDate: Fri, 7 Dec 2007 15:16:04 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39052 - assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 15:23:30 2007\nX-DSPAM-Confidence: 0.9929\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39052\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 15:16:02 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39052\n\nModified:\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nmerge into post-2-4:\n\n#36592\tMon Oct 08 13:43:54 MST 2007\tzqian@umich.edu\t fix to SAK-11643:student should be able to see the assigned grade after returned /graded\nFiles Changed\nMODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java \n\n#36595\tMon Oct 08 13:49:55 MST 2007\tzqian@umich.edu\t fix to SAK-11643:student should be able to see the assigned grade after returned /graded\nFiles Changed\nMODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 15:01:08 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 15:01:08 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 15:01:08 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby flawless.mail.umich.edu () with ESMTP id lB7K18PV027234;\n\tFri, 7 Dec 2007 15:01:08 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 4759A675.DC7FB.7057 ; \n\t 7 Dec 2007 15:01:02 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A49AE96E03;\n\tFri,  7 Dec 2007 20:00:52 +0000 (GMT)\nMessage-ID: <200712071953.lB7JrT2v004052@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 895\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 20:00:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A3855D0E8\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 20:00:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7JrTsO004054\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 14:53:29 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7JrT2v004052\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 14:53:29 -0500\nDate: Fri, 7 Dec 2007 14:53:29 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39051 - assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 15:01:08 2007\nX-DSPAM-Confidence: 0.9829\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39051\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 14:53:27 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39051\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm\nLog:\nmerge into post-2-4:\n\nmerge r36561 into post-2-4 for SAK-11591: Assignmets clicking enter key after inputting grade\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 14:55:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 14:55:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 14:55:19 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby faithful.mail.umich.edu () with ESMTP id lB7JtIgd013098;\n\tFri, 7 Dec 2007 14:55:18 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 4759A51D.1FB9D.24355 ; \n\t 7 Dec 2007 14:55:11 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 028EC95777;\n\tFri,  7 Dec 2007 19:55:06 +0000 (GMT)\nMessage-ID: <200712071947.lB7JlqD1004024@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 716\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 19:54:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 43006D0E8\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 19:54:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7JlqhY004026\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 14:47:52 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7JlqD1004024\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 14:47:52 -0500\nDate: Fri, 7 Dec 2007 14:47:52 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39050 - in assignment/branches/post-2-4/assignment-tool/tool/src: java/org/sakaiproject/assignment/tool webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 14:55:19 2007\nX-DSPAM-Confidence: 0.7619\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39050\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 14:47:50 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39050\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission_confirmation.vm\nLog:\nmerge into post-2-4:\n\n#36082\tTue Oct 02 11:12:20 MST 2007\tzqian@umich.edu\t fix to SAK-11652:Student save Assignment as draft with out submitt\nFiles Changed\nMODIFY /assignment/trunk/assignment-bundles/assignment.properties \nMODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission_confirmation.vm \nMODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 14:52:09 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 14:52:09 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 14:52:09 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby flawless.mail.umich.edu () with ESMTP id lB7Jq7ZF022129;\n\tFri, 7 Dec 2007 14:52:07 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4759A451.F08DE.3449 ; \n\t 7 Dec 2007 14:51:48 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 948D695777;\n\tFri,  7 Dec 2007 19:51:45 +0000 (GMT)\nMessage-ID: <200712071944.lB7JiMmX004012@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 613\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 19:51:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D141AD0E8\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 19:51:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7JiMdf004014\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 14:44:22 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7JiMmX004012\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 14:44:22 -0500\nDate: Fri, 7 Dec 2007 14:44:22 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 14:52:09 2007\nX-DSPAM-Confidence: 0.7620\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39049\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 14:44:19 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39049\n\nModified:\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm\nLog:\nmerge into post-2-4:\n\n#35979\tFri Sep 28 13:59:57 MST 2007\tzqian@umich.edu\t fix to SAK-11749: TA can add Assignment and Grade assignment\nFiles Changed\nMODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm \nMODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java \nMODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java \n\n#36083\tTue Oct 02 11:22:47 MST 2007\tzqian@umich.edu\t fix to SAK-11749:TA can add Assignment and Grade assignment; fixed the misalignment of columns in the student list view\nFiles Changed\nMODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 14:35:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 14:35:50 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 14:35:50 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby casino.mail.umich.edu () with ESMTP id lB7JZn3f002080;\n\tFri, 7 Dec 2007 14:35:49 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 4759A08F.A4A1E.21454 ; \n\t 7 Dec 2007 14:35:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7251E6166B;\n\tFri,  7 Dec 2007 19:35:42 +0000 (GMT)\nMessage-ID: <200712071928.lB7JSQH3003998@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 582\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 19:35:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EB13E2F044\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 19:35:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7JSQYC004000\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 14:28:26 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7JSQH3003998\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 14:28:26 -0500\nDate: Fri, 7 Dec 2007 14:28:26 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39048 - assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 14:35:50 2007\nX-DSPAM-Confidence: 0.7615\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39048\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 14:28:25 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39048\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_reorder_assignment.vm\nLog:\nmerge into post-2-4:\n\n#35906\tThu Sep 27 08:22:01 MST 2007\tzqian@umich.edu\t fix to SAK-11640:'Position', 'Assignment title', 'Open', or 'Due' should reorder/sort the list by the field that is clicked.\nFiles Changed\nMODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_reorder_assignment.vm \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 14:31:26 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 14:31:26 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 14:31:26 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby flawless.mail.umich.edu () with ESMTP id lB7JVPHP007019;\n\tFri, 7 Dec 2007 14:31:25 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 47599F7E.8984A.28062 ; \n\t 7 Dec 2007 14:31:13 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 459AA96DDE;\n\tFri,  7 Dec 2007 19:31:08 +0000 (GMT)\nMessage-ID: <200712071923.lB7JNnge003972@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 366\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 19:30:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 75C472F044\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 19:30:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7JNnl6003974\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 14:23:49 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7JNnge003972\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 14:23:49 -0500\nDate: Fri, 7 Dec 2007 14:23:49 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39047 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 14:31:26 2007\nX-DSPAM-Confidence: 0.9908\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39047\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 14:23:48 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39047\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerged into post-2-4:\n\n#35746\tMon Sep 24 16:11:27 MST 2007\tzqian@umich.edu\t 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.\nFiles Changed\nMODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 14:29:07 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 14:29:07 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 14:29:07 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby brazil.mail.umich.edu () with ESMTP id lB7JT6hK019845;\n\tFri, 7 Dec 2007 14:29:06 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 47599EFB.BDC4A.21257 ; \n\t 7 Dec 2007 14:29:02 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4EEBE96DF4;\n\tFri,  7 Dec 2007 19:28:54 +0000 (GMT)\nMessage-ID: <200712071921.lB7JLWoI003960@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 19:28:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1B6322EDC2\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 19:28:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7JLWVG003962\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 14:21:32 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7JLWoI003960\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 14:21:32 -0500\nDate: Fri, 7 Dec 2007 14:21:32 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39046 - assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 14:29:07 2007\nX-DSPAM-Confidence: 0.8507\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39046\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 14:21:31 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39046\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission.vm\nLog:\nmerge into post-2-4:\n\n#35722\tMon Sep 24 10:46:53 MST 2007\tzqian@umich.edu\t fix to SAK-11619:' Fill out Form' should not be a the top of page for an attachment only assignment\nFiles Changed\nMODIFY /assignment/trunk/assignment-bundles/assignment.properties \nMODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission.vm \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 14:26:01 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 14:26:01 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 14:26:01 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby casino.mail.umich.edu () with ESMTP id lB7JQ0Ip027901;\n\tFri, 7 Dec 2007 14:26:00 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 47599E42.6A9D8.21712 ; \n\t 7 Dec 2007 14:25:57 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6BE5E96DAF;\n\tFri,  7 Dec 2007 19:25:49 +0000 (GMT)\nMessage-ID: <200712071918.lB7JIWB4003948@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 692\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 19:25:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E96BC2EDC2\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 19:25:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7JIW1Z003950\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 14:18:32 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7JIWB4003948\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 14:18:32 -0500\nDate: Fri, 7 Dec 2007 14:18:32 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39045 - in assignment/branches/post-2-4/assignment-tool/tool/src: java/org/sakaiproject/assignment/tool webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 14:26:01 2007\nX-DSPAM-Confidence: 0.8502\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39045\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 14:18:30 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39045\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm\nLog:\nmerge into post-2-4:\n\n#35721\tMon Sep 24 10:32:21 MST 2007\tzqian@umich.edu\t 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\nFiles Changed\nMODIFY /assignment/trunk/assignment-bundles/assignment.properties \nMODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm \nMODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 14:13:28 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 14:13:28 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 14:13:28 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby awakenings.mail.umich.edu () with ESMTP id lB7JDQpr008277;\n\tFri, 7 Dec 2007 14:13:26 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 47599B4C.E1A63.18757 ; \n\t 7 Dec 2007 14:13:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CDC7896B0D;\n\tFri,  7 Dec 2007 19:13:12 +0000 (GMT)\nMessage-ID: <200712071905.lB7J5uUs003928@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 646\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 19:12:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 223A531F14\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 19:12:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7J5uIj003930\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 14:05:56 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7J5uUs003928\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 14:05:56 -0500\nDate: Fri, 7 Dec 2007 14:05:56 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 14:13:28 2007\nX-DSPAM-Confidence: 0.8501\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39044\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 14:05:53 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39044\n\nModified:\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm\nLog:\nmerge into post-2-4:\n\n#35094\tFri Sep 14 09:40:39 MST 2007\tzqian@umich.edu\t fix to SAK-7643:Site-scoped section-aware assignments\nFiles Changed\nMODIFY /assignment/trunk/assignment-api/api/src/java/org/sakaiproject/assignment/api/AssignmentService.java \nMODIFY /assignment/trunk/assignment-bundles/assignment.properties \nMODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm \nMODIFY /assignment/trunk/assignment-api/api/src/java/org/sakaiproject/assignment/cover/AssignmentService.java \nMODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java \nMODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java \nMODIFY /assignment/trunk/assignment-api/api/src/java/org/sakaiproject/assignment/api/AssignmentSubmission.java \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 13:55:12 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 13:55:12 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 13:55:12 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby godsend.mail.umich.edu () with ESMTP id lB7ItBvu026607;\n\tFri, 7 Dec 2007 13:55:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 47599709.A9D6.24212 ; \n\t 7 Dec 2007 13:55:07 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2173196D0D;\n\tFri,  7 Dec 2007 18:40:08 +0000 (GMT)\nMessage-ID: <200712071847.lB7IlnLn003903@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 501\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 18:39:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A3C89B11A\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 18:54:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7IlnF9003905\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 13:47:49 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7IlnLn003903\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 13:47:49 -0500\nDate: Fri, 7 Dec 2007 13:47:49 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39043 - in assignment/branches/post-2-4/assignment-tool/tool/src: java/org/sakaiproject/assignment/tool webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 13:55:12 2007\nX-DSPAM-Confidence: 0.7615\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39043\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 13:47:47 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39043\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm\nLog:\nmerge into post-2-4:\n\n#35041\tThu Sep 13 11:10:25 MST 2007\tzqian@umich.edu\t fix to SAK-11493:add the ability to assign grade to all non-graded non-electronic submissions\nFiles Changed\nMODIFY /assignment/trunk/assignment-bundles/assignment.properties \nMODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm \nMODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm \nMODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 13:51:45 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 13:51:45 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 13:51:45 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby chaos.mail.umich.edu () with ESMTP id lB7IpfKX006877;\n\tFri, 7 Dec 2007 13:51:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 47599637.3C499.9129 ; \n\t 7 Dec 2007 13:51:38 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 93F8D96D06;\n\tFri,  7 Dec 2007 18:36:36 +0000 (GMT)\nMessage-ID: <200712071844.lB7Ii76E003891@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 687\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 18:36:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3D063B11A\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 18:51:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7Ii7ok003893\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 13:44:07 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7Ii76E003891\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 13:44:07 -0500\nDate: Fri, 7 Dec 2007 13:44:07 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39042 - assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 13:51:45 2007\nX-DSPAM-Confidence: 0.7616\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39042\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 13:44:06 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39042\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm\nLog:\nmerge into post-2-4:\n\n#34956\tTue Sep 11 09:07:02 MST 2007\tzqian@umich.edu\t fix to SAK-11464:asn.grade in group realm seems to allow grading in site\nFiles Changed\nMODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm \n\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 13:36:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 13:36:13 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 13:36:13 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby score.mail.umich.edu () with ESMTP id lB7IaCsb008379;\n\tFri, 7 Dec 2007 13:36:12 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 47599296.505E8.1555 ; \n\t 7 Dec 2007 13:36:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4A66096B72;\n\tFri,  7 Dec 2007 18:21:09 +0000 (GMT)\nMessage-ID: <200712071828.lB7ISioi003869@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 532\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 18:20:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B6F3331ED7\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 18:35:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7ISiME003871\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 13:28:44 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7ISioi003869\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 13:28:44 -0500\nDate: Fri, 7 Dec 2007 13:28:44 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39041 - assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 13:36:13 2007\nX-DSPAM-Confidence: 0.9911\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39041\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 13:28:42 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39041\n\nModified:\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nmerge into post-2-4:\n\n#34747\tThu Sep 06 10:46:39 MST 2007\tzqian@umich.edu\t fix to SAK-11397: Use SAX serialization in Assignment tool\nFiles Changed\nMODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 13:32:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 13:32:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 13:32:30 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby godsend.mail.umich.edu () with ESMTP id lB7IWTpF009485;\n\tFri, 7 Dec 2007 13:32:29 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 475991AD.D905D.20656 ; \n\t 7 Dec 2007 13:32:24 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9C78F96403;\n\tFri,  7 Dec 2007 18:17:11 +0000 (GMT)\nMessage-ID: <200712071813.lB7IDMWB003820@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 5\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 18:09:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 43C192EDC2\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 18:20:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7IDN3k003822\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 13:13:23 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7IDMWB003820\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 13:13:22 -0500\nDate: Fri, 7 Dec 2007 13:13:22 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39039 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 13:32:30 2007\nX-DSPAM-Confidence: 0.9909\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39039\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 13:13:21 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39039\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerged into post-2-4:\n\n#34630\tFri Aug 31 12:25:23 MST 2007\tzqian@umich.edu\t fix to SAK-11349:Assignment upload all process fails when one submitter couldn't be found by UserDirectoryService\nFiles Changed\nMODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 13:32:14 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 13:32:14 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 13:32:14 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby casino.mail.umich.edu () with ESMTP id lB7IWDkr023269;\n\tFri, 7 Dec 2007 13:32:13 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 475991A8.68285.31652 ; \n\t 7 Dec 2007 13:32:11 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0F90696B29;\n\tFri,  7 Dec 2007 18:17:10 +0000 (GMT)\nMessage-ID: <200712071823.lB7INGR6003848@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 45\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 18:14:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2FCF42EDC4\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 18:30:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7INGul003850\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 13:23:16 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7INGR6003848\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 13:23:16 -0500\nDate: Fri, 7 Dec 2007 13:23:16 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39040 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 13:32:14 2007\nX-DSPAM-Confidence: 0.8512\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39040\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 13:23:15 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39040\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerge into post-2-4:\n\n#34741\tThu Sep 06 08:32:44 MST 2007\tzqian@umich.edu\t Fix to SAK-11387:remove the redundant call to get assignment list size in assignment tool\nFiles Changed\nMODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java \n\n-gThis line, and those below, will be ignored--\n\nM    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Fri Dec  7 13:31:33 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 13:31:33 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 13:31:33 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby godsend.mail.umich.edu () with ESMTP id lB7IVWeI008742;\n\tFri, 7 Dec 2007 13:31:32 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 4759917E.3852F.476 ; \n\t 7 Dec 2007 13:31:29 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B3D9696C0F;\n\tFri,  7 Dec 2007 18:16:27 +0000 (GMT)\nMessage-ID: <200712071753.lB7HrFW9003787@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 176\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 18:00:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9414931EB1\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 18:00:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7HrFbx003789\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 12:53:15 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7HrFW9003787\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 12:53:15 -0500\nDate: Fri, 7 Dec 2007 12:53:15 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39038 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 13:31:33 2007\nX-DSPAM-Confidence: 0.9781\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39038\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-07 12:53:14 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39038\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nUpdating externals for the removal of the portal sitenav.properties changes\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Fri Dec  7 12:57:39 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 12:57:39 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 12:57:39 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby faithful.mail.umich.edu () with ESMTP id lB7HvcYf004891;\n\tFri, 7 Dec 2007 12:57:38 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4759898D.458C0.22521 ; \n\t 7 Dec 2007 12:57:36 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2F73896AD4;\n\tFri,  7 Dec 2007 17:57:32 +0000 (GMT)\nMessage-ID: <200712071750.lB7HoIJN003775@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 941\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 17:57:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E11B031EB1\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 17:57:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7HoIhU003777\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 12:50:18 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7HoIJN003775\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 12:50:18 -0500\nDate: Fri, 7 Dec 2007 12:50:18 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39037 - portal/branches/oncourse_opc_122007/portal-impl/impl/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 12:57:39 2007\nX-DSPAM-Confidence: 0.9785\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39037\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-07 12:50:17 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39037\n\nModified:\nportal/branches/oncourse_opc_122007/portal-impl/impl/src/bundle/sitenav.properties\nLog:\nTurns out we don't need those changes.  Reverting back.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 12:19:23 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 12:19:23 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 12:19:23 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby flawless.mail.umich.edu () with ESMTP id lB7HJMgi016846;\n\tFri, 7 Dec 2007 12:19:22 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 4759808B.345FD.652 ; \n\t 7 Dec 2007 12:19:10 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6DD3894067;\n\tFri,  7 Dec 2007 17:19:05 +0000 (GMT)\nMessage-ID: <200712071711.lB7HBmRf003636@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 477\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 17:18:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BAD882ABF3\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 17:18:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7HBmJ3003638\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 12:11:48 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7HBmRf003636\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 12:11:48 -0500\nDate: Fri, 7 Dec 2007 12:11:48 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39036 - assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 12:19:23 2007\nX-DSPAM-Confidence: 0.9876\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39036\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 12:11:46 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39036\n\nModified:\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nmerge into post-2-4:\n\n#34436\tMon Aug 27 03:41:14 MST 2007\tdavid.horwitz@uct.ac.za\tSAK-11282 check content suitablity before submitting\nFiles Changed\nMODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 12:10:24 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 12:10:24 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 12:10:24 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby casino.mail.umich.edu () with ESMTP id lB7HANtI029819;\n\tFri, 7 Dec 2007 12:10:23 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 47597E6A.89C5A.9630 ; \n\t 7 Dec 2007 12:10:05 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 44D00968B2;\n\tFri,  7 Dec 2007 17:10:01 +0000 (GMT)\nMessage-ID: <200712071702.lB7H2jGR003606@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 555\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 17:09:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 68F8B22697\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 17:09:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7H2jmB003608\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 12:02:45 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7H2jGR003606\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 12:02:45 -0500\nDate: Fri, 7 Dec 2007 12:02:45 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 12:10:24 2007\nX-DSPAM-Confidence: 0.9924\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39035\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 12:02:40 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39035\n\nModified:\nassignment/branches/post-2-4/assignment-api/api/src/java/org/sakaiproject/assignment/api/AssignmentService.java\nassignment/branches/post-2-4/assignment-api/api/src/java/org/sakaiproject/assignment/cover/AssignmentService.java\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerge into post-2-4:\n\n#34303\tThu Aug 23 11:01:31 MST 2007\tzqian@umich.edu\t fix to SAK-11226:notification to site leader not affected by all.groups permission in assignments tool\nFiles Changed\nMODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java \n\n#37676\tWed Oct 31 18:41:13 MST 2007\tzqian@umich.edu\t fix to SAK-11226:notification to site leader not affected by all.groups permission in assignments tool\nFiles Changed\nMODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java \nMODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 11:13:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 11:13:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 11:13:51 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby sleepers.mail.umich.edu () with ESMTP id lB7GDoWe002949;\n\tFri, 7 Dec 2007 11:13:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 47597136.CA452.28804 ; \n\t 7 Dec 2007 11:13:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9C59F91151;\n\tFri,  7 Dec 2007 16:13:37 +0000 (GMT)\nMessage-ID: <200712071606.lB7G6LEv003416@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 562\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 16:13:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3409E2AD4E\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 16:13:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7G6LGU003418\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 11:06:21 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7G6LEv003416\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 11:06:21 -0500\nDate: Fri, 7 Dec 2007 11:06:21 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39034 - assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 11:13:51 2007\nX-DSPAM-Confidence: 0.8509\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39034\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 11:06:19 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39034\n\nModified:\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nmerge into post-2-4:\n\n#34040\tWed Aug 15 12:33:35 MST 2007\tzqian@umich.edu\t fix to SAK-11123:NPE in Assignment action if submit untill is null\nFiles Changed\nMODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Fri Dec  7 11:10:56 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 11:10:56 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 11:10:56 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby mission.mail.umich.edu () with ESMTP id lB7GAtOi013408;\n\tFri, 7 Dec 2007 11:10:55 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 47597078.AB11E.13204 ; \n\t 7 Dec 2007 11:10:35 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E48669690C;\n\tFri,  7 Dec 2007 16:10:31 +0000 (GMT)\nMessage-ID: <200712071603.lB7G3IsF003395@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 364\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 16:10:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 36C821D606\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 16:10:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7G3Jb0003397\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 11:03:19 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7G3IsF003395\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 11:03:19 -0500\nDate: Fri, 7 Dec 2007 11:03:19 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39033 - event/trunk/event-util/util/src/java/org/sakaiproject/util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 11:10:56 2007\nX-DSPAM-Confidence: 0.9835\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39033\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-07 11:03:07 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39033\n\nModified:\nevent/trunk/event-util/util/src/java/org/sakaiproject/util/EmailNotification.java\nLog:\nhttp://bugs.sakaiproject.org/jira/browse/SAK-11169\n\nAdded switch for bulk preference on email notification,\nPatch Supplied by Daniel Parry.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 11:10:08 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 11:10:08 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 11:10:08 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby fan.mail.umich.edu () with ESMTP id lB7GA0MM008632;\n\tFri, 7 Dec 2007 11:10:00 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 47597052.AF536.27998 ; \n\t 7 Dec 2007 11:09:57 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 605E09690D;\n\tFri,  7 Dec 2007 16:09:52 +0000 (GMT)\nMessage-ID: <200712071602.lB7G2U8N003383@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 128\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 16:09:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C57301D606\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 16:09:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7G2UAp003385\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 11:02:30 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7G2U8N003383\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 11:02:30 -0500\nDate: Fri, 7 Dec 2007 11:02:30 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39032 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 11:10:08 2007\nX-DSPAM-Confidence: 0.8524\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39032\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 11:02:29 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39032\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerged into post-2-4:\n\nSakai Source Repository\t#34037\tWed Aug 15 12:09:53 MST 2007\tzqian@umich.edu\t fix to SAK-11146:Deleted assignments showing to students but not site owner\nFiles Changed\nMODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java \n\nRepository\tRevision\tDate\tUser\tMessage\nSakai Source Repository\t#34046\tWed Aug 15 13:32:23 MST 2007\tzqian@umich.edu\t 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\nFiles Changed\nMODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 11:03:52 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 11:03:52 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 11:03:52 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby brazil.mail.umich.edu () with ESMTP id lB7G3qQ1005801;\n\tFri, 7 Dec 2007 11:03:52 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 47596EE2.59998.6689 ; \n\t 7 Dec 2007 11:03:49 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CE67C62716;\n\tFri,  7 Dec 2007 16:03:43 +0000 (GMT)\nMessage-ID: <200712071556.lB7FuSDM003325@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 495\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 16:03:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9E50A1D606\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 16:03:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7FuSae003327\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 10:56:28 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7FuSDM003325\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 10:56:28 -0500\nDate: Fri, 7 Dec 2007 10:56:28 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39031 - assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 11:03:52 2007\nX-DSPAM-Confidence: 0.9920\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39031\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 10:56:27 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39031\n\nModified:\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nMerge into post-2-4:\n\nSakai Source Repository\t#33923\tMon Aug 13 10:44:16 MST 2007\tzqian@umich.edu\t Fix to SAK-11101: assignments/download all - saves as .txt\nFiles Changed\nMODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java \n\nSakai Source Repository\t#34971\tTue Sep 11 14:02:11 MST 2007\tzqian@umich.edu\t fix to SAK-11101:assignments / download all - saves as .txt\nFiles Changed\nMODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom josrodri@iupui.edu Fri Dec  7 10:59:11 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 10:59:11 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 10:59:11 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby sleepers.mail.umich.edu () with ESMTP id lB7FxAAp023857;\n\tFri, 7 Dec 2007 10:59:10 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 47596DBB.37B19.25825 ; \n\t 7 Dec 2007 10:58:54 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2A63E968EA;\n\tFri,  7 Dec 2007 15:52:55 +0000 (GMT)\nMessage-ID: <200712071551.lB7FpbbZ003302@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 599\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 15:52:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 701B81D606\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 15:58:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7FpbAZ003304\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 10:51:37 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7FpbbZ003302\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 10:51:37 -0500\nDate: Fri, 7 Dec 2007 10:51:37 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: josrodri@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 10:59:11 2007\nX-DSPAM-Confidence: 0.9819\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39030\n\nAuthor: josrodri@iupui.edu\nDate: 2007-12-07 10:51:35 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39030\n\nModified:\ngradebook/trunk/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java\ngradebook/trunk/app/ui/src/webapp/inc/bulkNewItems.jspf\ngradebook/trunk/app/ui/src/webapp/js/multiItemAdd.js\nLog:\nSAK-12114: main bulk gradebook item add\nSAK-12287: redid styling\nSAK-12284: removal of item in FF with exactly 2 items now working\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Fri Dec  7 10:58:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 10:58:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 10:58:25 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby faithful.mail.umich.edu () with ESMTP id lB7FwPAk020164;\n\tFri, 7 Dec 2007 10:58:25 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 47596D95.85F38.5352 ; \n\t 7 Dec 2007 10:58:16 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2C347968D1;\n\tFri,  7 Dec 2007 15:52:11 +0000 (GMT)\nMessage-ID: <200712071550.lB7FoknN003290@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 57\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 15:51:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CAB562F206\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 15:57:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7FokMW003292\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 10:50:47 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7FoknN003290\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 10:50:46 -0500\nDate: Fri, 7 Dec 2007 10:50:46 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39029 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 10:58:25 2007\nX-DSPAM-Confidence: 0.9810\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39029\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-07 10:50:46 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39029\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdating externals\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Fri Dec  7 10:57:39 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 10:57:39 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 10:57:39 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby faithful.mail.umich.edu () with ESMTP id lB7FvcBQ019366;\n\tFri, 7 Dec 2007 10:57:38 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 47596D69.B4DB7.27798 ; \n\t 7 Dec 2007 10:57:32 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A4714968C9;\n\tFri,  7 Dec 2007 15:51:24 +0000 (GMT)\nMessage-ID: <200712071549.lB7FnuEU003278@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 234\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 15:50:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 56B0A2F206\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 15:56:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7Fnukj003280\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 10:49:56 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7FnuEU003278\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 10:49:56 -0500\nDate: Fri, 7 Dec 2007 10:49:56 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39028 - portal/branches/oncourse_opc_122007/portal-render-engine-impl/pack/src/webapp/vm/defaultskin\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 10:57:39 2007\nX-DSPAM-Confidence: 0.8468\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39028\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-07 10:49:55 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39028\n\nModified:\nportal/branches/oncourse_opc_122007/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm\nLog:\nMay have missed an end tag\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 10:25:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 10:25:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 10:25:30 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby fan.mail.umich.edu () with ESMTP id lB7FPTk3004917;\n\tFri, 7 Dec 2007 10:25:29 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 475965E1.A5BB4.10263 ; \n\t 7 Dec 2007 10:25:24 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id F166096852;\n\tFri,  7 Dec 2007 15:24:11 +0000 (GMT)\nMessage-ID: <200712071518.lB7FI0QU003242@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 858\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 15:23:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7DFCF31E18\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 15:25:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7FI0SL003244\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 10:18:00 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7FI0QU003242\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 10:18:00 -0500\nDate: Fri, 7 Dec 2007 10:18:00 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39027 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 10:25:30 2007\nX-DSPAM-Confidence: 0.9856\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39027\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 10:17:58 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39027\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerge into post-2-4:\n\nSAK-11016 - Fix for initial assignment order\nFiles Changed\nMODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 10:16:06 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 10:16:06 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 10:16:06 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby faithful.mail.umich.edu () with ESMTP id lB7FG6dL020720;\n\tFri, 7 Dec 2007 10:16:06 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 475963AC.76234.4932 ; \n\t 7 Dec 2007 10:15:59 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B28A59684B;\n\tFri,  7 Dec 2007 15:15:59 +0000 (GMT)\nMessage-ID: <200712071508.lB7F8bfa003222@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 974\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 15:15:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E1DAD31E13\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 15:15:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7F8bUF003224\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 10:08:37 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7F8bfa003222\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 10:08:37 -0500\nDate: Fri, 7 Dec 2007 10:08:37 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39026 - assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 10:16:06 2007\nX-DSPAM-Confidence: 0.8482\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39026\n\nAuthor: zqian@umich.edu\nDate: 2007-12-07 10:08:35 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39026\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission_confirmation.vm\nLog:\nmerge into post-2-4:\n\nr33390 fix to SAK-10978: Assignment submission receipt formatting is right aligned.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Dec  7 10:13:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 10:13:50 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 10:13:50 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby jacknife.mail.umich.edu () with ESMTP id lB7FDm8C017485;\n\tFri, 7 Dec 2007 10:13:48 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 47596326.BBF8A.23134 ; \n\t 7 Dec 2007 10:13:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4BC9D95E1E;\n\tFri,  7 Dec 2007 15:13:17 +0000 (GMT)\nMessage-ID: <200712071505.lB7F5gTW003211@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 175\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 15:12:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 876D431CA7\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 15:12:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7F5gAm003213\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 10:05:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7F5gTW003211\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 10:05:42 -0500\nDate: Fri, 7 Dec 2007 10:05:42 -0500\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [svn] revprop propchange - r33390 svn:log\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 10:13:50 2007\nX-DSPAM-Confidence: 0.8357\nX-DSPAM-Probability: 0.0000\n\nAuthor: zqian@umich.edu\nRevision: 33390\nProperty Name: svn:log\n\nNew Property Value:\nfix to SAK-10978: Assignment submission receipt formatting is right aligned.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Fri Dec  7 09:47:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 09:47:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 09:47:19 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby mission.mail.umich.edu () with ESMTP id lB7ElIg3016842;\n\tFri, 7 Dec 2007 09:47:18 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 47595CF1.B4B1.29847 ; \n\t 7 Dec 2007 09:47:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id AA40F967C5;\n\tFri,  7 Dec 2007 14:46:36 +0000 (GMT)\nMessage-ID: <200712071439.lB7EdDCe003192@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 273\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 14:46:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5614731CB7\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 14:46:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7EdDAd003194\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 09:39:13 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7EdDCe003192\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 09:39:13 -0500\nDate: Fri, 7 Dec 2007 09:39:13 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39025 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 09:47:19 2007\nX-DSPAM-Confidence: 0.9820\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39025\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-07 09:39:12 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39025\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdating externals\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Fri Dec  7 09:42:39 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 09:42:39 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 09:42:39 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby chaos.mail.umich.edu () with ESMTP id lB7Egc59003917;\n\tFri, 7 Dec 2007 09:42:38 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 47595BD8.D194.10901 ; \n\t 7 Dec 2007 09:42:34 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A80FF967FD;\n\tFri,  7 Dec 2007 14:41:46 +0000 (GMT)\nMessage-ID: <200712071434.lB7EYJYY003167@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 258\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 14:41:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8665E31CB7\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 14:41:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7EYJl0003169\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 09:34:19 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7EYJYY003167\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 09:34:19 -0500\nDate: Fri, 7 Dec 2007 09:34:19 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 09:42:39 2007\nX-DSPAM-Confidence: 0.7551\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39024\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-07 09:34:18 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39024\n\nModified:\nsite/branches/oncourse_opc_122007/site-api/api/src/java/org/sakaiproject/site/api/SitePage.java\nsite/branches/oncourse_opc_122007/site-api/api/src/java/org/sakaiproject/site/api/SiteService.java\nsite/branches/oncourse_opc_122007/site-api/api/src/java/org/sakaiproject/site/cover/SiteService.java\nsite/branches/oncourse_opc_122007/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSitePage.java\nsite/branches/oncourse_opc_122007/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSiteService.java\nsite/branches/oncourse_opc_122007/site-impl/impl/src/java/org/sakaiproject/site/impl/DbSiteService.java\nLog:\nMerging the IU overlay stuff into the branch\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Fri Dec  7 09:32:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 09:32:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 09:32:02 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby awakenings.mail.umich.edu () with ESMTP id lB7EW1Pa031038;\n\tFri, 7 Dec 2007 09:32:01 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 4759595B.C02B.8985 ; \n\t 7 Dec 2007 09:31:57 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6C02A967C5;\n\tFri,  7 Dec 2007 14:31:42 +0000 (GMT)\nMessage-ID: <200712071424.lB7EOXsm003134@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 58\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 14:31:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id F023131CB7\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 14:31:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7EOXIl003136\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 09:24:33 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7EOXsm003134\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 09:24:33 -0500\nDate: Fri, 7 Dec 2007 09:24:33 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [sakai] svn commit: r39023 - in component/branches/SAK-8315/component-impl/integration-test/src: test/java/org/sakaiproject/component webapp/WEB-INF\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 09:32:02 2007\nX-DSPAM-Confidence: 0.7564\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39023\n\nAuthor: ray@media.berkeley.edu\nDate: 2007-12-07 09:24:24 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39023\n\nModified:\ncomponent/branches/SAK-8315/component-impl/integration-test/src/test/java/org/sakaiproject/component/ConfigurationLoadingTest.java\ncomponent/branches/SAK-8315/component-impl/integration-test/src/webapp/WEB-INF/components.xml\nLog:\nPut aliasing test in place before experimenting with context hierarchies\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Fri Dec  7 09:22:41 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 09:22:41 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 09:22:41 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby jacknife.mail.umich.edu () with ESMTP id lB7EMe8V017551;\n\tFri, 7 Dec 2007 09:22:40 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 4759571A.790C7.13081 ; \n\t 7 Dec 2007 09:22:21 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1E33F967C6;\n\tFri,  7 Dec 2007 14:22:17 +0000 (GMT)\nMessage-ID: <200712071415.lB7EF1cB003122@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 789\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 14:22:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5F09B31CB1\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 14:22:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7EF1YO003124\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 09:15:01 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7EF1cB003122\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 09:15:01 -0500\nDate: Fri, 7 Dec 2007 09:15:01 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 09:22:41 2007\nX-DSPAM-Confidence: 0.6953\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39022\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-07 09:14:58 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39022\n\nModified:\nportal/branches/oncourse_opc_122007/portal-charon/charon/src/webapp/styles/portalstyles.css\nportal/branches/oncourse_opc_122007/portal-impl/impl/src/bundle/sitenav.properties\nportal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/CharonPortal.java\nportal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java\nportal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/PageHandler.java\nportal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java\nportal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/WorksiteHandler.java\nportal/branches/oncourse_opc_122007/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm\nLog:\nMerging in iu overlay stuff for portal\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gopal.ramasammycook@gmail.com Fri Dec  7 07:16:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 07:16:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 07:16:25 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby mission.mail.umich.edu () with ESMTP id lB7CGMB0015423;\n\tFri, 7 Dec 2007 07:16:22 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 47593991.A34F9.23855 ; \n\t 7 Dec 2007 07:16:20 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6090296516;\n\tFri,  7 Dec 2007 12:15:29 +0000 (GMT)\nMessage-ID: <200712071157.lB7BvJDD003010@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 962\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 12:04:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 680E431B92\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 12:04:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB7BvKVk003012\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 06:57:20 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB7BvJDD003010\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 06:57:20 -0500\nDate: Fri, 7 Dec 2007 06:57:20 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f\nTo: source@collab.sakaiproject.org\nFrom: gopal.ramasammycook@gmail.com\nSubject: [sakai] svn commit: r39021 - in sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui: bean/evaluation listener/evaluation\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 07:16:25 2007\nX-DSPAM-Confidence: 0.9791\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39021\n\nAuthor: gopal.ramasammycook@gmail.com\nDate: 2007-12-07 06:57:03 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39021\n\nModified:\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramQuestionScoresBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramScoresBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/HistogramListener.java\nLog:\nSamigo Detailed Statistics Cleanup\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Fri Dec  7 05:01:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 05:01:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 05:01:19 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby sleepers.mail.umich.edu () with ESMTP id lB7A1H8e027835;\n\tFri, 7 Dec 2007 05:01:17 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 475919E7.B2F41.25590 ; \n\t 7 Dec 2007 05:01:14 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7A01796633;\n\tFri,  7 Dec 2007 10:01:09 +0000 (GMT)\nMessage-ID: <200712070953.lB79rao2002917@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 326\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 10:00:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3672A2E8D8\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 10:00:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB79rbER002919\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 04:53:37 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB79rao2002917\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 04:53:36 -0500\nDate: Fri, 7 Dec 2007 04:53:36 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r39020 - site/branches/SAK-12324/site-impl/impl/src/java/org/sakaiproject/site/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 05:01:19 2007\nX-DSPAM-Confidence: 0.9785\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39020\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-12-07 04:53:25 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39020\n\nModified:\nsite/branches/SAK-12324/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSiteService.java\nLog:\nSAK-12324 add the course site logic to allowAddCourseSite(id)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Fri Dec  7 03:28:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by frankenstein.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 03:28:37 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 03:28:37 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby flawless.mail.umich.edu () with ESMTP id lB782vUu004097;\n\tFri, 7 Dec 2007 03:02:57 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 4758FE2A.E2521.16942 ; \n\t 7 Dec 2007 03:02:54 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 24ADE94FD1;\n\tFri,  7 Dec 2007 08:02:42 +0000 (GMT)\nMessage-ID: <200712070755.lB77tSPv002409@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 405\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 08:02:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CF26331B54\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 08:02:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB77tS2W002411\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 02:55:28 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB77tSPv002409\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 02:55:28 -0500\nDate: Fri, 7 Dec 2007 02:55:28 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 03:28:37 2007\nX-DSPAM-Confidence: 0.9786\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39019\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-12-07 02:55:01 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39019\n\nModified:\nsite/branches/SAK-12324/site-api/api/src/java/org/sakaiproject/site/api/SiteService.java\nsite/branches/SAK-12324/site-api/api/src/java/org/sakaiproject/site/cover/SiteService.java\nsite/branches/SAK-12324/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSiteService.java\nLog:\nSAK-12324 Modify site\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Fri Dec  7 01:46:16 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 07 Dec 2007 01:46:16 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 07 Dec 2007 01:46:16 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby brazil.mail.umich.edu () with ESMTP id lB76kGWR029249;\n\tFri, 7 Dec 2007 01:46:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4758EC24.388B9.18191 ; \n\t 7 Dec 2007 01:46:00 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CF5D4961C9;\n\tFri,  7 Dec 2007 06:18:19 +0000 (GMT)\nMessage-ID: <200712070610.lB76A0rl002221@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 317\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 06:06:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4CDA02E8F6\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 06:17:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB76A0g0002223\n\tfor <source@collab.sakaiproject.org>; Fri, 7 Dec 2007 01:10:00 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB76A0rl002221\n\tfor source@collab.sakaiproject.org; Fri, 7 Dec 2007 01:10:00 -0500\nDate: Fri, 7 Dec 2007 01:10:00 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r39018 - metaobj/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Dec  7 01:46:16 2007\nX-DSPAM-Confidence: 0.9821\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39018\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-12-07 01:09:59 -0500 (Fri, 07 Dec 2007)\nNew Revision: 39018\n\nAdded:\nmetaobj/branches/SAK-12393/\nLog:\nNew branch of metaobj for SAK-12393\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Thu Dec  6 19:54:45 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 19:54:45 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 19:54:45 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby chaos.mail.umich.edu () with ESMTP id lB70shs0006459;\n\tThu, 6 Dec 2007 19:54:43 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 475899CE.24FCA.7660 ; \n\t 6 Dec 2007 19:54:40 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2FD4A95B6D;\n\tFri,  7 Dec 2007 00:13:16 +0000 (GMT)\nMessage-ID: <200712070025.lB70PLV7001982@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1023\n          for <source@collab.sakaiproject.org>;\n          Fri, 7 Dec 2007 00:12:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 469A231BB3\n\tfor <source@collab.sakaiproject.org>; Fri,  7 Dec 2007 00:32:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB70PLZv001984\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 19:25:21 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB70PLV7001982\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 19:25:21 -0500\nDate: Thu, 6 Dec 2007 19:25:21 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r39017 - master/trunk\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 19:54:45 2007\nX-DSPAM-Confidence: 0.9820\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39017\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-06 19:25:17 -0500 (Thu, 06 Dec 2007)\nNew Revision: 39017\n\nModified:\nmaster/trunk/pom.xml\nLog:\nNOJIRA\nUpdated api docs to point to the correct space\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Thu Dec  6 17:47:36 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 17:47:36 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 17:47:36 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby panther.mail.umich.edu () with ESMTP id lB6MlZTo009845;\n\tThu, 6 Dec 2007 17:47:35 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 47587BFC.29B64.19772 ; \n\t 6 Dec 2007 17:47:27 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4E8F395E97;\n\tThu,  6 Dec 2007 22:47:05 +0000 (GMT)\nMessage-ID: <200712062239.lB6MdXTG001685@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 504\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 22:46:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BB6AE316EE\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 22:46:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6MdXNm001687\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 17:39:33 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6MdXTG001685\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 17:39:33 -0500\nDate: Thu, 6 Dec 2007 17:39:33 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r39016 - in authz/branches/SAK-7924/authz-impl/impl/src/sql: hsqldb mssql mysql oracle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 17:47:36 2007\nX-DSPAM-Confidence: 0.9816\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39016\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-06 17:39:20 -0500 (Thu, 06 Dec 2007)\nNew Revision: 39016\n\nModified:\nauthz/branches/SAK-7924/authz-impl/impl/src/sql/hsqldb/sakai_realm.sql\nauthz/branches/SAK-7924/authz-impl/impl/src/sql/mssql/sakai_realm.sql\nauthz/branches/SAK-7924/authz-impl/impl/src/sql/mysql/sakai_realm.sql\nauthz/branches/SAK-7924/authz-impl/impl/src/sql/oracle/sakai_realm.sql\nLog:\nSAK-7924 - View Site in Different Role - Added a permission\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Thu Dec  6 17:47:35 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 17:47:35 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 17:47:35 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby fan.mail.umich.edu () with ESMTP id lB6MlYkb015800;\n\tThu, 6 Dec 2007 17:47:34 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 47587BF4.C65B4.6831 ; \n\t 6 Dec 2007 17:47:22 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6DBFA95EA5;\n\tThu,  6 Dec 2007 22:46:53 +0000 (GMT)\nMessage-ID: <200712062239.lB6MdFh1001673@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 791\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 22:46:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DFE56316EE\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 22:46:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6MdFfV001675\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 17:39:15 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6MdFh1001673\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 17:39:15 -0500\nDate: Thu, 6 Dec 2007 17:39:15 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r39015 - portal/branches/SAK-7924/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 17:47:35 2007\nX-DSPAM-Confidence: 0.9814\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39015\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-06 17:39:09 -0500 (Thu, 06 Dec 2007)\nNew Revision: 39015\n\nModified:\nportal/branches/SAK-7924/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java\nLog:\nSAK-7924 - View Site in Different Role - Added a permission\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Thu Dec  6 17:46:56 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 17:46:56 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 17:46:56 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby panther.mail.umich.edu () with ESMTP id lB6MkupI009527;\n\tThu, 6 Dec 2007 17:46:56 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 47587BDA.6A437.18711 ; \n\t 6 Dec 2007 17:46:53 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8B3E9917CA;\n\tThu,  6 Dec 2007 22:46:22 +0000 (GMT)\nMessage-ID: <200712062239.lB6Md3Am001661@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 535\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 22:46:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E8FAB316EE\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 22:46:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6Md3xY001663\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 17:39:03 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6Md3Am001661\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 17:39:03 -0500\nDate: Thu, 6 Dec 2007 17:39:03 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 17:46:56 2007\nX-DSPAM-Confidence: 0.9822\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39014\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-06 17:38:44 -0500 (Thu, 06 Dec 2007)\nNew Revision: 39014\n\nModified:\nsite/branches/SAK-7924/site-api/api/src/java/org/sakaiproject/site/api/SiteService.java\nsite/branches/SAK-7924/site-api/api/src/java/org/sakaiproject/site/cover/SiteService.java\nsite/branches/SAK-7924/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSiteService.java\nLog:\nSAK-7924 - View Site in Different Role - Added a permission\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Dec  6 17:07:49 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 17:07:49 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 17:07:49 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby godsend.mail.umich.edu () with ESMTP id lB6M7l3j013342;\n\tThu, 6 Dec 2007 17:07:47 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 475872AD.62734.9839 ; \n\t 6 Dec 2007 17:07:44 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 02C1151AC2;\n\tThu,  6 Dec 2007 22:07:33 +0000 (GMT)\nMessage-ID: <200712062200.lB6M0HCd001627@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 817\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 22:07:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B846329F32\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 22:07:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6M0HW6001629\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 17:00:17 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6M0HCd001627\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 17:00:17 -0500\nDate: Thu, 6 Dec 2007 17:00:17 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 17:07:49 2007\nX-DSPAM-Confidence: 0.8482\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39013\n\nAuthor: zqian@umich.edu\nDate: 2007-12-06 17:00:12 -0500 (Thu, 06 Dec 2007)\nNew Revision: 39013\n\nModified:\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission_confirmation.vm\nLog:\nmerge into post-2-4:\n\nfix to SAK-10943:Submission notification fails silently for submitting users who don't have an email address\nFiles Changed\nMODIFY /assignment/trunk/assignment-bundles/assignment.properties \nMODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission_confirmation.vm \nMODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java \nMODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Dec  6 16:48:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 16:48:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 16:48:30 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby fan.mail.umich.edu () with ESMTP id lB6LmTtm010635;\n\tThu, 6 Dec 2007 16:48:29 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 47586E26.C7D6F.11509 ; \n\t 6 Dec 2007 16:48:25 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 60A626CD5D;\n\tThu,  6 Dec 2007 21:47:24 +0000 (GMT)\nMessage-ID: <200712062141.lB6Lf6W8001577@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 134\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 21:47:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BC3AF316F7\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 21:48:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6Lf619001579\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 16:41:06 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6Lf6W8001577\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 16:41:06 -0500\nDate: Thu, 6 Dec 2007 16:41:06 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39012 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 16:48:30 2007\nX-DSPAM-Confidence: 0.9841\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39012\n\nAuthor: zqian@umich.edu\nDate: 2007-12-06 16:41:04 -0500 (Thu, 06 Dec 2007)\nNew Revision: 39012\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerge into post-2-4:\n\nFix to SAK-10864: NPE in AssignmentAction.sizeResources\nFiles Changed\nMODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Dec  6 16:45:16 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 16:45:16 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 16:45:16 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby chaos.mail.umich.edu () with ESMTP id lB6LjGEu010629;\n\tThu, 6 Dec 2007 16:45:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 47586D65.D7B49.21696 ; \n\t 6 Dec 2007 16:45:12 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 49E0B4E65C;\n\tThu,  6 Dec 2007 21:44:11 +0000 (GMT)\nMessage-ID: <200712062137.lB6Lbqep001555@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 899\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 21:43:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 38F40316F9\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 21:44:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6LbqIl001557\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 16:37:52 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6Lbqep001555\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 16:37:52 -0500\nDate: Thu, 6 Dec 2007 16:37:52 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39011 - in assignment/branches/post-2-4/assignment-tool/tool/src: java/org/sakaiproject/assignment/tool webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 16:45:16 2007\nX-DSPAM-Confidence: 0.7548\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39011\n\nAuthor: zqian@umich.edu\nDate: 2007-12-06 16:37:49 -0500 (Thu, 06 Dec 2007)\nNew Revision: 39011\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm\nLog:\nmerge into post-2-4:\n\nix to SAK-10668: Non-electronic Assignments default to Submitted\nFiles Changed\nMODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm \nMODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Dec  6 16:24:55 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 16:24:55 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 16:24:55 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby sleepers.mail.umich.edu () with ESMTP id lB6LOsfg028982;\n\tThu, 6 Dec 2007 16:24:54 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 475868A0.356CB.15867 ; \n\t 6 Dec 2007 16:24:51 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5899095D62;\n\tThu,  6 Dec 2007 21:23:48 +0000 (GMT)\nMessage-ID: <200712062117.lB6LHOep001487@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 166\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 21:23:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 610D42E273\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 21:24:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6LHO2f001489\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 16:17:24 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6LHOep001487\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 16:17:24 -0500\nDate: Thu, 6 Dec 2007 16:17:24 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39010 - assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 16:24:55 2007\nX-DSPAM-Confidence: 0.9843\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39010\n\nAuthor: zqian@umich.edu\nDate: 2007-12-06 16:17:22 -0500 (Thu, 06 Dec 2007)\nNew Revision: 39010\n\nModified:\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nmerge into post-2-4:\n\nFix to SAK-10823:Odd flow updates only first user in grade list\nFiles Changed\nMODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Dec  6 16:09:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 16:09:50 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 16:09:50 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby mission.mail.umich.edu () with ESMTP id lB6L9nbX026302;\n\tThu, 6 Dec 2007 16:09:49 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 47586513.E1F79.22547 ; \n\t 6 Dec 2007 16:09:42 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6CB529440C;\n\tThu,  6 Dec 2007 21:08:39 +0000 (GMT)\nMessage-ID: <200712062102.lB6L2Mb9001464@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 902\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 21:08:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id F12D82E41F\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 21:09:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6L2Mvd001466\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 16:02:22 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6L2Mb9001464\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 16:02:22 -0500\nDate: Thu, 6 Dec 2007 16:02:22 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39009 - assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 16:09:50 2007\nX-DSPAM-Confidence: 0.8473\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39009\n\nAuthor: zqian@umich.edu\nDate: 2007-12-06 16:02:20 -0500 (Thu, 06 Dec 2007)\nNew Revision: 39009\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission_confirmation.vm\nLog:\nmerge into post-2-4:\n\nFix to SAK-10784:need better formatting for the student assignment submission confirmation page\nFiles Changed\nMODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_submission_confirmation.vm \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Dec  6 15:43:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 15:43:50 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 15:43:50 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby chaos.mail.umich.edu () with ESMTP id lB6KhnEU031547;\n\tThu, 6 Dec 2007 15:43:49 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 47585EFF.60630.12547 ; \n\t 6 Dec 2007 15:43:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3F6F495D67;\n\tThu,  6 Dec 2007 20:41:55 +0000 (GMT)\nMessage-ID: <200712062035.lB6KZYR2001403@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 972\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 20:41:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5976730F6F\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 20:42:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6KZYQR001405\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 15:35:34 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6KZYR2001403\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 15:35:34 -0500\nDate: Thu, 6 Dec 2007 15:35:34 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 15:43:50 2007\nX-DSPAM-Confidence: 0.9830\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39008\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-06 15:35:32 -0500 (Thu, 06 Dec 2007)\nNew Revision: 39008\n\nAdded:\nauthz/branches/oncourse_opc_122007/authz-impl/impl/src/java/org/sakaiproject/authz/impl/OncourseSecurity.java\nModified:\nauthz/branches/oncourse_opc_122007/authz-api/api/src/java/org/sakaiproject/authz/api/SecurityService.java\nauthz/branches/oncourse_opc_122007/authz-impl/impl/src/java/org/sakaiproject/authz/impl/SakaiSecurityTest.java\nauthz/branches/oncourse_opc_122007/authz-impl/pack/src/webapp/WEB-INF/components.xml\nLog:\nAdding oncourse overlay files into this branch\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Dec  6 15:39:18 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 15:39:18 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 15:39:18 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby flawless.mail.umich.edu () with ESMTP id lB6KdHgr000457;\n\tThu, 6 Dec 2007 15:39:17 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 47585DE9.62F5.16533 ; \n\t 6 Dec 2007 15:39:07 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 99CE6509F8;\n\tThu,  6 Dec 2007 20:39:02 +0000 (GMT)\nMessage-ID: <200712062031.lB6KVmYN001385@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 843\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 20:38:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id F30BF2E41F\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 20:38:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6KVm89001387\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 15:31:48 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6KVmYN001385\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 15:31:48 -0500\nDate: Thu, 6 Dec 2007 15:31:48 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r39007 - assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 15:39:18 2007\nX-DSPAM-Confidence: 0.9880\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39007\n\nAuthor: zqian@umich.edu\nDate: 2007-12-06 15:31:46 -0500 (Thu, 06 Dec 2007)\nNew Revision: 39007\n\nModified:\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nmerged into post-2-4:\n\nFix to SAK-10413: Assignment attachments are missing after importing a site using the Site Archive tool\nFiles Changed\nMODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Dec  6 15:31:03 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 15:31:03 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 15:31:03 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby score.mail.umich.edu () with ESMTP id lB6KV2ak015369;\n\tThu, 6 Dec 2007 15:31:02 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 47585C00.77014.16890 ; \n\t 6 Dec 2007 15:30:59 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0D0F9509F8;\n\tThu,  6 Dec 2007 20:30:12 +0000 (GMT)\nMessage-ID: <200712062023.lB6KNf7x001365@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 530\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 20:29:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1752530F6F\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 20:30:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6KNfLu001367\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 15:23:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6KNf7x001365\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 15:23:41 -0500\nDate: Thu, 6 Dec 2007 15:23:41 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 15:31:03 2007\nX-DSPAM-Confidence: 0.8491\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39006\n\nAuthor: zqian@umich.edu\nDate: 2007-12-06 15:23:34 -0500 (Thu, 06 Dec 2007)\nNew Revision: 39006\n\nAdded:\nassignment/branches/post-2-4/assignment-bundles/\nassignment/branches/post-2-4/assignment-bundles/.classpath\nassignment/branches/post-2-4/assignment-bundles/.project\nassignment/branches/post-2-4/assignment-bundles/assignment.metaprops\nassignment/branches/post-2-4/assignment-bundles/assignment.properties\nassignment/branches/post-2-4/assignment-bundles/assignment_ar.properties\nassignment/branches/post-2-4/assignment-bundles/assignment_ca.metaprops\nassignment/branches/post-2-4/assignment-bundles/assignment_ca.properties\nassignment/branches/post-2-4/assignment-bundles/assignment_en_GB.properties\nassignment/branches/post-2-4/assignment-bundles/assignment_es.metaprops\nassignment/branches/post-2-4/assignment-bundles/assignment_es.properties\nassignment/branches/post-2-4/assignment-bundles/assignment_fr_CA.metaprops\nassignment/branches/post-2-4/assignment-bundles/assignment_fr_CA.properties\nassignment/branches/post-2-4/assignment-bundles/assignment_ja.metaprops\nassignment/branches/post-2-4/assignment-bundles/assignment_ja.properties\nassignment/branches/post-2-4/assignment-bundles/assignment_ko.metaprops\nassignment/branches/post-2-4/assignment-bundles/assignment_ko.properties\nassignment/branches/post-2-4/assignment-bundles/assignment_nl.metaprops\nassignment/branches/post-2-4/assignment-bundles/assignment_nl.properties\nassignment/branches/post-2-4/assignment-bundles/assignment_ru.properties\nassignment/branches/post-2-4/assignment-bundles/assignment_sv.properties\nassignment/branches/post-2-4/assignment-bundles/assignment_zh_CN.metaprops\nassignment/branches/post-2-4/assignment-bundles/assignment_zh_CN.properties\nRemoved:\nassignment/branches/post-2-4/assignment-impl/impl/src/bundle/\nassignment/branches/post-2-4/assignment-tool/tool/src/bundle/\nModified:\nassignment/branches/post-2-4/assignment-impl/impl/project.xml\nassignment/branches/post-2-4/assignment-tool/tool/project.xml\nLog:\nmerge into post-2-4:\n\nFix to SAK-10432:combine the properties files used by assignment-tool and assignment-impl\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Dec  6 15:25:23 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 15:25:23 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 15:25:23 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby score.mail.umich.edu () with ESMTP id lB6KPMq7011484;\n\tThu, 6 Dec 2007 15:25:22 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 47585AAB.9997.20846 ; \n\t 6 Dec 2007 15:25:17 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6B05295D3B;\n\tThu,  6 Dec 2007 20:25:11 +0000 (GMT)\nMessage-ID: <200712062017.lB6KHwnw001345@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 860\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 20:24:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A5D232DEF9\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 20:24:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6KHwfY001347\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 15:17:58 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6KHwnw001345\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 15:17:58 -0500\nDate: Thu, 6 Dec 2007 15:17:58 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39005 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 15:25:23 2007\nX-DSPAM-Confidence: 0.9812\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39005\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-06 15:17:57 -0500 (Thu, 06 Dec 2007)\nNew Revision: 39005\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nUpdating externals for december opc build\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Dec  6 15:21:21 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 15:21:21 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 15:21:21 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby godsend.mail.umich.edu () with ESMTP id lB6KLKXm001412;\n\tThu, 6 Dec 2007 15:21:20 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 475859B9.99A4F.713 ; \n\t 6 Dec 2007 15:21:17 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B313195D44;\n\tThu,  6 Dec 2007 20:21:09 +0000 (GMT)\nMessage-ID: <200712062013.lB6KDsuo001333@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 878\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 20:20:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 27DC22E273\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 20:20:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6KDtBs001335\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 15:13:55 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6KDsuo001333\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 15:13:54 -0500\nDate: Thu, 6 Dec 2007 15:13:54 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 15:21:21 2007\nX-DSPAM-Confidence: 0.8505\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39004\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-06 15:13:53 -0500 (Thu, 06 Dec 2007)\nNew Revision: 39004\n\nModified:\nsite/branches/oncourse_opc_122007/site-api/api/src/java/org/sakaiproject/site/api/SiteService.java\nsite/branches/oncourse_opc_122007/site-api/api/src/java/org/sakaiproject/site/cover/SiteService.java\nsite/branches/oncourse_opc_122007/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSiteService.java\nLog:\nsvn merge -c 38994 https://source.sakaiproject.org/svn/site/branches/SAK-7924_2-4-x\nU    site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSiteService.java\nU    site-api/api/src/java/org/sakaiproject/site/api/SiteService.java\nU    site-api/api/src/java/org/sakaiproject/site/cover/SiteService.java\n\nsvn log -r 38994 https://source.sakaiproject.org/svn/site/branches/SAK-7924_2-4-x\n------------------------------------------------------------------------\nr38994 | gjthomas@iupui.edu | 2007-12-06 12:29:09 -0500 (Thu, 06 Dec 2007) | 1 line\n\nSAK-7924 - View Site in Different Role - 2.4.x updates\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Dec  6 15:19:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 15:19:13 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 15:19:13 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby score.mail.umich.edu () with ESMTP id lB6KJC4d003082;\n\tThu, 6 Dec 2007 15:19:12 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 47585938.EE5AB.7745 ; \n\t 6 Dec 2007 15:19:07 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B23E495D3B;\n\tThu,  6 Dec 2007 20:19:02 +0000 (GMT)\nMessage-ID: <200712062011.lB6KBlhn001314@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 952\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 20:18:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1F8F12E273\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 20:18:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6KBlF8001316\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 15:11:47 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6KBlhn001314\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 15:11:47 -0500\nDate: Thu, 6 Dec 2007 15:11:47 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39003 - site/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 15:19:13 2007\nX-DSPAM-Confidence: 0.9815\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39003\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-06 15:11:46 -0500 (Thu, 06 Dec 2007)\nNew Revision: 39003\n\nAdded:\nsite/branches/oncourse_opc_122007/\nLog:\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Dec  6 15:17:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 15:17:13 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 15:17:13 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby faithful.mail.umich.edu () with ESMTP id lB6KHCF3006847;\n\tThu, 6 Dec 2007 15:17:12 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 475858C0.A52D6.914 ; \n\t 6 Dec 2007 15:17:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6BB0695D25;\n\tThu,  6 Dec 2007 20:16:44 +0000 (GMT)\nMessage-ID: <200712062009.lB6K9jJA001287@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 245\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 20:16:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7598C2E273\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 20:16:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6K9jhm001289\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 15:09:45 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6K9jJA001287\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 15:09:45 -0500\nDate: Thu, 6 Dec 2007 15:09:45 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 15:17:13 2007\nX-DSPAM-Confidence: 0.6189\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39002\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-06 15:09:43 -0500 (Thu, 06 Dec 2007)\nNew Revision: 39002\n\nAdded:\nportal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchHandler.java\nportal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchOutHandler.java\nModified:\nportal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java\nportal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java\nportal/branches/oncourse_opc_122007/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm\nLog:\nsvn merge -c 38993 https://source.sakaiproject.org/svn/portal/branches/SAK-7924_2-4-x\nU    portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java\nA    portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchOutHandler.java\nA    portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchHandler.java\nU    portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java\nU    portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm\n\nsvn log -r 38993 https://source.sakaiproject.org/svn/portal/branches/SAK-7924_2-4-x\n------------------------------------------------------------------------\nr38993 | gjthomas@iupui.edu | 2007-12-06 12:29:01 -0500 (Thu, 06 Dec 2007) | 1 line\n\nSAK-7924 - View Site in Different Role - 2.4.x updates\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Dec  6 15:14:27 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 15:14:27 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 15:14:27 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby fan.mail.umich.edu () with ESMTP id lB6KEQ6W016706;\n\tThu, 6 Dec 2007 15:14:26 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 4758581A.C8630.6718 ; \n\t 6 Dec 2007 15:14:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0D78E79B57;\n\tThu,  6 Dec 2007 20:14:09 +0000 (GMT)\nMessage-ID: <200712062006.lB6K6oMI001275@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 713\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 20:13:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 000692E273\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 20:13:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6K6o4o001277\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 15:06:50 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6K6oMI001275\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 15:06:50 -0500\nDate: Thu, 6 Dec 2007 15:06:50 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39001 - portal/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 15:14:27 2007\nX-DSPAM-Confidence: 0.9790\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39001\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-06 15:06:49 -0500 (Thu, 06 Dec 2007)\nNew Revision: 39001\n\nAdded:\nportal/branches/oncourse_opc_122007/\nRemoved:\nportal/branches/oncourse_opc_122007_2/\nLog:\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Dec  6 15:14:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 15:14:13 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 15:14:13 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby awakenings.mail.umich.edu () with ESMTP id lB6KECPe007232;\n\tThu, 6 Dec 2007 15:14:12 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 47585802.D08EC.6469 ; \n\t 6 Dec 2007 15:14:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6339A95D36;\n\tThu,  6 Dec 2007 20:13:53 +0000 (GMT)\nMessage-ID: <200712062006.lB6K6cEb001263@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 918\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 20:13:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2B7C92E273\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 20:13:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6K6cOQ001265\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 15:06:38 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6K6cEb001263\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 15:06:38 -0500\nDate: Thu, 6 Dec 2007 15:06:38 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r39000 - portal/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 15:14:13 2007\nX-DSPAM-Confidence: 0.9779\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=39000\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-06 15:06:37 -0500 (Thu, 06 Dec 2007)\nNew Revision: 39000\n\nAdded:\nportal/branches/oncourse_opc_122007_old/\nRemoved:\nportal/branches/oncourse_opc_122007/\nLog:\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Dec  6 15:13:46 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 15:13:46 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 15:13:46 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby jacknife.mail.umich.edu () with ESMTP id lB6KDiVZ000336;\n\tThu, 6 Dec 2007 15:13:44 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 475857F2.9EC08.5824 ; \n\t 6 Dec 2007 15:13:41 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BFA4452334;\n\tThu,  6 Dec 2007 20:13:26 +0000 (GMT)\nMessage-ID: <200712062006.lB6K6Dw6001251@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 653\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 20:13:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CD88A2E273\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 20:13:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6K6DOA001253\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 15:06:13 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6K6Dw6001251\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 15:06:13 -0500\nDate: Thu, 6 Dec 2007 15:06:13 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38999 - portal/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 15:13:46 2007\nX-DSPAM-Confidence: 0.8416\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38999\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-06 15:06:12 -0500 (Thu, 06 Dec 2007)\nNew Revision: 38999\n\nAdded:\nportal/branches/oncourse_opc_122007_2/\nLog:\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Dec  6 15:10:03 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 15:10:03 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 15:10:03 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby faithful.mail.umich.edu () with ESMTP id lB6KA222001838;\n\tThu, 6 Dec 2007 15:10:02 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 47585707.7AB15.14652 ; \n\t 6 Dec 2007 15:09:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7BB8C95D25;\n\tThu,  6 Dec 2007 20:09:40 +0000 (GMT)\nMessage-ID: <200712062002.lB6K2TDd001239@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 79\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 20:09:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id F3FDD2E263\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 20:09:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6K2Thp001241\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 15:02:29 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6K2TDd001239\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 15:02:29 -0500\nDate: Thu, 6 Dec 2007 15:02:29 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38998 - portal/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 15:10:03 2007\nX-DSPAM-Confidence: 0.9811\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38998\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-06 15:02:28 -0500 (Thu, 06 Dec 2007)\nNew Revision: 38998\n\nRemoved:\nportal/branches/oncourse_opc_122007_overlay/\nLog:\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Dec  6 15:07:48 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 15:07:48 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 15:07:48 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby sleepers.mail.umich.edu () with ESMTP id lB6K7lwp002969;\n\tThu, 6 Dec 2007 15:07:47 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4758568D.5634.11895 ; \n\t 6 Dec 2007 15:07:43 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EBBE951829;\n\tThu,  6 Dec 2007 20:07:27 +0000 (GMT)\nMessage-ID: <200712062000.lB6K0M4s001225@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 769\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 20:07:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7B2A22E263\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 20:07:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6K0MLB001227\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 15:00:22 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6K0M4s001225\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 15:00:22 -0500\nDate: Thu, 6 Dec 2007 15:00:22 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38997 - in authz/branches/oncourse_opc_122007/authz-impl/impl/src/sql: hsqldb mysql oracle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 15:07:48 2007\nX-DSPAM-Confidence: 0.7002\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38997\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-06 15:00:20 -0500 (Thu, 06 Dec 2007)\nNew Revision: 38997\n\nModified:\nauthz/branches/oncourse_opc_122007/authz-impl/impl/src/sql/hsqldb/sakai_realm.sql\nauthz/branches/oncourse_opc_122007/authz-impl/impl/src/sql/mysql/sakai_realm.sql\nauthz/branches/oncourse_opc_122007/authz-impl/impl/src/sql/oracle/sakai_realm.sql\nLog:\nsvn merge -c 38992 https://source.sakaiproject.org/svn/authz/branches/SAK-7924_2-4-x\nU    authz-impl/impl/src/sql/mysql/sakai_realm.sql\nU    authz-impl/impl/src/sql/oracle/sakai_realm.sql\nU    authz-impl/impl/src/sql/hsqldb/sakai_realm.sql\n\nsvn log -r 38992 https://source.sakaiproject.org/svn/authz/branches/SAK-7924_2-4-x\n------------------------------------------------------------------------\nr38992 | gjthomas@iupui.edu | 2007-12-06 12:28:54 -0500 (Thu, 06 Dec 2007) | 1 line\n\nSAK-7924 - View Site in Different Role - 2.4.x updates\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Dec  6 14:50:46 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 14:50:46 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 14:50:46 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby godsend.mail.umich.edu () with ESMTP id lB6JojI1013459;\n\tThu, 6 Dec 2007 14:50:45 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 4758528C.D4BBE.24717 ; \n\t 6 Dec 2007 14:50:39 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 825E095B74;\n\tThu,  6 Dec 2007 19:50:32 +0000 (GMT)\nMessage-ID: <200712061943.lB6JhEfA001192@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 453\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 19:50:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 539752E233\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 19:50:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6JhEc4001194\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 14:43:14 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6JhEfA001192\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 14:43:14 -0500\nDate: Thu, 6 Dec 2007 14:43:14 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38996 - assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/taggable/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 14:50:46 2007\nX-DSPAM-Confidence: 0.8473\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38996\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-06 14:43:13 -0500 (Thu, 06 Dec 2007)\nNew Revision: 38996\n\nModified:\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/taggable/impl/AssignmentItemImpl.java\nLog:\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12388\nUsing gen.submission instead of just submission for the key. \n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Thu Dec  6 12:51:06 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 12:51:06 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 12:51:06 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby chaos.mail.umich.edu () with ESMTP id lB6Hp5eX010478;\n\tThu, 6 Dec 2007 12:51:05 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 47583683.5B736.29888 ; \n\t 6 Dec 2007 12:51:02 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CCD238FED1;\n\tThu,  6 Dec 2007 17:28:54 +0000 (GMT)\nMessage-ID: <200712061743.lB6HhdKC001065@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 505\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 17:28:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1428131571\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 17:50:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6HhdC8001067\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 12:43:39 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6HhdKC001065\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 12:43:39 -0500\nDate: Thu, 6 Dec 2007 12:43:39 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38995 - content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 12:51:06 2007\nX-DSPAM-Confidence: 0.8474\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38995\n\nAuthor: aaronz@vt.edu\nDate: 2007-12-06 12:43:34 -0500 (Thu, 06 Dec 2007)\nNew Revision: 38995\n\nModified:\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRStorageUser.java\nLog:\nSAK-12105: Fixed up logging (yet again)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Thu Dec  6 12:37:41 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 12:37:41 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 12:37:41 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby jacknife.mail.umich.edu () with ESMTP id lB6HbfEb016932;\n\tThu, 6 Dec 2007 12:37:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 4758335E.67B23.28825 ; \n\t 6 Dec 2007 12:37:38 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 433D195B96;\n\tThu,  6 Dec 2007 17:15:21 +0000 (GMT)\nMessage-ID: <200712061729.lB6HTFfI001018@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 216\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 17:14:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BE1E03156C\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 17:36:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6HTGoI001020\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 12:29:16 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6HTFfI001018\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 12:29:15 -0500\nDate: Thu, 6 Dec 2007 12:29:15 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 12:37:41 2007\nX-DSPAM-Confidence: 0.8469\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38994\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-06 12:29:09 -0500 (Thu, 06 Dec 2007)\nNew Revision: 38994\n\nModified:\nsite/branches/SAK-7924_2-4-x/site-api/api/src/java/org/sakaiproject/site/api/SiteService.java\nsite/branches/SAK-7924_2-4-x/site-api/api/src/java/org/sakaiproject/site/cover/SiteService.java\nsite/branches/SAK-7924_2-4-x/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSiteService.java\nLog:\nSAK-7924 - View Site in Different Role - 2.4.x updates\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Thu Dec  6 12:37:40 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 12:37:40 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 12:37:40 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby jacknife.mail.umich.edu () with ESMTP id lB6HbcNL016864;\n\tThu, 6 Dec 2007 12:37:38 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 47583350.FD85.7575 ; \n\t 6 Dec 2007 12:37:30 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B4E4195B94;\n\tThu,  6 Dec 2007 17:15:14 +0000 (GMT)\nMessage-ID: <200712061729.lB6HT8vk001005@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 236\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 17:14:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D232B3156C\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 17:36:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6HT8QR001007\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 12:29:08 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6HT8vk001005\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 12:29:08 -0500\nDate: Thu, 6 Dec 2007 12:29:08 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 12:37:40 2007\nX-DSPAM-Confidence: 0.6505\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38993\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-06 12:29:01 -0500 (Thu, 06 Dec 2007)\nNew Revision: 38993\n\nAdded:\nportal/branches/SAK-7924_2-4-x/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchHandler.java\nportal/branches/SAK-7924_2-4-x/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchOutHandler.java\nModified:\nportal/branches/SAK-7924_2-4-x/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java\nportal/branches/SAK-7924_2-4-x/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java\nportal/branches/SAK-7924_2-4-x/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm\nLog:\nSAK-7924 - View Site in Different Role - 2.4.x updates\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Thu Dec  6 12:37:12 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 12:37:12 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 12:37:12 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby godsend.mail.umich.edu () with ESMTP id lB6HbBQO008580;\n\tThu, 6 Dec 2007 12:37:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 47583340.D898.1541 ; \n\t 6 Dec 2007 12:37:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 33ADB95B9B;\n\tThu,  6 Dec 2007 17:15:09 +0000 (GMT)\nMessage-ID: <200712061728.lB6HSxr3000993@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 181\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 17:14:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 27D743156C\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 17:35:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6HSxBC000995\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 12:28:59 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6HSxr3000993\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 12:28:59 -0500\nDate: Thu, 6 Dec 2007 12:28:59 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r38992 - in authz/branches/SAK-7924_2-4-x/authz-impl/impl/src/sql: hsqldb mysql oracle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 12:37:12 2007\nX-DSPAM-Confidence: 0.7562\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38992\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-12-06 12:28:54 -0500 (Thu, 06 Dec 2007)\nNew Revision: 38992\n\nModified:\nauthz/branches/SAK-7924_2-4-x/authz-impl/impl/src/sql/hsqldb/sakai_realm.sql\nauthz/branches/SAK-7924_2-4-x/authz-impl/impl/src/sql/mysql/sakai_realm.sql\nauthz/branches/SAK-7924_2-4-x/authz-impl/impl/src/sql/oracle/sakai_realm.sql\nLog:\nSAK-7924 - View Site in Different Role - 2.4.x updates\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Dec  6 12:01:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 12:01:42 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 12:01:42 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby mission.mail.umich.edu () with ESMTP id lB6H1fgQ003081;\n\tThu, 6 Dec 2007 12:01:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 47582AED.4E2F4.12614 ; \n\t 6 Dec 2007 12:01:36 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B821A959E5;\n\tThu,  6 Dec 2007 17:01:25 +0000 (GMT)\nMessage-ID: <200712061654.lB6GsCTe000899@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 758\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 17:01:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D0CCF31562\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 17:01:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6GsCTP000901\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 11:54:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6GsCTe000899\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 11:54:12 -0500\nDate: Thu, 6 Dec 2007 11:54:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38991 - assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 12:01:42 2007\nX-DSPAM-Confidence: 0.6950\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38991\n\nAuthor: zqian@umich.edu\nDate: 2007-12-06 11:54:10 -0500 (Thu, 06 Dec 2007)\nNew Revision: 38991\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_new_edit_assignment.vm\nLog:\nMerge into post-2-4:\n\nfix to SAK-10409:The display to all groups check box does not function as expected\nFiles Changed\nMODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_new_edit_assignment.vm \n\n-This line, and those below, will be ignored--\n\nM    assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_new_edit_assignment.vm\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Dec  6 11:59:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 11:59:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 11:59:02 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby casino.mail.umich.edu () with ESMTP id lB6Gx1jG001370;\n\tThu, 6 Dec 2007 11:59:01 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 47582A4F.2E72E.11271 ; \n\t 6 Dec 2007 11:58:58 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CF3CE959FD;\n\tThu,  6 Dec 2007 16:58:51 +0000 (GMT)\nMessage-ID: <200712061651.lB6GpdGb000878@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 533\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 16:58:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1473B2DF92\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 16:58:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6Gpd3T000880\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 11:51:39 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6GpdGb000878\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 11:51:39 -0500\nDate: Thu, 6 Dec 2007 11:51:39 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38990 - in assignment/branches/post-2-4: assignment-impl/impl/src/bundle assignment-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 11:59:02 2007\nX-DSPAM-Confidence: 0.9845\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38990\n\nAuthor: zqian@umich.edu\nDate: 2007-12-06 11:51:37 -0500 (Thu, 06 Dec 2007)\nNew Revision: 38990\n\nModified:\nassignment/branches/post-2-4/assignment-impl/impl/src/bundle/assignment_fr_CA.properties\nassignment/branches/post-2-4/assignment-tool/tool/src/bundle/assignment_fr_CA.properties\nLog:\nmerge into post-2-4:\n\nSAK-10401 updated french translation\nFiles Changed\nMODIFY /assignment/trunk/assignment-tool/tool/src/bundle/assignment_fr_CA.properties\nMODIFY /assignment/trunk/assignment-impl/impl/src/bundle/assignment_fr_CA.properties \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Dec  6 11:47:00 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 11:47:00 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 11:47:00 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby brazil.mail.umich.edu () with ESMTP id lB6GkxbF011995;\n\tThu, 6 Dec 2007 11:46:59 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 4758277B.22014.18998 ; \n\t 6 Dec 2007 11:46:56 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5D1778F073;\n\tThu,  6 Dec 2007 16:46:50 +0000 (GMT)\nMessage-ID: <200712061639.lB6Gdb2N000847@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 139\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 16:46:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9E4FD31560\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 16:46:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6Gdb8e000849\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 11:39:37 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6Gdb2N000847\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 11:39:37 -0500\nDate: Thu, 6 Dec 2007 11:39:37 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 11:47:00 2007\nX-DSPAM-Confidence: 0.9882\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38989\n\nAuthor: zqian@umich.edu\nDate: 2007-12-06 11:39:33 -0500 (Thu, 06 Dec 2007)\nNew Revision: 38989\n\nModified:\nassignment/branches/post-2-4/assignment-api/api/src/java/org/sakaiproject/assignment/api/AssignmentService.java\nassignment/branches/post-2-4/assignment-api/api/src/java/org/sakaiproject/assignment/cover/AssignmentService.java\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerge into post-2-4:\n\nfix to SAK-3703:Option show Assignment List by Student lists others besides students in spreadsheet\nFiles Changed\nMODIFY /assignment/trunk/assignment-api/api/src/java/org/sakaiproject/assignment/api/AssignmentService.java\nMODIFY /assignment/trunk/assignment-api/api/src/java/org/sakaiproject/assignment/cover/AssignmentService.java\nMODIFY /assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nMODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Dec  6 11:42:52 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 11:42:52 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 11:42:52 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby brazil.mail.umich.edu () with ESMTP id lB6GgpOI009032;\n\tThu, 6 Dec 2007 11:42:51 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 47582683.9CD48.4588 ; \n\t 6 Dec 2007 11:42:47 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id ECEB9602A5;\n\tThu,  6 Dec 2007 16:42:42 +0000 (GMT)\nMessage-ID: <200712061635.lB6GZRXd000763@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 125\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 16:42:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 473EE31560\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 16:42:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6GZRir000765\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 11:35:27 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6GZRXd000763\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 11:35:27 -0500\nDate: Thu, 6 Dec 2007 11:35:27 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38988 - site/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 11:42:52 2007\nX-DSPAM-Confidence: 0.9841\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38988\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-06 11:35:26 -0500 (Thu, 06 Dec 2007)\nNew Revision: 38988\n\nAdded:\nsite/branches/SAK-7924_2-4-x/\nLog:\nCreating branch for site against 2.4.x from r33408\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Dec  6 11:26:54 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 11:26:54 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 11:26:54 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby godsend.mail.umich.edu () with ESMTP id lB6GQrJ1015311;\n\tThu, 6 Dec 2007 11:26:53 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 475822C0.424D3.30389 ; \n\t 6 Dec 2007 11:26:43 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8368C95999;\n\tThu,  6 Dec 2007 16:26:24 +0000 (GMT)\nMessage-ID: <200712061619.lB6GJQSD000722@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 285\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 16:26:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C15E32D162\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 16:26:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6GJQuE000724\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 11:19:26 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6GJQSD000722\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 11:19:26 -0500\nDate: Thu, 6 Dec 2007 11:19:26 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38987 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 11:26:54 2007\nX-DSPAM-Confidence: 0.9851\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38987\n\nAuthor: zqian@umich.edu\nDate: 2007-12-06 11:19:24 -0500 (Thu, 06 Dec 2007)\nNew Revision: 38987\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerge fix into post-2-4:\n\nFix to SAK-10061:Assignments Allows same Open/Due/Accept dates\nFiles Changed\nMODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Dec  6 11:19:33 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 11:19:33 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 11:19:33 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby score.mail.umich.edu () with ESMTP id lB6GJWxI018103;\n\tThu, 6 Dec 2007 11:19:32 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 4758210D.426B3.8174 ; \n\t 6 Dec 2007 11:19:28 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 41718941D3;\n\tThu,  6 Dec 2007 16:19:20 +0000 (GMT)\nMessage-ID: <200712061611.lB6GBvZ7000701@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 573\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 16:18:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 671F92D162\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 16:18:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6GBv6l000703\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 11:11:57 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6GBvZ7000701\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 11:11:57 -0500\nDate: Thu, 6 Dec 2007 11:11:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38986 - in assignment/branches/post-2-4/assignment-tool/tool/src: java/org/sakaiproject/assignment/tool webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 11:19:33 2007\nX-DSPAM-Confidence: 0.8480\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38986\n\nAuthor: zqian@umich.edu\nDate: 2007-12-06 11:11:55 -0500 (Thu, 06 Dec 2007)\nNew Revision: 38986\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_grade.vm\nLog:\nmerge into post-2-4:\n\nfix to SAK-9793:Student view of Non-Electronic submission type assignment has incorrect page title\nFiles Changed\nMODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_student_view_grade.vm \nMODIFY /assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Dec  6 11:11:35 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 11:11:35 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 11:11:35 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby awakenings.mail.umich.edu () with ESMTP id lB6GBX0v005715;\n\tThu, 6 Dec 2007 11:11:33 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 47581F25.57102.14408 ; \n\t 6 Dec 2007 11:11:30 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6971B6FFC4;\n\tThu,  6 Dec 2007 16:11:16 +0000 (GMT)\nMessage-ID: <200712061604.lB6G40NY000678@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1003\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 16:11:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5E5DC2DD3A\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 16:10:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6G40Br000680\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 11:04:00 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6G40NY000678\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 11:04:00 -0500\nDate: Thu, 6 Dec 2007 11:04:00 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38985 - assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 11:11:35 2007\nX-DSPAM-Confidence: 0.7565\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38985\n\nAuthor: zqian@umich.edu\nDate: 2007-12-06 11:03:59 -0500 (Thu, 06 Dec 2007)\nNew Revision: 38985\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_new_edit_assignment.vm\nLog:\nmerge into post-2-4\n\nFix to SAK-10062:Maxlength on Grade Scale Points field too long\nFiles Changed\nMODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_new_edit_assignment.vm \nMODIFY /assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Dec  6 10:25:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 10:25:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 10:25:19 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby faithful.mail.umich.edu () with ESMTP id lB6FPIO1021169;\n\tThu, 6 Dec 2007 10:25:18 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 47581452.9227F.3597 ; \n\t 6 Dec 2007 10:25:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 62B0B54CF6;\n\tThu,  6 Dec 2007 15:25:09 +0000 (GMT)\nMessage-ID: <200712061517.lB6FHnTs000636@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 416\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 15:24:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 895832CF57\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 15:24:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6FHnLC000638\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 10:17:49 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6FHnTs000636\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 10:17:49 -0500\nDate: Thu, 6 Dec 2007 10:17:49 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38984 - assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 10:25:19 2007\nX-DSPAM-Confidence: 0.8486\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38984\n\nAuthor: zqian@umich.edu\nDate: 2007-12-06 10:17:47 -0500 (Thu, 06 Dec 2007)\nNew Revision: 38984\n\nModified:\nassignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nfix to SAK-12353:Gradebook does not show the point correctly\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Dec  6 08:17:32 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 08:17:32 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 08:17:32 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby flawless.mail.umich.edu () with ESMTP id lB6DHVLX029343;\n\tThu, 6 Dec 2007 08:17:32 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 4757F665.60E9.29147 ; \n\t 6 Dec 2007 08:17:27 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 29D1B5E483;\n\tThu,  6 Dec 2007 13:17:31 +0000 (GMT)\nMessage-ID: <200712061310.lB6DAC8q000531@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 160\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 13:17:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 814272E000\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 13:17:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6DACmT000533\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 08:10:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6DAC8q000531\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 08:10:12 -0500\nDate: Thu, 6 Dec 2007 08:10:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38983 - site/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 08:17:32 2007\nX-DSPAM-Confidence: 0.9784\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38983\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-06 08:10:11 -0500 (Thu, 06 Dec 2007)\nNew Revision: 38983\n\nAdded:\nsite/branches/SAK-12324/\nLog:\nCreating branch for SAK-12324 from trunk @r38500\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gopal.ramasammycook@gmail.com Thu Dec  6 08:13:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 08:13:50 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 08:13:50 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby godsend.mail.umich.edu () with ESMTP id lB6DDmja027920;\n\tThu, 6 Dec 2007 08:13:48 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 4757F581.69DAF.9370 ; \n\t 6 Dec 2007 08:13:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6081F94EA7;\n\tThu,  6 Dec 2007 13:13:48 +0000 (GMT)\nMessage-ID: <200712061306.lB6D6Dlb000515@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 583\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 13:13:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D5B001D4E5\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 13:13:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6D6DJs000517\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 08:06:13 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6D6Dlb000515\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 08:06:13 -0500\nDate: Thu, 6 Dec 2007 08:06:13 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f\nTo: source@collab.sakaiproject.org\nFrom: gopal.ramasammycook@gmail.com\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 08:13:50 2007\nX-DSPAM-Confidence: 0.9817\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38982\n\nAuthor: gopal.ramasammycook@gmail.com\nDate: 2007-12-06 08:05:38 -0500 (Thu, 06 Dec 2007)\nNew Revision: 38982\n\nModified:\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages.properties\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramQuestionScoresBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramScoresBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/HistogramListener.java\nsam/branches/SAK-12065/samigo-app/src/webapp/jsf/evaluation/histogramScores.jsp\nLog:\nSamigo Detailed Statistics - display messages cleanup\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Thu Dec  6 05:27:28 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 05:27:28 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 05:27:28 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby faithful.mail.umich.edu () with ESMTP id lB6ARQX6029801;\n\tThu, 6 Dec 2007 05:27:26 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 4757CE89.71920.24571 ; \n\t 6 Dec 2007 05:27:24 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 575EB9552E;\n\tThu,  6 Dec 2007 10:27:06 +0000 (GMT)\nMessage-ID: <200712061020.lB6AK58X000384@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 314\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 10:26:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2D6992C729\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 10:27:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB6AK5Zl000386\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 05:20:05 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB6AK58X000384\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 05:20:05 -0500\nDate: Thu, 6 Dec 2007 05:20:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r38981 - in site-manage/branches/SAK-12324/site-manage-tool/tool/src: java/org/sakaiproject/site/tool webapp/vm/sitesetup\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 05:27:28 2007\nX-DSPAM-Confidence: 0.9786\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38981\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-12-06 05:19:40 -0500 (Thu, 06 Dec 2007)\nNew Revision: 38981\n\nModified:\nsite-manage/branches/SAK-12324/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nsite-manage/branches/SAK-12324/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-type.vm\nLog:\nSAK-12324 Modifications to site-manage\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Thu Dec  6 03:57:03 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 06 Dec 2007 03:57:03 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 06 Dec 2007 03:57:03 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby mission.mail.umich.edu () with ESMTP id lB68v0T3016850;\n\tThu, 6 Dec 2007 03:57:00 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4757B957.8C762.23710 ; \n\t 6 Dec 2007 03:56:58 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 12486954BD;\n\tThu,  6 Dec 2007 08:56:53 +0000 (GMT)\nMessage-ID: <200712060849.lB68naRS032340@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 478\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 08:56:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E472924F31\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 08:56:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB68nbJU032342\n\tfor <source@collab.sakaiproject.org>; Thu, 6 Dec 2007 03:49:37 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB68naRS032340\n\tfor source@collab.sakaiproject.org; Thu, 6 Dec 2007 03:49:37 -0500\nDate: Thu, 6 Dec 2007 03:49:37 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r38980 - site-manage/branches/SAK-12324\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Dec  6 03:57:03 2007\nX-DSPAM-Confidence: 0.9831\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38980\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-12-06 03:49:11 -0500 (Thu, 06 Dec 2007)\nNew Revision: 38980\n\nAdded:\nsite-manage/branches/SAK-12324/pageorder/\nsite-manage/branches/SAK-12324/pom.xml\nsite-manage/branches/SAK-12324/site-manage-api/\nsite-manage/branches/SAK-12324/site-manage-help/\nsite-manage/branches/SAK-12324/site-manage-impl/\nsite-manage/branches/SAK-12324/site-manage-tool/\nsite-manage/branches/SAK-12324/site-manage-util/\nLog:\nCode to work with\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Wed Dec  5 21:26:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 05 Dec 2007 21:26:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 05 Dec 2007 21:26:30 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby brazil.mail.umich.edu () with ESMTP id lB62QT8b023543;\n\tWed, 5 Dec 2007 21:26:29 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 47575DCC.581C0.4659 ; \n\t 5 Dec 2007 21:26:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C8F1E93643;\n\tThu,  6 Dec 2007 02:26:27 +0000 (GMT)\nMessage-ID: <200712060218.lB62Iv0O032073@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 635\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 02:26:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 31BB930F45\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 02:25:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB62IwQj032075\n\tfor <source@collab.sakaiproject.org>; Wed, 5 Dec 2007 21:18:58 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB62Iv0O032073\n\tfor source@collab.sakaiproject.org; Wed, 5 Dec 2007 21:18:57 -0500\nDate: Wed, 5 Dec 2007 21:18:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38979 - site/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec  5 21:26:30 2007\nX-DSPAM-Confidence: 0.9784\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38979\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-05 21:18:54 -0500 (Wed, 05 Dec 2007)\nNew Revision: 38979\n\nAdded:\nsite/branches/SAK-7924/\nLog:\nCreating branch for SAK-7924 from trunk @r38500\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Wed Dec  5 19:41:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 05 Dec 2007 19:41:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 05 Dec 2007 19:41:19 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby chaos.mail.umich.edu () with ESMTP id lB60fI8a030172;\n\tWed, 5 Dec 2007 19:41:18 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 475744FC.8F113.7112 ; \n\t 5 Dec 2007 19:40:33 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B31B594F96;\n\tThu,  6 Dec 2007 00:29:35 +0000 (GMT)\nMessage-ID: <200712060025.lB60PvwW031972@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 599\n          for <source@collab.sakaiproject.org>;\n          Thu, 6 Dec 2007 00:24:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6573B30C4E\n\tfor <source@collab.sakaiproject.org>; Thu,  6 Dec 2007 00:32:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB60Pwn8031974\n\tfor <source@collab.sakaiproject.org>; Wed, 5 Dec 2007 19:25:58 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB60PvwW031972\n\tfor source@collab.sakaiproject.org; Wed, 5 Dec 2007 19:25:57 -0500\nDate: Wed, 5 Dec 2007 19:25:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38978 - portal/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec  5 19:41:19 2007\nX-DSPAM-Confidence: 0.9753\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38978\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-05 19:25:53 -0500 (Wed, 05 Dec 2007)\nNew Revision: 38978\n\nAdded:\nportal/branches/SAK-12350/\nLog:\nCreating Branch\nSAK-12350\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Wed Dec  5 11:52:47 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 05 Dec 2007 11:52:47 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 05 Dec 2007 11:52:47 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby faithful.mail.umich.edu () with ESMTP id lB5GqjsO014948;\n\tWed, 5 Dec 2007 11:52:45 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 4756D754.784B1.30370 ; \n\t 5 Dec 2007 11:52:39 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E06F794831;\n\tWed,  5 Dec 2007 16:52:34 +0000 (GMT)\nMessage-ID: <200712051645.lB5GjLK8031476@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 484\n          for <source@collab.sakaiproject.org>;\n          Wed, 5 Dec 2007 16:52:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E955D1D609\n\tfor <source@collab.sakaiproject.org>; Wed,  5 Dec 2007 16:52:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB5GjLCg031478\n\tfor <source@collab.sakaiproject.org>; Wed, 5 Dec 2007 11:45:21 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB5GjLK8031476\n\tfor source@collab.sakaiproject.org; Wed, 5 Dec 2007 11:45:21 -0500\nDate: Wed, 5 Dec 2007 11:45:21 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38977 - site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec  5 11:52:47 2007\nX-DSPAM-Confidence: 0.9860\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38977\n\nAuthor: zqian@umich.edu\nDate: 2007-12-05 11:45:19 -0500 (Wed, 05 Dec 2007)\nNew Revision: 38977\n\nModified:\nsite-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nLog:\nfix to SAK-12338:exception in the manually request course site page if no course information is entered\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom a.fish@lancaster.ac.uk Wed Dec  5 09:07:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 05 Dec 2007 09:07:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 05 Dec 2007 09:07:17 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby fan.mail.umich.edu () with ESMTP id lB5E7Gra011043;\n\tWed, 5 Dec 2007 09:07:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 4756B080.C335A.2336 ; \n\t 5 Dec 2007 09:07:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D071D944BC;\n\tWed,  5 Dec 2007 14:06:51 +0000 (GMT)\nMessage-ID: <200712051359.lB5DxgQJ031200@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 875\n          for <source@collab.sakaiproject.org>;\n          Wed, 5 Dec 2007 14:06:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 98995306F2\n\tfor <source@collab.sakaiproject.org>; Wed,  5 Dec 2007 14:06:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB5Dxg90031202\n\tfor <source@collab.sakaiproject.org>; Wed, 5 Dec 2007 08:59:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB5DxgQJ031200\n\tfor source@collab.sakaiproject.org; Wed, 5 Dec 2007 08:59:42 -0500\nDate: Wed, 5 Dec 2007 08:59:42 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to a.fish@lancaster.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: a.fish@lancaster.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec  5 09:07:17 2007\nX-DSPAM-Confidence: 0.8430\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38976\n\nAuthor: a.fish@lancaster.ac.uk\nDate: 2007-12-05 08:59:02 -0500 (Wed, 05 Dec 2007)\nNew Revision: 38976\n\nAdded:\nblog/branches/sakai_2-4-x/tool/src/bundle/uk/ac/lancs/e_science/sakai/tools/blogger/bundle/Messages_es.properties\nModified:\nblog/branches/sakai_2-4-x/tool/src/bundle/uk/ac/lancs/e_science/sakai/tools/blogger/bundle/Messages.properties\nblog/branches/sakai_2-4-x/tool/src/java/uk/ac/lancs/e_science/sakai/tools/blogger/PostListViewerController.java\nblog/branches/sakai_2-4-x/tool/src/webapp/sakai-blogger-tool/PostCreateView.jsp\nLog:\nSAK-7578 - Applied i18n patch supplied by David Roldan Martinez. Thanks David.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom a.fish@lancaster.ac.uk Wed Dec  5 08:47:38 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 05 Dec 2007 08:47:38 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 05 Dec 2007 08:47:38 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby chaos.mail.umich.edu () with ESMTP id lB5DlcBT006016;\n\tWed, 5 Dec 2007 08:47:38 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4756ABF4.323FF.30944 ; \n\t 5 Dec 2007 08:47:34 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5F20C9444D;\n\tWed,  5 Dec 2007 13:47:28 +0000 (GMT)\nMessage-ID: <200712051340.lB5DeAZI031188@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 791\n          for <source@collab.sakaiproject.org>;\n          Wed, 5 Dec 2007 13:47:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 491AA306F0\n\tfor <source@collab.sakaiproject.org>; Wed,  5 Dec 2007 13:47:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB5DeAYm031190\n\tfor <source@collab.sakaiproject.org>; Wed, 5 Dec 2007 08:40:10 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB5DeAZI031188\n\tfor source@collab.sakaiproject.org; Wed, 5 Dec 2007 08:40:10 -0500\nDate: Wed, 5 Dec 2007 08:40:10 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to a.fish@lancaster.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: a.fish@lancaster.ac.uk\nSubject: [sakai] svn commit: r38975 - blog/branches/sakai_2-4-x/jsfComponent\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec  5 08:47:38 2007\nX-DSPAM-Confidence: 0.8435\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38975\n\nAuthor: a.fish@lancaster.ac.uk\nDate: 2007-12-05 08:39:58 -0500 (Wed, 05 Dec 2007)\nNew Revision: 38975\n\nModified:\nblog/branches/sakai_2-4-x/jsfComponent/pom.xml\nLog:\nAdded sakai-util dependency\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom a.fish@lancaster.ac.uk Wed Dec  5 08:33:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 05 Dec 2007 08:33:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 05 Dec 2007 08:33:51 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby godsend.mail.umich.edu () with ESMTP id lB5DXoTK019568;\n\tWed, 5 Dec 2007 08:33:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 4756A8B8.4F977.1938 ; \n\t 5 Dec 2007 08:33:47 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6A6F694488;\n\tWed,  5 Dec 2007 13:33:38 +0000 (GMT)\nMessage-ID: <200712051326.lB5DQVGH031149@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 331\n          for <source@collab.sakaiproject.org>;\n          Wed, 5 Dec 2007 13:33:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BB8B423031\n\tfor <source@collab.sakaiproject.org>; Wed,  5 Dec 2007 13:33:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB5DQWSd031151\n\tfor <source@collab.sakaiproject.org>; Wed, 5 Dec 2007 08:26:32 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB5DQVGH031149\n\tfor source@collab.sakaiproject.org; Wed, 5 Dec 2007 08:26:31 -0500\nDate: Wed, 5 Dec 2007 08:26:31 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to a.fish@lancaster.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: a.fish@lancaster.ac.uk\nSubject: [sakai] svn commit: r38974 - blog/trunk/api-impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec  5 08:33:51 2007\nX-DSPAM-Confidence: 0.9808\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38974\n\nAuthor: a.fish@lancaster.ac.uk\nDate: 2007-12-05 08:26:21 -0500 (Wed, 05 Dec 2007)\nNew Revision: 38974\n\nModified:\nblog/trunk/api-impl/pom.xml\nblog/trunk/api-impl/project.xml\nLog:\nSAK-10367 - Added log4j as a dependency. This commit should have been part of r38973.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom a.fish@lancaster.ac.uk Wed Dec  5 08:28:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 05 Dec 2007 08:28:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 05 Dec 2007 08:28:30 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby chaos.mail.umich.edu () with ESMTP id lB5DSTEo030675;\n\tWed, 5 Dec 2007 08:28:29 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 4756A776.D78A3.31056 ; \n\t 5 Dec 2007 08:28:25 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id AA84394472;\n\tWed,  5 Dec 2007 13:28:01 +0000 (GMT)\nMessage-ID: <200712051320.lB5DKvgn031095@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 144\n          for <source@collab.sakaiproject.org>;\n          Wed, 5 Dec 2007 13:27:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B986423031\n\tfor <source@collab.sakaiproject.org>; Wed,  5 Dec 2007 13:27:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB5DKw6x031097\n\tfor <source@collab.sakaiproject.org>; Wed, 5 Dec 2007 08:20:58 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB5DKvgn031095\n\tfor source@collab.sakaiproject.org; Wed, 5 Dec 2007 08:20:57 -0500\nDate: Wed, 5 Dec 2007 08:20:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to a.fish@lancaster.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: a.fish@lancaster.ac.uk\nSubject: [sakai] svn commit: r38973 - in blog/trunk: . api-impl/src/java/uk/ac/lancs/e_science/sakaiproject/impl/blogger/persistence\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec  5 08:28:30 2007\nX-DSPAM-Confidence: 0.9794\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38973\n\nAuthor: a.fish@lancaster.ac.uk\nDate: 2007-12-05 08:20:33 -0500 (Wed, 05 Dec 2007)\nNew Revision: 38973\n\nModified:\nblog/trunk/.classpath\nblog/trunk/api-impl/src/java/uk/ac/lancs/e_science/sakaiproject/impl/blogger/persistence/SakaiPersistenceManager.java\nLog:\nSAK-10367 Added some proper logging to SakaiPersistenceManager. Made storePost transactional. Hopefully this should get rid of the post loss problems.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Wed Dec  5 08:16:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 05 Dec 2007 08:16:42 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 05 Dec 2007 08:16:42 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby godsend.mail.umich.edu () with ESMTP id lB5DGgDJ007606;\n\tWed, 5 Dec 2007 08:16:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 4756A4B4.AE018.27314 ; \n\t 5 Dec 2007 08:16:39 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7F5339429F;\n\tWed,  5 Dec 2007 13:16:25 +0000 (GMT)\nMessage-ID: <200712051309.lB5D99L5031006@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 676\n          for <source@collab.sakaiproject.org>;\n          Wed, 5 Dec 2007 13:15:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 71A4B306F5\n\tfor <source@collab.sakaiproject.org>; Wed,  5 Dec 2007 13:16:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB5D99DH031008\n\tfor <source@collab.sakaiproject.org>; Wed, 5 Dec 2007 08:09:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB5D99L5031006\n\tfor source@collab.sakaiproject.org; Wed, 5 Dec 2007 08:09:09 -0500\nDate: Wed, 5 Dec 2007 08:09:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38972 - db/branches/SAK-12239/db-impl/pack/src/webapp/WEB-INF\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec  5 08:16:42 2007\nX-DSPAM-Confidence: 0.8478\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38972\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-05 08:09:00 -0500 (Wed, 05 Dec 2007)\nNew Revision: 38972\n\nModified:\ndb/branches/SAK-12239/db-impl/pack/src/webapp/WEB-INF/components.xml\nLog:\nSAK-12239\nFixed bean definition to use 2.4.x bindings for spring.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Wed Dec  5 07:41:10 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 05 Dec 2007 07:41:10 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 05 Dec 2007 07:41:10 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby casino.mail.umich.edu () with ESMTP id lB5Cf9wR017269;\n\tWed, 5 Dec 2007 07:41:09 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 47569C5F.D9A1A.8654 ; \n\t 5 Dec 2007 07:41:06 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8E4E692A27;\n\tWed,  5 Dec 2007 12:40:07 +0000 (GMT)\nMessage-ID: <200712051233.lB5CXpDZ030952@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 325\n          for <source@collab.sakaiproject.org>;\n          Wed, 5 Dec 2007 12:39:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EA0A03089A\n\tfor <source@collab.sakaiproject.org>; Wed,  5 Dec 2007 12:40:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB5CXpp8030954\n\tfor <source@collab.sakaiproject.org>; Wed, 5 Dec 2007 07:33:51 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB5CXpDZ030952\n\tfor source@collab.sakaiproject.org; Wed, 5 Dec 2007 07:33:51 -0500\nDate: Wed, 5 Dec 2007 07:33:51 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38971 - site-manage/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Dec  5 07:41:10 2007\nX-DSPAM-Confidence: 0.8440\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38971\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-05 07:33:49 -0500 (Wed, 05 Dec 2007)\nNew Revision: 38971\n\nAdded:\nsite-manage/branches/SAK-12324/\nLog:\nCreating branch for David Horwitz\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Tue Dec  4 23:39:21 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 04 Dec 2007 23:39:21 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 04 Dec 2007 23:39:21 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby godsend.mail.umich.edu () with ESMTP id lB54dK2q024172;\n\tTue, 4 Dec 2007 23:39:20 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 47562B70.B3C68.26161 ; \n\t 4 Dec 2007 23:39:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9EE759269C;\n\tWed,  5 Dec 2007 04:37:15 +0000 (GMT)\nMessage-ID: <200712050431.lB54VxGQ029832@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 209\n          for <source@collab.sakaiproject.org>;\n          Wed, 5 Dec 2007 04:36:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 262052FFA4\n\tfor <source@collab.sakaiproject.org>; Wed,  5 Dec 2007 04:38:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB54Vxpl029834\n\tfor <source@collab.sakaiproject.org>; Tue, 4 Dec 2007 23:31:59 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB54VxGQ029832\n\tfor source@collab.sakaiproject.org; Tue, 4 Dec 2007 23:31:59 -0500\nDate: Tue, 4 Dec 2007 23:31:59 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [sakai] svn commit: r38969 - in gradebook/trunk/service: api/src/java/org/sakaiproject/service/gradebook/shared impl/src/java/org/sakaiproject/component/gradebook\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec  4 23:39:21 2007\nX-DSPAM-Confidence: 0.8433\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38969\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-12-04 23:31:50 -0500 (Tue, 04 Dec 2007)\nNew Revision: 38969\n\nModified:\ngradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java\ngradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/BaseHibernateManager.java\ngradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java\nLog:\nSAK-12175\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12175\nCreate methods required for gb integration with the Assignment2 tool\ngetViewableStudentsForItemForCurrentUser\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom josrodri@iupui.edu Tue Dec  4 15:44:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 04 Dec 2007 15:44:13 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 04 Dec 2007 15:44:13 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby flawless.mail.umich.edu () with ESMTP id lB4KiCgn001574;\n\tTue, 4 Dec 2007 15:44:12 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 4755BC15.4D6AB.29560 ; \n\t 4 Dec 2007 15:44:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2DC3893785;\n\tTue,  4 Dec 2007 20:43:58 +0000 (GMT)\nMessage-ID: <200712042036.lB4Kar1A029110@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 443\n          for <source@collab.sakaiproject.org>;\n          Tue, 4 Dec 2007 20:43:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B59CA24F66\n\tfor <source@collab.sakaiproject.org>; Tue,  4 Dec 2007 20:43:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB4Karm5029112\n\tfor <source@collab.sakaiproject.org>; Tue, 4 Dec 2007 15:36:53 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB4Kar1A029110\n\tfor source@collab.sakaiproject.org; Tue, 4 Dec 2007 15:36:53 -0500\nDate: Tue, 4 Dec 2007 15:36:53 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: josrodri@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec  4 15:44:13 2007\nX-DSPAM-Confidence: 0.6509\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38968\n\nAuthor: josrodri@iupui.edu\nDate: 2007-12-04 15:36:51 -0500 (Tue, 04 Dec 2007)\nNew Revision: 38968\n\nModified:\ngradebook/trunk/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java\ngradebook/trunk/app/ui/src/webapp/addAssignment.jsp\ngradebook/trunk/app/ui/src/webapp/inc/bulkNewItems.jspf\ngradebook/trunk/app/ui/src/webapp/js/multiItemAdd.js\nLog:\nSAK-12285: removed dropdown to expose a specific number of add panes at once\nSAK-12287: added highlight for alternate add panes (Resources file upload pane styling/coloring) \nSAK-12288: trivial capitalization fix\nSAK-12286: re-added '* means required' text to add page\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Tue Dec  4 14:47:35 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 04 Dec 2007 14:47:35 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 04 Dec 2007 14:47:35 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby fan.mail.umich.edu () with ESMTP id lB4JlYH9006460;\n\tTue, 4 Dec 2007 14:47:34 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 4755AECB.1CA79.17578 ; \n\t 4 Dec 2007 14:47:28 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A05ED92A00;\n\tTue,  4 Dec 2007 19:46:17 +0000 (GMT)\nMessage-ID: <200712041940.lB4JeCmG029063@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 976\n          for <source@collab.sakaiproject.org>;\n          Tue, 4 Dec 2007 19:46:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AF1083017D\n\tfor <source@collab.sakaiproject.org>; Tue,  4 Dec 2007 19:47:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB4JeCOv029065\n\tfor <source@collab.sakaiproject.org>; Tue, 4 Dec 2007 14:40:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB4JeCmG029063\n\tfor source@collab.sakaiproject.org; Tue, 4 Dec 2007 14:40:12 -0500\nDate: Tue, 4 Dec 2007 14:40:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec  4 14:47:35 2007\nX-DSPAM-Confidence: 0.8488\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38967\n\nAuthor: aaronz@vt.edu\nDate: 2007-12-04 14:39:58 -0500 (Tue, 04 Dec 2007)\nNew Revision: 38967\n\nModified:\nmemory/branches/SAK-11913/memory-api/api/pom.xml\nmemory/branches/SAK-11913/memory-common-deployer/pom.xml\nmemory/branches/SAK-11913/memory-impl/impl/pom.xml\nmemory/branches/SAK-11913/memory-impl/pack/pom.xml\nmemory/branches/SAK-11913/memory-test/pack/pom.xml\nmemory/branches/SAK-11913/memory-test/pom.xml\nmemory/branches/SAK-11913/memory-test/test/pom.xml\nmemory/branches/SAK-11913/memory-test/tool/pom.xml\nmemory/branches/SAK-11913/memory-tool/tool/pom.xml\nmemory/branches/SAK-11913/pom.xml\nLog:\nSAK-11913: fixed up to use snapshot instead of M2\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Tue Dec  4 14:40:11 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 04 Dec 2007 14:40:11 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 04 Dec 2007 14:40:11 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby faithful.mail.umich.edu () with ESMTP id lB4JeADL031923;\n\tTue, 4 Dec 2007 14:40:10 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 4755AD0E.EF621.15537 ; \n\t 4 Dec 2007 14:40:04 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D474093825;\n\tTue,  4 Dec 2007 19:38:47 +0000 (GMT)\nMessage-ID: <200712041932.lB4JWSdZ029049@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 315\n          for <source@collab.sakaiproject.org>;\n          Tue, 4 Dec 2007 19:38:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C5A383016D\n\tfor <source@collab.sakaiproject.org>; Tue,  4 Dec 2007 19:39:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB4JWTZY029051\n\tfor <source@collab.sakaiproject.org>; Tue, 4 Dec 2007 14:32:29 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB4JWSdZ029049\n\tfor source@collab.sakaiproject.org; Tue, 4 Dec 2007 14:32:28 -0500\nDate: Tue, 4 Dec 2007 14:32:28 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38966 - in content/branches/SAK-12105/content-impl-jcr: impl/src/java/org/sakaiproject/content/impl pack\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec  4 14:40:11 2007\nX-DSPAM-Confidence: 0.9807\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38966\n\nAuthor: aaronz@vt.edu\nDate: 2007-12-04 14:32:20 -0500 (Tue, 04 Dec 2007)\nNew Revision: 38966\n\nModified:\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRStorageUser.java\ncontent/branches/SAK-12105/content-impl-jcr/pack/\nLog:\nSAK-12105: merged in trunk changes\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom josrodri@iupui.edu Tue Dec  4 14:15:15 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 04 Dec 2007 14:15:15 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 04 Dec 2007 14:15:15 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby panther.mail.umich.edu () with ESMTP id lB4JFE9g011184;\n\tTue, 4 Dec 2007 14:15:14 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4755A734.76E6.21852 ; \n\t 4 Dec 2007 14:15:04 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D953382386;\n\tTue,  4 Dec 2007 19:14:56 +0000 (GMT)\nMessage-ID: <200712041907.lB4J7pDb029014@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 615\n          for <source@collab.sakaiproject.org>;\n          Tue, 4 Dec 2007 19:14:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8968A30181\n\tfor <source@collab.sakaiproject.org>; Tue,  4 Dec 2007 19:14:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB4J7pHY029016\n\tfor <source@collab.sakaiproject.org>; Tue, 4 Dec 2007 14:07:51 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB4J7pDb029014\n\tfor source@collab.sakaiproject.org; Tue, 4 Dec 2007 14:07:51 -0500\nDate: Tue, 4 Dec 2007 14:07:51 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: josrodri@iupui.edu\nSubject: [sakai] svn commit: r38965 - syllabus/trunk/syllabus-app/src/java/org/sakaiproject/tool/syllabus\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec  4 14:15:15 2007\nX-DSPAM-Confidence: 0.9797\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38965\n\nAuthor: josrodri@iupui.edu\nDate: 2007-12-04 14:07:49 -0500 (Tue, 04 Dec 2007)\nNew Revision: 38965\n\nModified:\nsyllabus/trunk/syllabus-app/src/java/org/sakaiproject/tool/syllabus/SyllabusTool.java\nLog:\nSAK-12234 - will check if a SyllabusItem was actually retrieved before grabbing redirect url\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Tue Dec  4 13:58:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 04 Dec 2007 13:58:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 04 Dec 2007 13:58:51 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby fan.mail.umich.edu () with ESMTP id lB4IwnTo003995;\n\tTue, 4 Dec 2007 13:58:49 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 4755A35E.1359.3302 ; \n\t 4 Dec 2007 13:58:43 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3D426936D0;\n\tTue,  4 Dec 2007 18:48:51 +0000 (GMT)\nMessage-ID: <200712041851.lB4IpGJT028986@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 529\n          for <source@collab.sakaiproject.org>;\n          Tue, 4 Dec 2007 18:48:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1B8EE3016D\n\tfor <source@collab.sakaiproject.org>; Tue,  4 Dec 2007 18:58:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB4IpG9R028988\n\tfor <source@collab.sakaiproject.org>; Tue, 4 Dec 2007 13:51:17 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB4IpGJT028986\n\tfor source@collab.sakaiproject.org; Tue, 4 Dec 2007 13:51:16 -0500\nDate: Tue, 4 Dec 2007 13:51:16 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38964 - osp/branches/osp_nightly\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec  4 13:58:51 2007\nX-DSPAM-Confidence: 0.9790\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38964\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-04 13:51:15 -0500 (Tue, 04 Dec 2007)\nNew Revision: 38964\n\nModified:\nosp/branches/osp_nightly/pom.xml\nLog:\nAdding content-taggable to the pom\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Tue Dec  4 13:58:31 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 04 Dec 2007 13:58:31 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 04 Dec 2007 13:58:31 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby flawless.mail.umich.edu () with ESMTP id lB4IwTLA019364;\n\tTue, 4 Dec 2007 13:58:29 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 4755A348.D6730.24164 ; \n\t 4 Dec 2007 13:58:21 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0D335936C1;\n\tTue,  4 Dec 2007 18:48:32 +0000 (GMT)\nMessage-ID: <200712041850.lB4IoV4j028974@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 201\n          for <source@collab.sakaiproject.org>;\n          Tue, 4 Dec 2007 18:48:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 49E333016D\n\tfor <source@collab.sakaiproject.org>; Tue,  4 Dec 2007 18:57:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB4IoVGc028976\n\tfor <source@collab.sakaiproject.org>; Tue, 4 Dec 2007 13:50:31 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB4IoV4j028974\n\tfor source@collab.sakaiproject.org; Tue, 4 Dec 2007 13:50:31 -0500\nDate: Tue, 4 Dec 2007 13:50:31 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38963 - osp/branches/osp_nightly\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec  4 13:58:31 2007\nX-DSPAM-Confidence: 0.9798\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38963\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-04 13:50:29 -0500 (Tue, 04 Dec 2007)\nNew Revision: 38963\n\nModified:\nosp/branches/osp_nightly/\nosp/branches/osp_nightly/.externals\nLog:\nAdding content-taggable to the osp nightly externals\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Tue Dec  4 10:23:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 04 Dec 2007 10:23:50 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 04 Dec 2007 10:23:50 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby fan.mail.umich.edu () with ESMTP id lB4FNljZ006354;\n\tTue, 4 Dec 2007 10:23:47 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 475570F6.BE3C4.30023 ; \n\t 4 Dec 2007 10:23:37 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A4F0A6A628;\n\tTue,  4 Dec 2007 15:22:15 +0000 (GMT)\nMessage-ID: <200712041515.lB4FFhGL028750@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 505\n          for <source@collab.sakaiproject.org>;\n          Tue, 4 Dec 2007 15:21:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8FE593027F\n\tfor <source@collab.sakaiproject.org>; Tue,  4 Dec 2007 15:22:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB4FFhaX028752\n\tfor <source@collab.sakaiproject.org>; Tue, 4 Dec 2007 10:15:43 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB4FFhGL028750\n\tfor source@collab.sakaiproject.org; Tue, 4 Dec 2007 10:15:43 -0500\nDate: Tue, 4 Dec 2007 10:15:43 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38962 - portal/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec  4 10:23:50 2007\nX-DSPAM-Confidence: 0.9797\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38962\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-04 10:15:40 -0500 (Tue, 04 Dec 2007)\nNew Revision: 38962\n\nAdded:\nportal/branches/SAK-7924_2-4-x/\nLog:\nCreating another branch for portal against 2.4.x from r35703\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gopal.ramasammycook@gmail.com Tue Dec  4 09:56:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 04 Dec 2007 09:56:43 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 04 Dec 2007 09:56:43 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby faithful.mail.umich.edu () with ESMTP id lB4EufMd026014;\n\tTue, 4 Dec 2007 09:56:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 47556AA0.8C299.9792 ; \n\t 4 Dec 2007 09:56:35 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B58C95AC5D;\n\tTue,  4 Dec 2007 14:56:29 +0000 (GMT)\nMessage-ID: <200712041449.lB4EnIaX028697@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 597\n          for <source@collab.sakaiproject.org>;\n          Tue, 4 Dec 2007 14:56:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E29D52CA01\n\tfor <source@collab.sakaiproject.org>; Tue,  4 Dec 2007 14:56:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB4EnIf3028699\n\tfor <source@collab.sakaiproject.org>; Tue, 4 Dec 2007 09:49:18 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB4EnIaX028697\n\tfor source@collab.sakaiproject.org; Tue, 4 Dec 2007 09:49:18 -0500\nDate: Tue, 4 Dec 2007 09:49:18 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f\nTo: source@collab.sakaiproject.org\nFrom: gopal.ramasammycook@gmail.com\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Dec  4 09:56:42 2007\nX-DSPAM-Confidence: 0.9779\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38961\n\nAuthor: gopal.ramasammycook@gmail.com\nDate: 2007-12-04 09:48:42 -0500 (Tue, 04 Dec 2007)\nNew Revision: 38961\n\nModified:\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/ExportResponsesBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramScoresBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/HistogramListener.java\nsam/branches/SAK-12065/samigo-app/src/webapp/jsf/evaluation/histogramScores.jsp\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacadeQueries.java\nLog:\nDetailed Statistics - spreadsheet export\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ostermmg@whitman.edu Mon Dec  3 20:21:11 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 03 Dec 2007 20:21:11 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 03 Dec 2007 20:21:11 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby score.mail.umich.edu () with ESMTP id lB41LBBO030624;\n\tMon, 3 Dec 2007 20:21:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 4754AB80.D1E30.10823 ; \n\t 3 Dec 2007 20:21:07 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id AF7849282F;\n\tTue,  4 Dec 2007 01:21:01 +0000 (GMT)\nMessage-ID: <200712040113.lB41DvUV027631@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 803\n          for <source@collab.sakaiproject.org>;\n          Tue, 4 Dec 2007 01:20:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id F3D1124DB1\n\tfor <source@collab.sakaiproject.org>; Tue,  4 Dec 2007 01:20:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB41Dv4r027633\n\tfor <source@collab.sakaiproject.org>; Mon, 3 Dec 2007 20:13:57 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB41DvUV027631\n\tfor source@collab.sakaiproject.org; Mon, 3 Dec 2007 20:13:57 -0500\nDate: Mon, 3 Dec 2007 20:13:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ostermmg@whitman.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec  3 20:21:11 2007\nX-DSPAM-Confidence: 0.6503\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38960\n\nAuthor: ostermmg@whitman.edu\nDate: 2007-12-03 20:12:35 -0500 (Mon, 03 Dec 2007)\nNew Revision: 38960\n\nModified:\ncontent/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/DavManager.java\ncontent/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/ExpandableResourceType.java\ncontent/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/InteractionAction.java\ncontent/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/ResourceToolAction.java\ncontent/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/ResourceToolActionPipe.java\ncontent/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/ResourceType.java\ncontent/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/ResourceTypeRegistry.java\ncontent/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/ServiceLevelAction.java\ncontent/branches/sakai_2-4-x/content-bundles/content.metaprops\ncontent/branches/sakai_2-4-x/content-bundles/content_ar.properties\ncontent/branches/sakai_2-4-x/content-bundles/content_ca.metaprops\ncontent/branches/sakai_2-4-x/content-bundles/content_es.metaprops\ncontent/branches/sakai_2-4-x/content-bundles/content_fr_CA.metaprops\ncontent/branches/sakai_2-4-x/content-bundles/content_ja.metaprops\ncontent/branches/sakai_2-4-x/content-bundles/content_ko.metaprops\ncontent/branches/sakai_2-4-x/content-bundles/content_nl.metaprops\ncontent/branches/sakai_2-4-x/content-bundles/content_zh_CN.metaprops\ncontent/branches/sakai_2-4-x/content-bundles/types.properties\ncontent/branches/sakai_2-4-x/content-bundles/types_ar.properties\ncontent/branches/sakai_2-4-x/content-bundles/types_ca.properties\ncontent/branches/sakai_2-4-x/content-bundles/types_es.properties\ncontent/branches/sakai_2-4-x/content-bundles/types_fr_CA.properties\ncontent/branches/sakai_2-4-x/content-bundles/types_ja.properties\ncontent/branches/sakai_2-4-x/content-help/project.xml\ncontent/branches/sakai_2-4-x/content-help/src/sakai_resources/aqyi.html\ncontent/branches/sakai_2-4-x/content-help/src/sakai_resources/aqyy.html\ncontent/branches/sakai_2-4-x/content-help/src/sakai_resources/araf.html\ncontent/branches/sakai_2-4-x/content-help/src/sakai_resources/arsl.html\ncontent/branches/sakai_2-4-x/content-help/src/sakai_resources/atkh.html\ncontent/branches/sakai_2-4-x/content-help/src/sakai_resources/atla.html\ncontent/branches/sakai_2-4-x/content-help/src/sakai_resources/aude.html\ncontent/branches/sakai_2-4-x/content-help/src/sakai_resources/audh.html\ncontent/branches/sakai_2-4-x/content-help/src/sakai_resources/auen.html\ncontent/branches/sakai_2-4-x/content-help/src/sakai_resources/aukb.html\ncontent/branches/sakai_2-4-x/content-help/src/sakai_resources/auta.html\ncontent/branches/sakai_2-4-x/content-help/src/sakai_resources/auze.html\ncontent/branches/sakai_2-4-x/content-help/src/sakai_resources/avbw.html\ncontent/branches/sakai_2-4-x/content-help/src/sakai_resources/avby.html\ncontent/branches/sakai_2-4-x/content-help/src/sakai_resources/avbz.html\ncontent/branches/sakai_2-4-x/content-help/src/sakai_resources/avcb.html\ncontent/branches/sakai_2-4-x/content-help/src/sakai_resources/avcc.html\ncontent/branches/sakai_2-4-x/content-help/src/sakai_resources/avcd.html\ncontent/branches/sakai_2-4-x/content-help/src/sakai_resources/avcg.html\ncontent/branches/sakai_2-4-x/content-impl/impl/src/bundle/siteemacon.metaprops\ncontent/branches/sakai_2-4-x/content-impl/impl/src/bundle/siteemacon_ar.properties\ncontent/branches/sakai_2-4-x/content-impl/impl/src/bundle/siteemacon_ca.metaprops\ncontent/branches/sakai_2-4-x/content-impl/impl/src/bundle/siteemacon_fr_CA.metaprops\ncontent/branches/sakai_2-4-x/content-impl/impl/src/bundle/siteemacon_sv.properties\ncontent/branches/sakai_2-4-x/content-impl/impl/src/bundle/siteemacon_zh_CN.properties\ncontent/branches/sakai_2-4-x/content-impl/impl/src/config/content_type_images_ja.properties\ncontent/branches/sakai_2-4-x/content-impl/impl/src/config/content_type_names_ca.properties\ncontent/branches/sakai_2-4-x/content-impl/impl/src/config/content_type_names_ja.properties\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BasicResourceToolActionPipe.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ResourceTypeRegistryImpl.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/types/FileUploadType.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/types/HtmlDocumentType.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/types/TextDocumentType.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/types/UrlResourceType.java\ncontent/branches/sakai_2-4-x/content-tool/tool/src/bundle/helper.metaprops\ncontent/branches/sakai_2-4-x/content-tool/tool/src/bundle/helper_ar.properties\ncontent/branches/sakai_2-4-x/content-tool/tool/src/bundle/helper_ca.metaprops\ncontent/branches/sakai_2-4-x/content-tool/tool/src/bundle/helper_es.metaprops\ncontent/branches/sakai_2-4-x/content-tool/tool/src/bundle/helper_fr_CA.metaprops\ncontent/branches/sakai_2-4-x/content-tool/tool/src/bundle/helper_ja.metaprops\ncontent/branches/sakai_2-4-x/content-tool/tool/src/bundle/helper_ko.metaprops\ncontent/branches/sakai_2-4-x/content-tool/tool/src/bundle/helper_nl.metaprops\ncontent/branches/sakai_2-4-x/content-tool/tool/src/bundle/helper_zh_CN.metaprops\ncontent/branches/sakai_2-4-x/content-tool/tool/src/bundle/right.metaprops\ncontent/branches/sakai_2-4-x/content-tool/tool/src/bundle/right_ar.properties\ncontent/branches/sakai_2-4-x/content-tool/tool/src/bundle/right_ca.metaprops\ncontent/branches/sakai_2-4-x/content-tool/tool/src/bundle/right_fr_CA.properties\ncontent/branches/sakai_2-4-x/content-tool/tool/src/bundle/right_ja.properties\ncontent/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java\ncontent/branches/sakai_2-4-x/content-tool/tool/src/webapp/tools/sakai.resource.type.helper.xml\ncontent/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/content/sakai_resources_columns.vm\ncontent/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/content/sakai_resources_props.vm\ncontent/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/resources/sakai_access_text.vm\ncontent/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/resources/sakai_create_text.vm\ncontent/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/resources/sakai_revise_text.vm\ncontent/branches/sakai_2-4-x/content-util/util/src/java/org/sakaiproject/content/util/BaseResourceType.java\nLog:\nSAK-12322\n\nFix svn:eol-style=native on 2.4.x /content\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ostermmg@whitman.edu Mon Dec  3 20:07:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 03 Dec 2007 20:07:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 03 Dec 2007 20:07:25 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby score.mail.umich.edu () with ESMTP id lB417LRJ025400;\n\tMon, 3 Dec 2007 20:07:21 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 4754A843.7BD94.24894 ; \n\t 3 Dec 2007 20:07:18 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1C4DB927B0;\n\tTue,  4 Dec 2007 00:49:15 +0000 (GMT)\nMessage-ID: <200712040100.lB4101Sd027576@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 183\n          for <source@collab.sakaiproject.org>;\n          Tue, 4 Dec 2007 00:48:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0705B2C6C0\n\tfor <source@collab.sakaiproject.org>; Tue,  4 Dec 2007 01:06:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB4101SP027578\n\tfor <source@collab.sakaiproject.org>; Mon, 3 Dec 2007 20:00:01 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB4101Sd027576\n\tfor source@collab.sakaiproject.org; Mon, 3 Dec 2007 20:00:01 -0500\nDate: Mon, 3 Dec 2007 20:00:01 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ostermmg@whitman.edu\nSubject: [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!\n 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!\n ease-0.9.0/dojox/data/demos/geography/China content-tool/tool/!\n src/weba\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec  3 20:07:25 2007\nX-DSPAM-Confidence: 0.6180\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38959\n\nAuthor: ostermmg@whitman.edu\nDate: 2007-12-03 19:57:53 -0500 (Mon, 03 Dec 2007)\nNew Revision: 38959\n\nModified:\ncontent/branches/sakai_2-5-x/content-api/api/src/java/org/sakaiproject/content/api/DavManager.java\ncontent/branches/sakai_2-5-x/content-api/api/src/java/org/sakaiproject/content/api/InteractionAction.java\ncontent/branches/sakai_2-5-x/content-api/api/src/java/org/sakaiproject/content/api/ResourceToolAction.java\ncontent/branches/sakai_2-5-x/content-api/api/src/java/org/sakaiproject/content/api/ResourceToolActionPipe.java\ncontent/branches/sakai_2-5-x/content-api/api/src/java/org/sakaiproject/content/api/ResourceType.java\ncontent/branches/sakai_2-5-x/content-api/api/src/java/org/sakaiproject/content/api/ResourceTypeRegistry.java\ncontent/branches/sakai_2-5-x/content-api/api/src/java/org/sakaiproject/content/api/ServiceLevelAction.java\ncontent/branches/sakai_2-5-x/content-bundles/content.metaprops\ncontent/branches/sakai_2-5-x/content-bundles/content_ar.properties\ncontent/branches/sakai_2-5-x/content-bundles/content_ca.metaprops\ncontent/branches/sakai_2-5-x/content-bundles/content_en_GB.properties\ncontent/branches/sakai_2-5-x/content-bundles/content_es.metaprops\ncontent/branches/sakai_2-5-x/content-bundles/content_fr_CA.metaprops\ncontent/branches/sakai_2-5-x/content-bundles/content_ja.metaprops\ncontent/branches/sakai_2-5-x/content-bundles/content_ko.metaprops\ncontent/branches/sakai_2-5-x/content-bundles/content_nl.metaprops\ncontent/branches/sakai_2-5-x/content-bundles/content_zh_CN.metaprops\ncontent/branches/sakai_2-5-x/content-bundles/types.properties\ncontent/branches/sakai_2-5-x/content-bundles/types_ar.properties\ncontent/branches/sakai_2-5-x/content-bundles/types_ca.properties\ncontent/branches/sakai_2-5-x/content-bundles/types_en_GB.properties\ncontent/branches/sakai_2-5-x/content-bundles/types_es.properties\ncontent/branches/sakai_2-5-x/content-bundles/types_fr_CA.properties\ncontent/branches/sakai_2-5-x/content-bundles/types_ja.properties\ncontent/branches/sakai_2-5-x/content-bundles/types_nl.properties\ncontent/branches/sakai_2-5-x/content-bundles/types_zh_CN.properties\ncontent/branches/sakai_2-5-x/content-help/src/sakai_resources/aqyi.html\ncontent/branches/sakai_2-5-x/content-help/src/sakai_resources/aqyy.html\ncontent/branches/sakai_2-5-x/content-help/src/sakai_resources/araf.html\ncontent/branches/sakai_2-5-x/content-help/src/sakai_resources/arsl.html\ncontent/branches/sakai_2-5-x/content-help/src/sakai_resources/atkh.html\ncontent/branches/sakai_2-5-x/content-help/src/sakai_resources/atla.html\ncontent/branches/sakai_2-5-x/content-help/src/sakai_resources/aude.html\ncontent/branches/sakai_2-5-x/content-help/src/sakai_resources/audh.html\ncontent/branches/sakai_2-5-x/content-help/src/sakai_resources/auen.html\ncontent/branches/sakai_2-5-x/content-help/src/sakai_resources/aukb.html\ncontent/branches/sakai_2-5-x/content-help/src/sakai_resources/auta.html\ncontent/branches/sakai_2-5-x/content-help/src/sakai_resources/auze.html\ncontent/branches/sakai_2-5-x/content-help/src/sakai_resources/avbw.html\ncontent/branches/sakai_2-5-x/content-help/src/sakai_resources/avby.html\ncontent/branches/sakai_2-5-x/content-help/src/sakai_resources/avbz.html\ncontent/branches/sakai_2-5-x/content-help/src/sakai_resources/avcb.html\ncontent/branches/sakai_2-5-x/content-help/src/sakai_resources/avcc.html\ncontent/branches/sakai_2-5-x/content-help/src/sakai_resources/avcd.html\ncontent/branches/sakai_2-5-x/content-help/src/sakai_resources/avcg.html\ncontent/branches/sakai_2-5-x/content-impl/impl/src/bundle/siteemacon.metaprops\ncontent/branches/sakai_2-5-x/content-impl/impl/src/bundle/siteemacon_ar.properties\ncontent/branches/sakai_2-5-x/content-impl/impl/src/bundle/siteemacon_ca.metaprops\ncontent/branches/sakai_2-5-x/content-impl/impl/src/bundle/siteemacon_fr_CA.metaprops\ncontent/branches/sakai_2-5-x/content-impl/impl/src/bundle/siteemacon_nl.properties\ncontent/branches/sakai_2-5-x/content-impl/impl/src/bundle/siteemacon_sv.properties\ncontent/branches/sakai_2-5-x/content-impl/impl/src/bundle/siteemacon_zh_CN.properties\ncontent/branches/sakai_2-5-x/content-impl/impl/src/config/content_type_images_ja.properties\ncontent/branches/sakai_2-5-x/content-impl/impl/src/config/content_type_names_ca.properties\ncontent/branches/sakai_2-5-x/content-impl/impl/src/config/content_type_names_ja.properties\ncontent/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BasicResourceToolActionPipe.java\ncontent/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlDb2.java\ncontent/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlDefault.java\ncontent/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlHSql.java\ncontent/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlMsSql.java\ncontent/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlMySql.java\ncontent/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlOracle.java\ncontent/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ResourceTypeRegistryImpl.java\ncontent/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/upgradeschema.config\ncontent/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/types/FileUploadType.java\ncontent/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/types/HtmlDocumentType.java\ncontent/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/types/TextDocumentType.java\ncontent/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/types/UrlResourceType.java\ncontent/branches/sakai_2-5-x/content-tool/tool/src/bundle/helper.metaprops\ncontent/branches/sakai_2-5-x/content-tool/tool/src/bundle/helper_ar.properties\ncontent/branches/sakai_2-5-x/content-tool/tool/src/bundle/helper_ca.metaprops\ncontent/branches/sakai_2-5-x/content-tool/tool/src/bundle/helper_es.metaprops\ncontent/branches/sakai_2-5-x/content-tool/tool/src/bundle/helper_fr_CA.metaprops\ncontent/branches/sakai_2-5-x/content-tool/tool/src/bundle/helper_ja.metaprops\ncontent/branches/sakai_2-5-x/content-tool/tool/src/bundle/helper_ko.metaprops\ncontent/branches/sakai_2-5-x/content-tool/tool/src/bundle/helper_nl.metaprops\ncontent/branches/sakai_2-5-x/content-tool/tool/src/bundle/helper_zh_CN.metaprops\ncontent/branches/sakai_2-5-x/content-tool/tool/src/bundle/right.metaprops\ncontent/branches/sakai_2-5-x/content-tool/tool/src/bundle/right_ar.properties\ncontent/branches/sakai_2-5-x/content-tool/tool/src/bundle/right_ca.metaprops\ncontent/branches/sakai_2-5-x/content-tool/tool/src/bundle/right_fr_CA.properties\ncontent/branches/sakai_2-5-x/content-tool/tool/src/bundle/right_ja.properties\ncontent/branches/sakai_2-5-x/content-tool/tool/src/bundle/right_zh_CN.properties\ncontent/branches/sakai_2-5-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dijit/demos/mail/mail.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/countries.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/Form.html\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/comboBoxData.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/comboBoxDataToo.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/treeTest.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/noir.html\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/templateThemeTest.html\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojo/_firebug/LICENSE\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojo/resources/LICENSE\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/TODO\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/countries.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/countries_commentFiltered.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/countries_idcollision.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/countries_withBoolean.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/countries_withDates.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/countries_withNull.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/geography_hierarchy_large.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/geography_hierarchy_small.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/resources/testClass.smd\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/_sql/LICENSE\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/crypto/LICENSE\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Argentina/data.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Brazil/data.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Canada/Ottawa/data.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Canada/Toronto/data.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Canada/data.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/China/data.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Egypt/data.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/France/data.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Germany/data.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/India/data.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Italy/data.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Kenya/Mombasa/data.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Kenya/Nairobi/data.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Kenya/data.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Mexico/Guadalajara/data.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Mexico/data.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Mongolia/data.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Russia/data.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Spain/data.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Sudan/Khartoum/data.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Sudan/data.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/root.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/movies.csv\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/patterns.csv\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/runTests.html\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/flash/flash6/DojoExternalInterface.as\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/flash/flash8/DojoExternalInterface.as\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/flash/flash8/ExpressInstall.as\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/LICENSE\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/manifest\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/resources/README.template\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/rpc/yahoo.smd\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/Storage.as\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/markup/countries.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/markup/states.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/Service/JSON.smd\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/Service/XML.smd\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/Service/a.json\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/dojo/dojo-release-0.9.0/util/doh/_sounds/LICENSE\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/tools/sakai.resource.type.helper.xml\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/vm/content/sakai_resources_columns.vm\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/vm/content/sakai_resources_props.vm\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/vm/resources/sakai_access_text.vm\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/vm/resources/sakai_create_text.vm\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/vm/resources/sakai_revise_text.vm\ncontent/branches/sakai_2-5-x/content-util/util/src/java/org/sakaiproject/content/util/BaseResourceType.java\ncontent/branches/sakai_2-5-x/upgradeschema-mysql.config\ncontent/branches/sakai_2-5-x/upgradeschema-oracle.config\nLog:\nSAK-12322\n\nFix svn:eol-style=native on 2.5.x /content\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Mon Dec  3 16:29:47 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 03 Dec 2007 16:29:47 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 03 Dec 2007 16:29:47 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby mission.mail.umich.edu () with ESMTP id lB3LTjSb010662;\n\tMon, 3 Dec 2007 16:29:45 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 4754753C.8EA9E.5570 ; \n\t 3 Dec 2007 16:29:35 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0B43C9269C;\n\tMon,  3 Dec 2007 21:29:25 +0000 (GMT)\nMessage-ID: <200712032122.lB3LMQFP027155@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 48\n          for <source@collab.sakaiproject.org>;\n          Mon, 3 Dec 2007 21:29:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 413322F77C\n\tfor <source@collab.sakaiproject.org>; Mon,  3 Dec 2007 21:29:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB3LMQOp027157\n\tfor <source@collab.sakaiproject.org>; Mon, 3 Dec 2007 16:22:26 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB3LMQFP027155\n\tfor source@collab.sakaiproject.org; Mon, 3 Dec 2007 16:22:26 -0500\nDate: Mon, 3 Dec 2007 16:22:26 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38957 - in content/trunk/content-impl-jcr: impl/src/java/org/sakaiproject/content/impl pack\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec  3 16:29:47 2007\nX-DSPAM-Confidence: 0.9832\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38957\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-03 16:22:20 -0500 (Mon, 03 Dec 2007)\nNew Revision: 38957\n\nModified:\ncontent/trunk/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRStorageUser.java\ncontent/trunk/content-impl-jcr/pack/\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-12321\n\nFixed\n\nThe mime types was not being set in the right part of the jcr:content node.\n\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Mon Dec  3 13:32:15 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 03 Dec 2007 13:32:15 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 03 Dec 2007 13:32:14 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby godsend.mail.umich.edu () with ESMTP id lB3IWDwG026816;\n\tMon, 3 Dec 2007 13:32:13 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 47544BA2.D75D2.2989 ; \n\t 3 Dec 2007 13:32:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B5E159106A;\n\tMon,  3 Dec 2007 18:18:53 +0000 (GMT)\nMessage-ID: <200712031811.lB3IBQTE026732@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 616\n          for <source@collab.sakaiproject.org>;\n          Mon, 3 Dec 2007 18:09:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 800172BEBC\n\tfor <source@collab.sakaiproject.org>; Mon,  3 Dec 2007 18:18:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB3IBQ1t026734\n\tfor <source@collab.sakaiproject.org>; Mon, 3 Dec 2007 13:11:26 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB3IBQTE026732\n\tfor source@collab.sakaiproject.org; Mon, 3 Dec 2007 13:11:26 -0500\nDate: Mon, 3 Dec 2007 13:11:26 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec  3 13:32:14 2007\nX-DSPAM-Confidence: 0.7569\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38956\n\nAuthor: jimeng@umich.edu\nDate: 2007-12-03 13:10:39 -0500 (Mon, 03 Dec 2007)\nNew Revision: 38956\n\nAdded:\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSql.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlDb2.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlDefault.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlHSql.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlMsSql.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlMySql.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlOracle.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/DropboxNotification.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/api/\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/api/SerializableCollectionAccess.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/api/SerializableResourceAccess.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/Type1BaseContentCollectionSerializer.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/Type1BaseContentResourceSerializer.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/ConversionTimeService.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/ConvertTime.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/FileSizeResourcesConversionHandler.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/SAXSerializableCollectionAccess.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/SAXSerializablePropertiesAccess.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/SAXSerializableResourceAccess.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/Type1BlobCollectionConversionHandler.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/Type1BlobResourcesConversionHandler.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/upgradeschema.config\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/util/\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/util/GMTDateformatter.java\nModified:\ncontent/branches/SAK-12239/content-impl/impl/project.xml\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentHostingHandlerResolverImpl.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/SiteEmailNotificationContent.java\ncontent/branches/SAK-12239/content-impl/impl/src/sql/hsqldb/sakai_content.sql\ncontent/branches/SAK-12239/content-impl/impl/src/sql/hsqldb/sakai_content_delete.sql\ncontent/branches/SAK-12239/content-impl/impl/src/sql/mysql/sakai_content.sql\ncontent/branches/SAK-12239/content-impl/impl/src/sql/mysql/sakai_content_delete.sql\ncontent/branches/SAK-12239/content-impl/impl/src/sql/oracle/sakai_content.sql\ncontent/branches/SAK-12239/content-impl/impl/src/sql/oracle/sakai_content_delete.sql\ncontent/branches/SAK-12239/content-impl/pack/src/webapp/WEB-INF/components.xml\ncontent/branches/SAK-12239/content-tool/tool/src/bundle/right.properties\ncontent/branches/SAK-12239/content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java\ncontent/branches/SAK-12239/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\ncontent/branches/SAK-12239/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java\ncontent/branches/SAK-12239/content-tool/tool/src/webapp/vm/content/sakai_filepicker_select.vm\ncontent/branches/SAK-12239/content-tool/tool/src/webapp/vm/content/sakai_resources_cwiz_finish.vm\ncontent/branches/SAK-12239/content-tool/tool/src/webapp/vm/content/sakai_resources_list.vm\ncontent/branches/SAK-12239/content-tool/tool/src/webapp/vm/content/sakai_resources_properties.vm\ncontent/branches/SAK-12239/content-tool/tool/src/webapp/vm/resources/sakai_create_folders.vm\ncontent/branches/SAK-12239/content-tool/tool/src/webapp/vm/resources/sakai_create_uploads.vm\ncontent/branches/SAK-12239/content-tool/tool/src/webapp/vm/resources/sakai_create_urls.vm\ncontent/branches/SAK-12239/content-tool/tool/src/webapp/vm/resources/sakai_properties.vm\ncontent/branches/SAK-12239/content-tool/tool/src/webapp/vm/resources/sakai_replace_file.vm\ncontent/branches/SAK-12239/content-tool/tool/src/webapp/vm/resources/sakai_revise_html.vm\ncontent/branches/SAK-12239/content-tool/tool/src/webapp/vm/resources/sakai_revise_text.vm\ncontent/branches/SAK-12239/content-tool/tool/src/webapp/vm/resources/sakai_revise_url.vm\nLog:\nSAK-12239\nAdding files to content impl\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Mon Dec  3 12:45:34 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 03 Dec 2007 12:45:34 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 03 Dec 2007 12:45:34 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby faithful.mail.umich.edu () with ESMTP id lB3HjWV3010091;\n\tMon, 3 Dec 2007 12:45:32 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 475440AE.28EFE.17509 ; \n\t 3 Dec 2007 12:45:25 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0394C922CB;\n\tMon,  3 Dec 2007 17:45:12 +0000 (GMT)\nMessage-ID: <200712031737.lB3HbvlP026709@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 121\n          for <source@collab.sakaiproject.org>;\n          Mon, 3 Dec 2007 17:44:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 096BC2F7B1\n\tfor <source@collab.sakaiproject.org>; Mon,  3 Dec 2007 17:44:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB3HbvDc026711\n\tfor <source@collab.sakaiproject.org>; Mon, 3 Dec 2007 12:37:57 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB3HbvlP026709\n\tfor source@collab.sakaiproject.org; Mon, 3 Dec 2007 12:37:57 -0500\nDate: Mon, 3 Dec 2007 12:37:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38955 - portal/branches/oncourse_opc_122007_overlay/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec  3 12:45:34 2007\nX-DSPAM-Confidence: 0.9787\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38955\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-03 12:37:54 -0500 (Mon, 03 Dec 2007)\nNew Revision: 38955\n\nModified:\nportal/branches/oncourse_opc_122007_overlay/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java\nLog:\nadding an Iterator import\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Mon Dec  3 12:36:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 03 Dec 2007 12:36:43 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 03 Dec 2007 12:36:43 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby awakenings.mail.umich.edu () with ESMTP id lB3HagUG008950;\n\tMon, 3 Dec 2007 12:36:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 47543EA1.EC266.378 ; \n\t 3 Dec 2007 12:36:38 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EA5B292441;\n\tMon,  3 Dec 2007 17:36:34 +0000 (GMT)\nMessage-ID: <200712031729.lB3HTQgw026651@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 829\n          for <source@collab.sakaiproject.org>;\n          Mon, 3 Dec 2007 17:36:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2686D2BDEF\n\tfor <source@collab.sakaiproject.org>; Mon,  3 Dec 2007 17:36:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB3HTQHL026653\n\tfor <source@collab.sakaiproject.org>; Mon, 3 Dec 2007 12:29:26 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB3HTQgw026651\n\tfor source@collab.sakaiproject.org; Mon, 3 Dec 2007 12:29:26 -0500\nDate: Mon, 3 Dec 2007 12:29:26 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38954 - in assignment/branches/post-2-4/assignment-tool/tool/src: java/org/sakaiproject/assignment/tool webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec  3 12:36:43 2007\nX-DSPAM-Confidence: 0.9857\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38954\n\nAuthor: zqian@umich.edu\nDate: 2007-12-03 12:29:23 -0500 (Mon, 03 Dec 2007)\nNew Revision: 38954\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_view_assignment.vm\nLog:\nmerge fix to 'SAK-5956: Assignment Tool Exception' into post-2-4 branch: svn merge -r 38952:38953 https://source.sakaiproject.org/svn/assignment/trunk/\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Mon Dec  3 12:32:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 03 Dec 2007 12:32:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 03 Dec 2007 12:32:30 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby chaos.mail.umich.edu () with ESMTP id lB3HWSXU003004;\n\tMon, 3 Dec 2007 12:32:28 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 47543DA1.AE7D5.804 ; \n\t 3 Dec 2007 12:32:21 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 700FB9240C;\n\tMon,  3 Dec 2007 17:32:10 +0000 (GMT)\nMessage-ID: <200712031724.lB3HOvdq026618@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 375\n          for <source@collab.sakaiproject.org>;\n          Mon, 3 Dec 2007 17:31:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AEE2C296D2\n\tfor <source@collab.sakaiproject.org>; Mon,  3 Dec 2007 17:31:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB3HOvm1026620\n\tfor <source@collab.sakaiproject.org>; Mon, 3 Dec 2007 12:24:57 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB3HOvdq026618\n\tfor source@collab.sakaiproject.org; Mon, 3 Dec 2007 12:24:57 -0500\nDate: Mon, 3 Dec 2007 12:24:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38953 - in assignment/trunk/assignment-tool/tool/src: java/org/sakaiproject/assignment/tool webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec  3 12:32:30 2007\nX-DSPAM-Confidence: 0.8468\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38953\n\nAuthor: zqian@umich.edu\nDate: 2007-12-03 12:24:50 -0500 (Mon, 03 Dec 2007)\nNew Revision: 38953\n\nModified:\nassignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nassignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_view_assignment.vm\nLog:\nFix to SAK-5956: Assignment Tool Exceptions\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Mon Dec  3 12:05:33 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 03 Dec 2007 12:05:33 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 03 Dec 2007 12:05:33 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby faithful.mail.umich.edu () with ESMTP id lB3H5TSj014456;\n\tMon, 3 Dec 2007 12:05:29 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 47543752.8C0A.4151 ; \n\t 3 Dec 2007 12:05:25 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8FEF4634D7;\n\tMon,  3 Dec 2007 17:05:27 +0000 (GMT)\nMessage-ID: <200712031658.lB3GwDZx026581@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 832\n          for <source@collab.sakaiproject.org>;\n          Mon, 3 Dec 2007 17:05:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 773C82BDDB\n\tfor <source@collab.sakaiproject.org>; Mon,  3 Dec 2007 17:05:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB3GwDwi026583\n\tfor <source@collab.sakaiproject.org>; Mon, 3 Dec 2007 11:58:13 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB3GwDZx026581\n\tfor source@collab.sakaiproject.org; Mon, 3 Dec 2007 11:58:13 -0500\nDate: Mon, 3 Dec 2007 11:58:13 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec  3 12:05:33 2007\nX-DSPAM-Confidence: 0.6942\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38952\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-03 11:58:09 -0500 (Mon, 03 Dec 2007)\nNew Revision: 38952\n\nModified:\nportal/branches/oncourse_opc_122007_overlay/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java\nportal/branches/oncourse_opc_122007_overlay/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java\nportal/branches/oncourse_opc_122007_overlay/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm\nLog:\nmerging greg's student view stuff with the oncourse overlay\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Mon Dec  3 11:37:24 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 03 Dec 2007 11:37:24 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 03 Dec 2007 11:37:24 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby jacknife.mail.umich.edu () with ESMTP id lB3GbNpa006764;\n\tMon, 3 Dec 2007 11:37:23 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 4754309D.E7124.13407 ; \n\t 3 Dec 2007 11:36:48 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2D05C64A3D;\n\tMon,  3 Dec 2007 16:36:51 +0000 (GMT)\nMessage-ID: <200712031629.lB3GTTmU026531@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 875\n          for <source@collab.sakaiproject.org>;\n          Mon, 3 Dec 2007 16:36:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E0B3D2BC20\n\tfor <source@collab.sakaiproject.org>; Mon,  3 Dec 2007 16:36:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB3GTfQS026533\n\tfor <source@collab.sakaiproject.org>; Mon, 3 Dec 2007 11:29:41 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB3GTTmU026531\n\tfor source@collab.sakaiproject.org; Mon, 3 Dec 2007 11:29:29 -0500\nDate: Mon, 3 Dec 2007 11:29:29 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38951 - portal/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec  3 11:37:24 2007\nX-DSPAM-Confidence: 0.8449\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38951\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-03 11:29:26 -0500 (Mon, 03 Dec 2007)\nNew Revision: 38951\n\nAdded:\nportal/branches/oncourse_opc_122007_overlay/\nLog:\nbranching the oncourse portal overlay to add in Greg's student view stuff\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Mon Dec  3 11:18:22 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 03 Dec 2007 11:18:22 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 03 Dec 2007 11:18:22 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby mission.mail.umich.edu () with ESMTP id lB3GILO0012405;\n\tMon, 3 Dec 2007 11:18:21 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 47542C46.D8CEE.27687 ; \n\t 3 Dec 2007 11:18:17 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 898FC920E7;\n\tMon,  3 Dec 2007 16:18:20 +0000 (GMT)\nMessage-ID: <200712031611.lB3GBAgV026507@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 415\n          for <source@collab.sakaiproject.org>;\n          Mon, 3 Dec 2007 16:18:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5449D2BC4E\n\tfor <source@collab.sakaiproject.org>; Mon,  3 Dec 2007 16:17:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB3GBAdq026509\n\tfor <source@collab.sakaiproject.org>; Mon, 3 Dec 2007 11:11:10 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB3GBAgV026507\n\tfor source@collab.sakaiproject.org; Mon, 3 Dec 2007 11:11:10 -0500\nDate: Mon, 3 Dec 2007 11:11:10 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec  3 11:18:22 2007\nX-DSPAM-Confidence: 0.8440\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38950\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-03 11:11:06 -0500 (Mon, 03 Dec 2007)\nNew Revision: 38950\n\nModified:\nauthz/branches/oncourse_opc_122007_overlay/authz-api/api/src/java/org/sakaiproject/authz/api/SecurityService.java\nauthz/branches/oncourse_opc_122007_overlay/authz-impl/impl/src/java/org/sakaiproject/authz/impl/SakaiSecurityTest.java\nLog:\nadding oncourse student view stuff into the overlay\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Mon Dec  3 10:58:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 03 Dec 2007 10:58:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 03 Dec 2007 10:58:17 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby brazil.mail.umich.edu () with ESMTP id lB3FwGrt032665;\n\tMon, 3 Dec 2007 10:58:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 47542791.2C026.24868 ; \n\t 3 Dec 2007 10:58:12 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9D8B992117;\n\tMon,  3 Dec 2007 15:55:00 +0000 (GMT)\nMessage-ID: <200712031550.lB3Fovm1026455@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 390\n          for <source@collab.sakaiproject.org>;\n          Mon, 3 Dec 2007 15:54:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 974682743B\n\tfor <source@collab.sakaiproject.org>; Mon,  3 Dec 2007 15:57:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB3Fovwl026457\n\tfor <source@collab.sakaiproject.org>; Mon, 3 Dec 2007 10:50:57 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB3Fovm1026455\n\tfor source@collab.sakaiproject.org; Mon, 3 Dec 2007 10:50:57 -0500\nDate: Mon, 3 Dec 2007 10:50:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38949 - authz/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec  3 10:58:17 2007\nX-DSPAM-Confidence: 0.9793\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38949\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-03 10:50:54 -0500 (Mon, 03 Dec 2007)\nNew Revision: 38949\n\nAdded:\nauthz/branches/oncourse_opc_122007_overlay/\nLog:\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Mon Dec  3 10:25:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 03 Dec 2007 10:25:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 03 Dec 2007 10:25:25 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby brazil.mail.umich.edu () with ESMTP id lB3FPNIE007504;\n\tMon, 3 Dec 2007 10:25:23 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 47541FDD.3F1A0.29652 ; \n\t 3 Dec 2007 10:25:20 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C44294F922;\n\tMon,  3 Dec 2007 15:25:26 +0000 (GMT)\nMessage-ID: <200712031518.lB3FICrc026325@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 281\n          for <source@collab.sakaiproject.org>;\n          Mon, 3 Dec 2007 15:25:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2094A2967E\n\tfor <source@collab.sakaiproject.org>; Mon,  3 Dec 2007 15:25:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB3FICnI026327\n\tfor <source@collab.sakaiproject.org>; Mon, 3 Dec 2007 10:18:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB3FICrc026325\n\tfor source@collab.sakaiproject.org; Mon, 3 Dec 2007 10:18:12 -0500\nDate: Mon, 3 Dec 2007 10:18:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r38948 - polls/trunk/tool/src/java/org/sakaiproject/poll/tool/producers\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec  3 10:25:25 2007\nX-DSPAM-Confidence: 0.9757\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38948\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-12-03 10:18:02 -0500 (Mon, 03 Dec 2007)\nNew Revision: 38948\n\nModified:\npolls/trunk/tool/src/java/org/sakaiproject/poll/tool/producers/PollOptionProducer.java\nLog:\nSAK-12317 render the edit options header\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gopal.ramasammycook@gmail.com Mon Dec  3 09:54:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 03 Dec 2007 09:54:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 03 Dec 2007 09:54:17 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby brazil.mail.umich.edu () with ESMTP id lB3EsGXi016429;\n\tMon, 3 Dec 2007 09:54:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 47541892.4905E.7611 ; \n\t 3 Dec 2007 09:54:13 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 07CA491E4B;\n\tMon,  3 Dec 2007 14:53:52 +0000 (GMT)\nMessage-ID: <200712031446.lB3EkT7p026300@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 397\n          for <source@collab.sakaiproject.org>;\n          Mon, 3 Dec 2007 14:53:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 02A322BB95\n\tfor <source@collab.sakaiproject.org>; Mon,  3 Dec 2007 14:53:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB3EkUDC026302\n\tfor <source@collab.sakaiproject.org>; Mon, 3 Dec 2007 09:46:30 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB3EkT7p026300\n\tfor source@collab.sakaiproject.org; Mon, 3 Dec 2007 09:46:29 -0500\nDate: Mon, 3 Dec 2007 09:46:29 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f\nTo: source@collab.sakaiproject.org\nFrom: gopal.ramasammycook@gmail.com\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec  3 09:54:17 2007\nX-DSPAM-Confidence: 0.9798\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38947\n\nAuthor: gopal.ramasammycook@gmail.com\nDate: 2007-12-03 09:45:55 -0500 (Mon, 03 Dec 2007)\nNew Revision: 38947\n\nModified:\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/EvaluationMessages.properties\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramQuestionScoresBean.java\nsam/branches/SAK-12065/samigo-app/src/webapp/jsf/evaluation/histogramScores.jsp\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacadeQueries.java\nLog:\nDetailed Statistics\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Mon Dec  3 08:31:16 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 03 Dec 2007 08:31:16 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 03 Dec 2007 08:31:16 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby fan.mail.umich.edu () with ESMTP id lB3DVFot024862;\n\tMon, 3 Dec 2007 08:31:15 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 4754051B.A1B69.26300 ; \n\t 3 Dec 2007 08:31:10 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CFEAD91DDC;\n\tMon,  3 Dec 2007 13:31:16 +0000 (GMT)\nMessage-ID: <200712031324.lB3DO4GE026229@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 444\n          for <source@collab.sakaiproject.org>;\n          Mon, 3 Dec 2007 13:30:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1B6AB1D5BE\n\tfor <source@collab.sakaiproject.org>; Mon,  3 Dec 2007 13:30:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB3DO5AT026231\n\tfor <source@collab.sakaiproject.org>; Mon, 3 Dec 2007 08:24:05 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB3DO4GE026229\n\tfor source@collab.sakaiproject.org; Mon, 3 Dec 2007 08:24:04 -0500\nDate: Mon, 3 Dec 2007 08:24:04 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38946 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec  3 08:31:16 2007\nX-DSPAM-Confidence: 0.9824\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38946\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-03 08:24:03 -0500 (Mon, 03 Dec 2007)\nNew Revision: 38946\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nUpdating authz to get the student view stuff from Greg\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Mon Dec  3 08:29:35 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 03 Dec 2007 08:29:35 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 03 Dec 2007 08:29:35 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby brazil.mail.umich.edu () with ESMTP id lB3DTWI6021488;\n\tMon, 3 Dec 2007 08:29:32 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 475404B6.8BC7.4782 ; \n\t 3 Dec 2007 08:29:28 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3856F91CED;\n\tMon,  3 Dec 2007 13:29:36 +0000 (GMT)\nMessage-ID: <200712031322.lB3DMJjb026217@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 921\n          for <source@collab.sakaiproject.org>;\n          Mon, 3 Dec 2007 13:29:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4E3E61D5B6\n\tfor <source@collab.sakaiproject.org>; Mon,  3 Dec 2007 13:29:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB3DMJo7026219\n\tfor <source@collab.sakaiproject.org>; Mon, 3 Dec 2007 08:22:19 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB3DMJjb026217\n\tfor source@collab.sakaiproject.org; Mon, 3 Dec 2007 08:22:19 -0500\nDate: Mon, 3 Dec 2007 08:22:19 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec  3 08:29:35 2007\nX-DSPAM-Confidence: 0.9914\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38945\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-12-03 08:22:14 -0500 (Mon, 03 Dec 2007)\nNew Revision: 38945\n\nModified:\nauthz/branches/oncourse_opc_122007/authz-api/api/src/java/org/sakaiproject/authz/api/SecurityService.java\nauthz/branches/oncourse_opc_122007/authz-api/api/src/java/org/sakaiproject/authz/cover/SecurityService.java\nauthz/branches/oncourse_opc_122007/authz-impl/impl/src/java/org/sakaiproject/authz/impl/DbAuthzGroupService.java\nauthz/branches/oncourse_opc_122007/authz-impl/impl/src/java/org/sakaiproject/authz/impl/SakaiSecurity.java\nLog:\nsvn merge -r 38923:38925 https://source.sakaiproject.org/svn/authz/branches/SAK-7924_2-4-x\nU    authz-api/api/src/java/org/sakaiproject/authz/api/SecurityService.java\nU    authz-api/api/src/java/org/sakaiproject/authz/cover/SecurityService.java\nU    authz-impl/impl/src/java/org/sakaiproject/authz/impl/DbAuthzGroupService.java\nU    authz-impl/impl/src/java/org/sakaiproject/authz/impl/SakaiSecurity.java\n\n------------------------------------------------------------------------\nr38924 | gjthomas@iupui.edu | 2007-11-30 15:52:57 -0500 (Fri, 30 Nov 2007) | 3 lines\n\nSAK-7924 - View Site as a different role\n\nMinor edits to make it function with 2.4.x\n------------------------------------------------------------------------\nr38925 | gjthomas@iupui.edu | 2007-11-30 16:11:52 -0500 (Fri, 30 Nov 2007) | 3 lines\n\nSAK-7924 - View Site as a different role\n\nMinor edits to make it function with 2.4.x\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gopal.ramasammycook@gmail.com Mon Dec  3 08:03:48 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 03 Dec 2007 08:03:48 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 03 Dec 2007 08:03:48 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby brazil.mail.umich.edu () with ESMTP id lB3D3mCA010248;\n\tMon, 3 Dec 2007 08:03:48 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4753FEAD.631BC.503 ; \n\t 3 Dec 2007 08:03:44 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2811D91CEA;\n\tMon,  3 Dec 2007 13:03:45 +0000 (GMT)\nMessage-ID: <200712031256.lB3CuQFu026193@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 872\n          for <source@collab.sakaiproject.org>;\n          Mon, 3 Dec 2007 13:03:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E75422BACC\n\tfor <source@collab.sakaiproject.org>; Mon,  3 Dec 2007 13:03:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB3CuQpn026195\n\tfor <source@collab.sakaiproject.org>; Mon, 3 Dec 2007 07:56:26 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB3CuQFu026193\n\tfor source@collab.sakaiproject.org; Mon, 3 Dec 2007 07:56:26 -0500\nDate: Mon, 3 Dec 2007 07:56:26 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f\nTo: source@collab.sakaiproject.org\nFrom: gopal.ramasammycook@gmail.com\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec  3 08:03:48 2007\nX-DSPAM-Confidence: 0.9812\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38944\n\nAuthor: gopal.ramasammycook@gmail.com\nDate: 2007-12-03 07:55:58 -0500 (Mon, 03 Dec 2007)\nNew Revision: 38944\n\nModified:\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/ExportResponsesBean.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacadeQueries.java\nLog:\nSAK-12142 Section Scores Export \n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom a.fish@lancaster.ac.uk Mon Dec  3 04:49:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 03 Dec 2007 04:49:50 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 03 Dec 2007 04:49:50 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby chaos.mail.umich.edu () with ESMTP id lB39nlbw011951;\n\tMon, 3 Dec 2007 04:49:47 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 4753D136.4076D.23133 ; \n\t 3 Dec 2007 04:49:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id AEA9491B81;\n\tMon,  3 Dec 2007 09:49:33 +0000 (GMT)\nMessage-ID: <200712030942.lB39gUpM025533@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 894\n          for <source@collab.sakaiproject.org>;\n          Mon, 3 Dec 2007 09:49:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E0FC22B81C\n\tfor <source@collab.sakaiproject.org>; Mon,  3 Dec 2007 09:49:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB39gUdY025535\n\tfor <source@collab.sakaiproject.org>; Mon, 3 Dec 2007 04:42:30 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB39gUpM025533\n\tfor source@collab.sakaiproject.org; Mon, 3 Dec 2007 04:42:30 -0500\nDate: Mon, 3 Dec 2007 04:42:30 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to a.fish@lancaster.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: a.fish@lancaster.ac.uk\nSubject: [sakai] svn commit: r38943 - in blog/trunk: . api-impl/src/java/uk/ac/lancs/e_science/sakaiproject/impl/blogger/persistence\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Dec  3 04:49:50 2007\nX-DSPAM-Confidence: 0.9796\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38943\n\nAuthor: a.fish@lancaster.ac.uk\nDate: 2007-12-03 04:42:12 -0500 (Mon, 03 Dec 2007)\nNew Revision: 38943\n\nModified:\nblog/trunk/.classpath\nblog/trunk/api-impl/src/java/uk/ac/lancs/e_science/sakaiproject/impl/blogger/persistence/SakaiPersistenceManager.java\nLog:\nTook out an unused import and added the snapshot db api to the eclipse classpath.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stuart.freeman@et.gatech.edu Sun Dec  2 13:25:49 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 02 Dec 2007 13:25:49 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 02 Dec 2007 13:25:49 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby godsend.mail.umich.edu () with ESMTP id lB2IPnf4009481;\n\tSun, 2 Dec 2007 13:25:49 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 4752F8A7.1F304.9584 ; \n\t 2 Dec 2007 13:25:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E20F38FADE;\n\tSun,  2 Dec 2007 18:23:42 +0000 (GMT)\nMessage-ID: <200712021818.lB2IIerk024255@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 113\n          for <source@collab.sakaiproject.org>;\n          Sun, 2 Dec 2007 18:23:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AAB1A23598\n\tfor <source@collab.sakaiproject.org>; Sun,  2 Dec 2007 18:25:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB2IIexY024257\n\tfor <source@collab.sakaiproject.org>; Sun, 2 Dec 2007 13:18:40 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB2IIerk024255\n\tfor source@collab.sakaiproject.org; Sun, 2 Dec 2007 13:18:40 -0500\nDate: Sun, 2 Dec 2007 13:18:40 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: stuart.freeman@et.gatech.edu\nSubject: [sakai] svn commit: r38942 - msgcntr/branches/sakai_2-4-x/messageforums-app/src/webapp/jsp/discussionForum/message\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Dec  2 13:25:49 2007\nX-DSPAM-Confidence: 0.9919\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38942\n\nAuthor: stuart.freeman@et.gatech.edu\nDate: 2007-12-02 13:18:36 -0500 (Sun, 02 Dec 2007)\nNew Revision: 38942\n\nModified:\nmsgcntr/branches/sakai_2-4-x/messageforums-app/src/webapp/jsp/discussionForum/message/dfAllMessages.jsp\nLog:\nSAK-11336 forums / 'read full description'\n\n--(stuart@mothra:pts/0)-----------------(/home/stuart/src/sakai_2-4-x/msgcntr)--\n--(1320:Sun,02 Dec 07:$)-- svn merge -r34560:34561 https://source.sakaiproject.org/svn/msgcntr/trunk\nU    messageforums-app/src/webapp/jsp/discussionForum/message/dfAllMessages.jsp\n--(stuart@mothra:pts/0)-----------------(/home/stuart/src/sakai_2-4-x/msgcntr)--\n--(1323:Sun,02 Dec 07:$)-- ^merge^log\nsvn log -r34560:34561 https://source.sakaiproject.org/svn/msgcntr/trunk\n------------------------------------------------------------------------\nr34561 | rjlowe@iupui.edu | 2007-08-30 09:55:04 -0400 (Thu, 30 Aug 2007) | 3 lines\n\nSAK-11336\nhttp://bugs.sakaiproject.org/jira/browse/SAK-11336\nForums / 'read full description'\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stuart.freeman@et.gatech.edu Sun Dec  2 13:21:35 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 02 Dec 2007 13:21:35 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 02 Dec 2007 13:21:35 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby brazil.mail.umich.edu () with ESMTP id lB2ILYxt000304;\n\tSun, 2 Dec 2007 13:21:34 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 4752F7A1.10CFB.22285 ; \n\t 2 Dec 2007 13:21:24 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7E69F9106A;\n\tSun,  2 Dec 2007 18:18:53 +0000 (GMT)\nMessage-ID: <200712021814.lB2IE6Jm024243@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1009\n          for <source@collab.sakaiproject.org>;\n          Sun, 2 Dec 2007 18:18:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A06672B024\n\tfor <source@collab.sakaiproject.org>; Sun,  2 Dec 2007 18:20:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB2IE6V8024245\n\tfor <source@collab.sakaiproject.org>; Sun, 2 Dec 2007 13:14:06 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB2IE6Jm024243\n\tfor source@collab.sakaiproject.org; Sun, 2 Dec 2007 13:14:06 -0500\nDate: Sun, 2 Dec 2007 13:14:06 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: stuart.freeman@et.gatech.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Dec  2 13:21:35 2007\nX-DSPAM-Confidence: 0.9922\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38941\n\nAuthor: stuart.freeman@et.gatech.edu\nDate: 2007-12-02 13:13:56 -0500 (Sun, 02 Dec 2007)\nNew Revision: 38941\n\nModified:\nmsgcntr/branches/sakai_2-4-x/messageforums-api/src/java/org/sakaiproject/api/app/messageforums/AreaManager.java\nmsgcntr/branches/sakai_2-4-x/messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/AreaManagerImpl.java\nmsgcntr/branches/sakai_2-4-x/messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/DiscussionForumServiceImpl.java\nLog:\nSAK-10415 forums and topics not copying from an existing site\n\n--(1309:Sun,02 Dec 07:$)-- svn merge -r31981:31982 https://source.sakaiproject.org/svn/msgcntr/trunk\nU    messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/DiscussionForumServiceImpl.java\nU    messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/AreaManagerImpl.java\nU    messageforums-api/src/java/org/sakaiproject/api/app/messageforums/AreaManager.java\n--(stuart@mothra:pts/0)-----------------(/home/stuart/src/sakai_2-4-x/msgcntr)--\n--(1318:Sun,02 Dec 07:$)-- ^merge^log\nsvn log -r31981:31982 https://source.sakaiproject.org/svn/msgcntr/trunk\n------------------------------------------------------------------------\nr31982 | wagnermr@iupui.edu | 2007-07-02 15:59:24 -0400 (Mon, 02 Jul 2007) | 3 lines\n\nSAK-10415\nhttp://bugs.sakaiproject.org/jira/browse/SAK-10415\nForums and Topics not copying from an existing site\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stuart.freeman@et.gatech.edu Sun Dec  2 13:18:41 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 02 Dec 2007 13:18:41 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 02 Dec 2007 13:18:41 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby godsend.mail.umich.edu () with ESMTP id lB2IIeIN006723;\n\tSun, 2 Dec 2007 13:18:40 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4752F6F8.AB4C8.24304 ; \n\t 2 Dec 2007 13:18:36 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 068DA8B75D;\n\tSun,  2 Dec 2007 18:16:05 +0000 (GMT)\nMessage-ID: <200712021802.lB2I2JQM024231@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 680\n          for <source@collab.sakaiproject.org>;\n          Sun, 2 Dec 2007 18:07:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 774BC2AFFA\n\tfor <source@collab.sakaiproject.org>; Sun,  2 Dec 2007 18:09:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB2I2KFb024233\n\tfor <source@collab.sakaiproject.org>; Sun, 2 Dec 2007 13:02:20 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB2I2JQM024231\n\tfor source@collab.sakaiproject.org; Sun, 2 Dec 2007 13:02:19 -0500\nDate: Sun, 2 Dec 2007 13:02:19 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: stuart.freeman@et.gatech.edu\nSubject: [sakai] svn commit: r38940 - msgcntr/branches/sakai_2-4-x/messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Dec  2 13:18:41 2007\nX-DSPAM-Confidence: 0.9919\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38940\n\nAuthor: stuart.freeman@et.gatech.edu\nDate: 2007-12-02 13:02:15 -0500 (Sun, 02 Dec 2007)\nNew Revision: 38940\n\nModified:\nmsgcntr/branches/sakai_2-4-x/messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/DiscussionForumServiceImpl.java\nLog:\nSAK-10455 forums and site-site import / forums do not maintain order when imported from another site\n\n--(1304:Sun,02 Dec 07:$)-- svn merge -r31828:31829 https://source.sakaiproject.org/svn/msgcntr/trunk\nU    messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/DiscussionForumServiceImpl.java\n--(stuart@mothra:pts/0)-----------------(/home/stuart/src/sakai_2-4-x/msgcntr)--\n--(1305:Sun,02 Dec 07:$)-- ^merge^log\nsvn log -r31828:31829 https://source.sakaiproject.org/svn/msgcntr/trunk\n------------------------------------------------------------------------\nr31829 | wagnermr@iupui.edu | 2007-06-26 08:26:25 -0400 (Tue, 26 Jun 2007) | 3 lines\n\nSAK-10455\nhttp://bugs.sakaiproject.org/jira/browse/SAK-10455\nforums and site-site import / forums do not maintain the same order when imported from another site\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Sun Dec  2 03:21:14 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 02 Dec 2007 03:21:14 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 02 Dec 2007 03:21:14 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby sleepers.mail.umich.edu () with ESMTP id lB28LCEm011345;\n\tSun, 2 Dec 2007 03:21:12 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 47526AF3.A04E9.24273 ; \n\t 2 Dec 2007 03:21:10 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 32EFF7130A;\n\tSun,  2 Dec 2007 08:21:11 +0000 (GMT)\nMessage-ID: <200712020814.lB28E9SI010911@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 687\n          for <source@collab.sakaiproject.org>;\n          Sun, 2 Dec 2007 08:20:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1437E2E8C7\n\tfor <source@collab.sakaiproject.org>; Sun,  2 Dec 2007 08:20:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB28EAEY010913\n\tfor <source@collab.sakaiproject.org>; Sun, 2 Dec 2007 03:14:10 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB28E9SI010911\n\tfor source@collab.sakaiproject.org; Sun, 2 Dec 2007 03:14:09 -0500\nDate: Sun, 2 Dec 2007 03:14:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Dec  2 03:21:14 2007\nX-DSPAM-Confidence: 0.9802\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38939\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-12-02 03:13:47 -0500 (Sun, 02 Dec 2007)\nNew Revision: 38939\n\nAdded:\ncontent/branches/SAK-12105/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/ThirdPartyManagerRegistrar.java\nModified:\ncontent/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF/components.xml\ncontent/branches/SAK-12105/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\ncontent/branches/SAK-12105/contentmultiplex-impl/impl/pom.xml\nLog:\nSAK-12105  Added a third party to register the ContentHostingService API Proxy with the EntityManager.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Sat Dec  1 21:21:59 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 01 Dec 2007 21:21:59 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 01 Dec 2007 21:21:59 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby godsend.mail.umich.edu () with ESMTP id lB22LwRS005809;\n\tSat, 1 Dec 2007 21:21:58 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 475216C1.715BE.7960 ; \n\t 1 Dec 2007 21:21:56 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C5EBA51679;\n\tSun,  2 Dec 2007 02:22:03 +0000 (GMT)\nMessage-ID: <200712020214.lB22EeuZ010648@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 895\n          for <source@collab.sakaiproject.org>;\n          Sun, 2 Dec 2007 02:21:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 757E82E8FC\n\tfor <source@collab.sakaiproject.org>; Sun,  2 Dec 2007 02:21:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB22EfdW010650\n\tfor <source@collab.sakaiproject.org>; Sat, 1 Dec 2007 21:14:41 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB22EeuZ010648\n\tfor source@collab.sakaiproject.org; Sat, 1 Dec 2007 21:14:40 -0500\nDate: Sat, 1 Dec 2007 21:14:40 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38938 - content/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec  1 21:21:59 2007\nX-DSPAM-Confidence: 0.9837\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38938\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-12-01 21:14:34 -0500 (Sat, 01 Dec 2007)\nNew Revision: 38938\n\nModified:\ncontent/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF/components-jcr.xml\ncontent/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF/components.xml\nLog:\nSAK-12105  Added some stuff back into components that was lost in the merge.  Like the proxy.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Sat Dec  1 18:17:26 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 01 Dec 2007 18:17:26 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 01 Dec 2007 18:17:26 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby fan.mail.umich.edu () with ESMTP id lB1NHPdS010897;\n\tSat, 1 Dec 2007 18:17:25 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 4751EB80.48B02.15251 ; \n\t 1 Dec 2007 18:17:22 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 288375C319;\n\tSat,  1 Dec 2007 23:17:19 +0000 (GMT)\nMessage-ID: <200712012310.lB1NAMKw010504@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 363\n          for <source@collab.sakaiproject.org>;\n          Sat, 1 Dec 2007 23:17:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 728232E934\n\tfor <source@collab.sakaiproject.org>; Sat,  1 Dec 2007 23:17:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB1NAMkt010506\n\tfor <source@collab.sakaiproject.org>; Sat, 1 Dec 2007 18:10:22 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB1NAMKw010504\n\tfor source@collab.sakaiproject.org; Sat, 1 Dec 2007 18:10:22 -0500\nDate: Sat, 1 Dec 2007 18:10:22 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38937 - content/branches/SAK-12105\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec  1 18:17:26 2007\nX-DSPAM-Confidence: 0.9801\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38937\n\nAuthor: aaronz@vt.edu\nDate: 2007-12-01 18:10:19 -0500 (Sat, 01 Dec 2007)\nNew Revision: 38937\n\nModified:\ncontent/branches/SAK-12105/pom.xml\nLog:\nSAK-12105: Updated base pom\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Sat Dec  1 18:09:40 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 01 Dec 2007 18:09:40 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 01 Dec 2007 18:09:40 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby chaos.mail.umich.edu () with ESMTP id lB1N9d4O025423;\n\tSat, 1 Dec 2007 18:09:39 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4751E9AE.66E9A.31605 ; \n\t 1 Dec 2007 18:09:37 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 81228903CB;\n\tSat,  1 Dec 2007 23:09:32 +0000 (GMT)\nMessage-ID: <200712012302.lB1N2Vnq010452@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 494\n          for <source@collab.sakaiproject.org>;\n          Sat, 1 Dec 2007 23:09:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 213152E924\n\tfor <source@collab.sakaiproject.org>; Sat,  1 Dec 2007 23:09:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB1N2VrV010454\n\tfor <source@collab.sakaiproject.org>; Sat, 1 Dec 2007 18:02:31 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB1N2Vnq010452\n\tfor source@collab.sakaiproject.org; Sat, 1 Dec 2007 18:02:31 -0500\nDate: Sat, 1 Dec 2007 18:02:31 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38936 - content/branches/SAK-12105/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec  1 18:09:40 2007\nX-DSPAM-Confidence: 0.8440\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38936\n\nAuthor: aaronz@vt.edu\nDate: 2007-12-01 18:02:26 -0500 (Sat, 01 Dec 2007)\nNew Revision: 38936\n\nModified:\ncontent/branches/SAK-12105/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\ncontent/branches/SAK-12105/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java\ncontent/branches/SAK-12105/content-impl/impl/src/java/org/sakaiproject/content/impl/DropboxContextObserver.java\nLog:\nSAK-12105: Merged in trunk changes to this branch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Sat Dec  1 18:09:32 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 01 Dec 2007 18:09:32 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 01 Dec 2007 18:09:32 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby mission.mail.umich.edu () with ESMTP id lB1N9VfS016313;\n\tSat, 1 Dec 2007 18:09:31 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 4751E9A5.781A8.20518 ; \n\t 1 Dec 2007 18:09:28 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A6862903C7;\n\tSat,  1 Dec 2007 23:09:23 +0000 (GMT)\nMessage-ID: <200712012302.lB1N2NLF010440@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 889\n          for <source@collab.sakaiproject.org>;\n          Sat, 1 Dec 2007 23:09:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BBC7E2E924\n\tfor <source@collab.sakaiproject.org>; Sat,  1 Dec 2007 23:09:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB1N2OQs010442\n\tfor <source@collab.sakaiproject.org>; Sat, 1 Dec 2007 18:02:24 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB1N2NLF010440\n\tfor source@collab.sakaiproject.org; Sat, 1 Dec 2007 18:02:24 -0500\nDate: Sat, 1 Dec 2007 18:02:24 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38935 - in content/branches/SAK-12105/content-impl-jcr: . impl/src/java/org/sakaiproject/content/impl pack/src/webapp/WEB-INF\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec  1 18:09:32 2007\nX-DSPAM-Confidence: 0.8442\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38935\n\nAuthor: aaronz@vt.edu\nDate: 2007-12-01 18:02:15 -0500 (Sat, 01 Dec 2007)\nNew Revision: 38935\n\nModified:\ncontent/branches/SAK-12105/content-impl-jcr/.classpath\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/BaseJCRStorage.java\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRStorage.java\ncontent/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF/components-jcr.xml\ncontent/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF/components.xml\nLog:\nSAK-12105: Merged in trunk changes to this branch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Sat Dec  1 18:09:24 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 01 Dec 2007 18:09:24 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 01 Dec 2007 18:09:24 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby faithful.mail.umich.edu () with ESMTP id lB1N9OZS000422;\n\tSat, 1 Dec 2007 18:09:24 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 4751E99B.7BB5D.26560 ; \n\t 1 Dec 2007 18:09:18 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 49BE5903C8;\n\tSat,  1 Dec 2007 23:09:11 +0000 (GMT)\nMessage-ID: <200712012302.lB1N2D3S010428@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 507\n          for <source@collab.sakaiproject.org>;\n          Sat, 1 Dec 2007 23:08:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1002A2E924\n\tfor <source@collab.sakaiproject.org>; Sat,  1 Dec 2007 23:08:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB1N2DOk010430\n\tfor <source@collab.sakaiproject.org>; Sat, 1 Dec 2007 18:02:13 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB1N2D3S010428\n\tfor source@collab.sakaiproject.org; Sat, 1 Dec 2007 18:02:13 -0500\nDate: Sat, 1 Dec 2007 18:02:13 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38934 - content/branches/SAK-12105/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec  1 18:09:24 2007\nX-DSPAM-Confidence: 0.8441\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38934\n\nAuthor: aaronz@vt.edu\nDate: 2007-12-01 18:02:10 -0500 (Sat, 01 Dec 2007)\nNew Revision: 38934\n\nModified:\ncontent/branches/SAK-12105/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/ContentHostingMultiplexService.java\nLog:\nSAK-12105: Merged in trunk changes to this branch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Sat Dec  1 18:09:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 01 Dec 2007 18:09:13 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 01 Dec 2007 18:09:13 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby sleepers.mail.umich.edu () with ESMTP id lB1N9C9L026845;\n\tSat, 1 Dec 2007 18:09:12 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 4751E993.4C6D3.2533 ; \n\t 1 Dec 2007 18:09:10 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3B44A903C2;\n\tSat,  1 Dec 2007 23:09:05 +0000 (GMT)\nMessage-ID: <200712012302.lB1N28iA010416@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 154\n          for <source@collab.sakaiproject.org>;\n          Sat, 1 Dec 2007 23:08:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 286E32E924\n\tfor <source@collab.sakaiproject.org>; Sat,  1 Dec 2007 23:08:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB1N28ak010418\n\tfor <source@collab.sakaiproject.org>; Sat, 1 Dec 2007 18:02:08 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB1N28iA010416\n\tfor source@collab.sakaiproject.org; Sat, 1 Dec 2007 18:02:08 -0500\nDate: Sat, 1 Dec 2007 18:02:08 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38933 - content/branches/SAK-12105/content-api/api/src/java/org/sakaiproject/content/api\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec  1 18:09:13 2007\nX-DSPAM-Confidence: 0.8471\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38933\n\nAuthor: aaronz@vt.edu\nDate: 2007-12-01 18:02:04 -0500 (Sat, 01 Dec 2007)\nNew Revision: 38933\n\nModified:\ncontent/branches/SAK-12105/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingService.java\nLog:\nSAK-12105: Merged in trunk changes to this branch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Sat Dec  1 18:09:10 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 01 Dec 2007 18:09:10 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 01 Dec 2007 18:09:10 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby jacknife.mail.umich.edu () with ESMTP id lB1N99sB017723;\n\tSat, 1 Dec 2007 18:09:09 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 4751E98F.C9155.6303 ; \n\t 1 Dec 2007 18:09:06 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 277DF507C8;\n\tSat,  1 Dec 2007 23:08:59 +0000 (GMT)\nMessage-ID: <200712012302.lB1N21Jr010404@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 20\n          for <source@collab.sakaiproject.org>;\n          Sat, 1 Dec 2007 23:08:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8BACC2E924\n\tfor <source@collab.sakaiproject.org>; Sat,  1 Dec 2007 23:08:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB1N21rg010406\n\tfor <source@collab.sakaiproject.org>; Sat, 1 Dec 2007 18:02:01 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB1N21Jr010404\n\tfor source@collab.sakaiproject.org; Sat, 1 Dec 2007 18:02:01 -0500\nDate: Sat, 1 Dec 2007 18:02:01 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38932 - content/branches/SAK-12105/content-jcr-migration-api\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec  1 18:09:10 2007\nX-DSPAM-Confidence: 0.8483\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38932\n\nAuthor: aaronz@vt.edu\nDate: 2007-12-01 18:01:58 -0500 (Sat, 01 Dec 2007)\nNew Revision: 38932\n\nModified:\ncontent/branches/SAK-12105/content-jcr-migration-api/.classpath\nLog:\nSAK-12105: Merged in trunk changes to this branch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Sat Dec  1 14:18:55 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 01 Dec 2007 14:18:55 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 01 Dec 2007 14:18:55 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby sleepers.mail.umich.edu () with ESMTP id lB1JIsDT014614;\n\tSat, 1 Dec 2007 14:18:54 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 4751B398.639C5.32443 ; \n\t 1 Dec 2007 14:18:51 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id ABE8C8FD66;\n\tSat,  1 Dec 2007 19:18:35 +0000 (GMT)\nMessage-ID: <200712011911.lB1JBd2O010155@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 297\n          for <source@collab.sakaiproject.org>;\n          Sat, 1 Dec 2007 19:18:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 97C132DEF6\n\tfor <source@collab.sakaiproject.org>; Sat,  1 Dec 2007 19:18:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB1JBdbo010157\n\tfor <source@collab.sakaiproject.org>; Sat, 1 Dec 2007 14:11:39 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB1JBd2O010155\n\tfor source@collab.sakaiproject.org; Sat, 1 Dec 2007 14:11:39 -0500\nDate: Sat, 1 Dec 2007 14:11:39 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec  1 14:18:55 2007\nX-DSPAM-Confidence: 0.8445\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38931\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-12-01 14:11:22 -0500 (Sat, 01 Dec 2007)\nNew Revision: 38931\n\nModified:\ncontent/trunk/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingService.java\ncontent/trunk/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/BaseJCRCollectionEdit.java\ncontent/trunk/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/BaseJCRStorage.java\ncontent/trunk/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRContentService.java\ncontent/trunk/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRStorage.java\ncontent/trunk/content-impl-jcr/pack/src/webapp/WEB-INF/components-jcr.xml\ncontent/trunk/content-impl-jcr/pack/src/webapp/WEB-INF/components.xml\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\ncontent/trunk/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/ContentHostingMultiplexService.java\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-12311\n\nFixed the various logging issues.\nAdded PrimaryContentService to indicate the primary version, which needs to be in the API because the ContentHostingMultiplexer service binds to it throught he API. \nIt cant bind to the impl.\n\n\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Sat Dec  1 00:17:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 01 Dec 2007 00:17:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 01 Dec 2007 00:17:02 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby panther.mail.umich.edu () with ESMTP id lB15H0WO029448;\n\tSat, 1 Dec 2007 00:17:00 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 4750EE46.DE2B8.28050 ; \n\t 1 Dec 2007 00:16:57 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 52BF18F4F8;\n\tSat,  1 Dec 2007 05:16:49 +0000 (GMT)\nMessage-ID: <200712010509.lB159lt8009136@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 909\n          for <source@collab.sakaiproject.org>;\n          Sat, 1 Dec 2007 05:16:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6EB3C2DFCB\n\tfor <source@collab.sakaiproject.org>; Sat,  1 Dec 2007 05:16:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB159lZ2009138\n\tfor <source@collab.sakaiproject.org>; Sat, 1 Dec 2007 00:09:47 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB159lt8009136\n\tfor source@collab.sakaiproject.org; Sat, 1 Dec 2007 00:09:47 -0500\nDate: Sat, 1 Dec 2007 00:09:47 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38930 - content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Dec  1 00:17:02 2007\nX-DSPAM-Confidence: 0.8472\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38930\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-12-01 00:09:42 -0500 (Sat, 01 Dec 2007)\nNew Revision: 38930\n\nModified:\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRContentService.java\nLog:\nSAK-12105 Fixed getCollectionSize.  I was accidentally returning the total number for each recursive\ncall, instead of just the count for that recursion.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Fri Nov 30 20:08:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 30 Nov 2007 20:08:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 30 Nov 2007 20:08:51 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby chaos.mail.umich.edu () with ESMTP id lB118ois000537;\n\tFri, 30 Nov 2007 20:08:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 4750B41C.7AD14.20043 ; \n\t30 Nov 2007 20:08:47 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D90588F401;\n\tSat,  1 Dec 2007 00:40:45 +0000 (GMT)\nMessage-ID: <200712010101.lB111m8a008768@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 798\n          for <source@collab.sakaiproject.org>;\n          Sat, 1 Dec 2007 00:40:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8C4412D8F3\n\tfor <source@collab.sakaiproject.org>; Sat,  1 Dec 2007 01:08:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lB111mLQ008770\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 20:01:48 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lB111m8a008768\n\tfor source@collab.sakaiproject.org; Fri, 30 Nov 2007 20:01:48 -0500\nDate: Fri, 30 Nov 2007 20:01:48 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 30 20:08:51 2007\nX-DSPAM-Confidence: 0.9912\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38929\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-11-30 20:01:23 -0500 (Fri, 30 Nov 2007)\nNew Revision: 38929\n\nModified:\ncontent/branches/SAK-12105/content-impl-jcr/impl/pom.xml\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/CHStoJCRMigratorImpl.java\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/ContentToJCRCopierImpl.java\ncontent/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF/components-jcr.xml\ncontent/branches/SAK-12105/content-jcr-migration-api/pom.xml\ncontent/branches/SAK-12105/content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api/ContentToJCRCopier.java\nLog:\nSAK-12105 Trying to work on some issues with migrating content, \nnamely the repository locking (maybe deadlocking), and my db going\ncabberwonky. Oddly enough, it seems to work ok when I'm also running\nthe load tests.  In progress.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Nov 30 17:10:48 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 30 Nov 2007 17:10:48 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 30 Nov 2007 17:10:48 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby flawless.mail.umich.edu () with ESMTP id lAUMAl4t023193;\n\tFri, 30 Nov 2007 17:10:47 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 47508A60.9303A.5858 ; \n\t30 Nov 2007 17:10:43 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A0C1E8F106;\n\tFri, 30 Nov 2007 22:10:39 +0000 (GMT)\nMessage-ID: <200711302203.lAUM3iFs008544@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 516\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 22:10:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AE6A02D4A0\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 22:10:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUM3i9i008546\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 17:03:44 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUM3iFs008544\n\tfor source@collab.sakaiproject.org; Fri, 30 Nov 2007 17:03:44 -0500\nDate: Fri, 30 Nov 2007 17:03:44 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38928 - in assignment/trunk: . assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 30 17:10:48 2007\nX-DSPAM-Confidence: 0.8476\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38928\n\nAuthor: zqian@umich.edu\nDate: 2007-11-30 17:03:42 -0500 (Fri, 30 Nov 2007)\nNew Revision: 38928\n\nModified:\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/upgradeschema.config\nassignment/trunk/upgradeschema_mysql.config\nLog:\nfix to SAK-12289, remove the unnecessary checkins made in 38927\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Nov 30 17:02:54 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 30 Nov 2007 17:02:54 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 30 Nov 2007 17:02:54 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby brazil.mail.umich.edu () with ESMTP id lAUM2rsD025095;\n\tFri, 30 Nov 2007 17:02:53 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 47508883.2C473.26487 ; \n\t30 Nov 2007 17:02:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B83B28F338;\n\tFri, 30 Nov 2007 22:02:41 +0000 (GMT)\nMessage-ID: <200711302155.lAULtlwK008530@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 220\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 22:02:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9AAAB2D4A0\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 22:02:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAULtleP008532\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 16:55:47 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAULtlwK008530\n\tfor source@collab.sakaiproject.org; Fri, 30 Nov 2007 16:55:47 -0500\nDate: Fri, 30 Nov 2007 16:55:47 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 30 17:02:54 2007\nX-DSPAM-Confidence: 0.9848\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38927\n\nAuthor: zqian@umich.edu\nDate: 2007-11-30 16:55:44 -0500 (Fri, 30 Nov 2007)\nNew Revision: 38927\n\nModified:\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/upgradeschema.config\nassignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nassignment/trunk/upgradeschema_mysql.config\nLog:\nmerge fix to SAK-12289 into trunk:svn merge -r 38925:38926 https://source.sakaiproject.org/svn/assignment/branches/post-2-4/\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Nov 30 17:00:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 30 Nov 2007 17:00:13 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 30 Nov 2007 17:00:13 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby mission.mail.umich.edu () with ESMTP id lAUM0B3w013025;\n\tFri, 30 Nov 2007 17:00:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 475087E4.DF273.23722 ; \n\t30 Nov 2007 17:00:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 813298ED54;\n\tFri, 30 Nov 2007 21:59:57 +0000 (GMT)\nMessage-ID: <200711302153.lAULr1pU008518@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 88\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 21:59:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1EFD22D4A0\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 21:59:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAULr2OT008520\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 16:53:02 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAULr1pU008518\n\tfor source@collab.sakaiproject.org; Fri, 30 Nov 2007 16:53:01 -0500\nDate: Fri, 30 Nov 2007 16:53:01 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38926 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 30 17:00:13 2007\nX-DSPAM-Confidence: 0.7726\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38926\n\nAuthor: zqian@umich.edu\nDate: 2007-11-30 16:52:59 -0500 (Fri, 30 Nov 2007)\nNew Revision: 38926\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nFix to SAK-12289:Modifications to files are not saved in Upload All for provided students when EID does not equal Display ID\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Fri Nov 30 16:19:32 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 30 Nov 2007 16:19:32 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 30 Nov 2007 16:19:32 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby panther.mail.umich.edu () with ESMTP id lAULJVo5024358;\n\tFri, 30 Nov 2007 16:19:31 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 47507E59.5CA77.17729 ; \n\t30 Nov 2007 16:19:25 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5DC5C510A9;\n\tFri, 30 Nov 2007 21:18:46 +0000 (GMT)\nMessage-ID: <200711302111.lAULBsLr008442@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 618\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 21:18:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 178402D4FB\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 21:18:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAULBst7008444\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 16:11:54 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAULBsLr008442\n\tfor source@collab.sakaiproject.org; Fri, 30 Nov 2007 16:11:54 -0500\nDate: Fri, 30 Nov 2007 16:11:54 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 30 16:19:32 2007\nX-DSPAM-Confidence: 0.9831\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38925\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-11-30 16:11:52 -0500 (Fri, 30 Nov 2007)\nNew Revision: 38925\n\nModified:\nauthz/branches/SAK-7924_2-4-x/authz-api/api/src/java/org/sakaiproject/authz/api/SecurityService.java\nauthz/branches/SAK-7924_2-4-x/authz-api/api/src/java/org/sakaiproject/authz/cover/SecurityService.java\nauthz/branches/SAK-7924_2-4-x/authz-impl/impl/src/java/org/sakaiproject/authz/impl/SakaiSecurity.java\nLog:\nSAK-7924 - View Site as a different role\n\nMinor edits to make it function with 2.4.x\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Fri Nov 30 16:00:14 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 30 Nov 2007 16:00:14 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 30 Nov 2007 16:00:14 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby mission.mail.umich.edu () with ESMTP id lAUL0DBF030349;\n\tFri, 30 Nov 2007 16:00:13 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 475079CD.EC3EC.9402 ; \n\t30 Nov 2007 16:00:03 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6B80C8F26E;\n\tFri, 30 Nov 2007 20:59:54 +0000 (GMT)\nMessage-ID: <200711302052.lAUKqxFb008414@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 239\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 20:59:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 218B12D4C8\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 20:59:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUKqxcG008416\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 15:52:59 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUKqxFb008414\n\tfor source@collab.sakaiproject.org; Fri, 30 Nov 2007 15:52:59 -0500\nDate: Fri, 30 Nov 2007 15:52:59 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r38924 - authz/branches/SAK-7924_2-4-x/authz-impl/impl/src/java/org/sakaiproject/authz/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 30 16:00:14 2007\nX-DSPAM-Confidence: 0.9819\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38924\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-11-30 15:52:57 -0500 (Fri, 30 Nov 2007)\nNew Revision: 38924\n\nModified:\nauthz/branches/SAK-7924_2-4-x/authz-impl/impl/src/java/org/sakaiproject/authz/impl/DbAuthzGroupService.java\nLog:\nSAK-7924 - View Site as a different role\n\nMinor edits to make it function with 2.4.x\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Fri Nov 30 15:34:05 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 30 Nov 2007 15:34:05 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 30 Nov 2007 15:34:05 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby flawless.mail.umich.edu () with ESMTP id lAUKY42g017753;\n\tFri, 30 Nov 2007 15:34:04 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 475073B0.A8590.21836 ; \n\t30 Nov 2007 15:33:57 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DFD5B83D1C;\n\tFri, 30 Nov 2007 20:33:48 +0000 (GMT)\nMessage-ID: <200711302027.lAUKR4qj008389@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 760\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 20:33:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 999C52D542\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 20:33:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUKR4Hf008391\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 15:27:04 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUKR4qj008389\n\tfor source@collab.sakaiproject.org; Fri, 30 Nov 2007 15:27:04 -0500\nDate: Fri, 30 Nov 2007 15:27:04 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 30 15:34:05 2007\nX-DSPAM-Confidence: 0.6525\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38923\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-30 15:27:02 -0500 (Fri, 30 Nov 2007)\nNew Revision: 38923\n\nAdded:\nportal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchHandler.java\nportal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchOutHandler.java\nModified:\nportal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java\nportal/branches/oncourse_opc_122007/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java\nportal/branches/oncourse_opc_122007/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm\nLog:\nsvn merge -c 38917 https://source.sakaiproject.org/svn/portal/branches/SAK-7924\nC    portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java\nA    portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchOutHandler.java\nA    portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchHandler.java\nU    portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java\nC    portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm\n\nsvn log -r 38917 https://source.sakaiproject.org/svn/portal/branches/SAK-7924\n------------------------------------------------------------------------\nr38917 | gjthomas@iupui.edu | 2007-11-30 11:19:10 -0500 (Fri, 30 Nov 2007) | 1 line\n\nSAK-7924 - View Site in a different role\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Fri Nov 30 15:23:16 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 30 Nov 2007 15:23:16 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 30 Nov 2007 15:23:16 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby brazil.mail.umich.edu () with ESMTP id lAUKNFUx004398;\n\tFri, 30 Nov 2007 15:23:15 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 47507122.BAAD4.26458 ; \n\t30 Nov 2007 15:23:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 57A3672DBD;\n\tFri, 30 Nov 2007 20:22:54 +0000 (GMT)\nMessage-ID: <200711302016.lAUKG9Gd008319@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 646\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 20:22:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0A14A2D0B3\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 20:22:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUKG9kp008321\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 15:16:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUKG9Gd008319\n\tfor source@collab.sakaiproject.org; Fri, 30 Nov 2007 15:16:09 -0500\nDate: Fri, 30 Nov 2007 15:16:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38922 - authz/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 30 15:23:16 2007\nX-DSPAM-Confidence: 0.8434\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38922\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-30 15:16:08 -0500 (Fri, 30 Nov 2007)\nNew Revision: 38922\n\nAdded:\nauthz/branches/SAK-7924_2-4-x/\nLog:\nCreating another branch for authz against 2.4.x from r37756\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Nov 30 15:13:45 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 30 Nov 2007 15:13:45 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 30 Nov 2007 15:13:45 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby chaos.mail.umich.edu () with ESMTP id lAUKDikG017604;\n\tFri, 30 Nov 2007 15:13:44 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 47506EEE.72A30.24794 ; \n\t30 Nov 2007 15:13:38 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3FA61555A1;\n\tFri, 30 Nov 2007 20:13:31 +0000 (GMT)\nMessage-ID: <200711302006.lAUK6eRT008307@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 868\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 20:13:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 902912D501\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 20:13:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUK6ebp008309\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 15:06:40 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUK6eRT008307\n\tfor source@collab.sakaiproject.org; Fri, 30 Nov 2007 15:06:40 -0500\nDate: Fri, 30 Nov 2007 15:06:40 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r38921 - oncourse/trunk/src/jobscheduler/scheduler-component-shared/src/java/org/sakaiproject/component/app/scheduler/jobs\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 30 15:13:45 2007\nX-DSPAM-Confidence: 0.9792\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38921\n\nAuthor: cwen@iupui.edu\nDate: 2007-11-30 15:06:38 -0500 (Fri, 30 Nov 2007)\nNew Revision: 38921\n\nModified:\noncourse/trunk/src/jobscheduler/scheduler-component-shared/src/java/org/sakaiproject/component/app/scheduler/jobs/Spring2008CourseSync.java\nLog:\nONC-260, more for spring semester.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Fri Nov 30 14:28:31 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 30 Nov 2007 14:28:31 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 30 Nov 2007 14:28:31 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby faithful.mail.umich.edu () with ESMTP id lAUJSU9L014766;\n\tFri, 30 Nov 2007 14:28:30 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 47506455.CA7E8.6095 ; \n\t30 Nov 2007 14:28:25 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4871C8F124;\n\tFri, 30 Nov 2007 19:28:20 +0000 (GMT)\nMessage-ID: <200711301921.lAUJLUqQ008255@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 126\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 19:27:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6D5D32D533\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 19:28:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUJLUnn008257\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 14:21:30 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUJLUqQ008255\n\tfor source@collab.sakaiproject.org; Fri, 30 Nov 2007 14:21:30 -0500\nDate: Fri, 30 Nov 2007 14:21:30 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38920 - portal/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 30 14:28:31 2007\nX-DSPAM-Confidence: 0.8469\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38920\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-30 14:21:29 -0500 (Fri, 30 Nov 2007)\nNew Revision: 38920\n\nAdded:\nportal/branches/oncourse_opc_122007/\nLog:\nCreating a new branch for opc deliverables, created from sakai_2-4-x @r31545\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Fri Nov 30 14:27:18 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 30 Nov 2007 14:27:18 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 30 Nov 2007 14:27:18 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby panther.mail.umich.edu () with ESMTP id lAUJRHw9011547;\n\tFri, 30 Nov 2007 14:27:17 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 4750640E.403A5.10331 ; \n\t30 Nov 2007 14:27:13 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DDB6A8F0E6;\n\tFri, 30 Nov 2007 19:27:04 +0000 (GMT)\nMessage-ID: <200711301920.lAUJKDHG008243@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 137\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 19:26:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 116A72D508\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 19:26:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUJKDjd008245\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 14:20:13 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUJKDHG008243\n\tfor source@collab.sakaiproject.org; Fri, 30 Nov 2007 14:20:13 -0500\nDate: Fri, 30 Nov 2007 14:20:13 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38919 - authz/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 30 14:27:18 2007\nX-DSPAM-Confidence: 0.7550\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38919\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-30 14:20:12 -0500 (Fri, 30 Nov 2007)\nNew Revision: 38919\n\nAdded:\nauthz/branches/oncourse_opc_122007/\nLog:\nCreating a new branch for opc deliverables, created from sakai_2-4-x @r28692\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Nov 30 12:14:05 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 30 Nov 2007 12:14:05 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 30 Nov 2007 12:14:05 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby panther.mail.umich.edu () with ESMTP id lAUHE3UK020194;\n\tFri, 30 Nov 2007 12:14:03 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 475044D4.EEADD.1985 ; \n\t30 Nov 2007 12:13:59 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A71CA8EECB;\n\tFri, 30 Nov 2007 17:13:52 +0000 (GMT)\nMessage-ID: <200711301707.lAUH7Iee008149@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 491\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 17:13:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 733332502E\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 17:13:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUH7INB008151\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 12:07:18 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUH7Iee008149\n\tfor source@collab.sakaiproject.org; Fri, 30 Nov 2007 12:07:18 -0500\nDate: Fri, 30 Nov 2007 12:07:18 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r38918 - oncourse/trunk/src/jobscheduler/scheduler-component-shared/src/java/org/sakaiproject/component/app/scheduler/jobs\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 30 12:14:05 2007\nX-DSPAM-Confidence: 0.9792\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38918\n\nAuthor: cwen@iupui.edu\nDate: 2007-11-30 12:07:16 -0500 (Fri, 30 Nov 2007)\nNew Revision: 38918\n\nModified:\noncourse/trunk/src/jobscheduler/scheduler-component-shared/src/java/org/sakaiproject/component/app/scheduler/jobs/Fall2007CourseSync.java\noncourse/trunk/src/jobscheduler/scheduler-component-shared/src/java/org/sakaiproject/component/app/scheduler/jobs/Spring2008CourseSync.java\nLog:\nmore for ONC-260. revised for spring 2008 too.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Fri Nov 30 11:26:20 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 30 Nov 2007 11:26:20 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 30 Nov 2007 11:26:20 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby casino.mail.umich.edu () with ESMTP id lAUGQIhF005995;\n\tFri, 30 Nov 2007 11:26:18 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4750398B.7BAE0.13197 ; \n\t30 Nov 2007 11:25:50 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 54F63674E5;\n\tFri, 30 Nov 2007 16:25:44 +0000 (GMT)\nMessage-ID: <200711301619.lAUGJCWq008096@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 984\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 16:25:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D64D52D544\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 16:25:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUGJC7s008098\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 11:19:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUGJCWq008096\n\tfor source@collab.sakaiproject.org; Fri, 30 Nov 2007 11:19:12 -0500\nDate: Fri, 30 Nov 2007 11:19:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 30 11:26:20 2007\nX-DSPAM-Confidence: 0.6935\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38917\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-11-30 11:19:10 -0500 (Fri, 30 Nov 2007)\nNew Revision: 38917\n\nAdded:\nportal/branches/SAK-7924/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchHandler.java\nportal/branches/SAK-7924/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/RoleSwitchOutHandler.java\nModified:\nportal/branches/SAK-7924/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java\nportal/branches/SAK-7924/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java\nportal/branches/SAK-7924/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm\nLog:\nSAK-7924 - View Site in a different role\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Fri Nov 30 11:25:57 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 30 Nov 2007 11:25:57 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 30 Nov 2007 11:25:57 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby jacknife.mail.umich.edu () with ESMTP id lAUGPuvH020925;\n\tFri, 30 Nov 2007 11:25:56 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4750398D.BBA8.815 ; \n\t30 Nov 2007 11:25:51 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8B8898EE2F;\n\tFri, 30 Nov 2007 16:25:44 +0000 (GMT)\nMessage-ID: <200711301619.lAUGJ9Nh008084@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 575\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 16:25:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A14862D544\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 16:25:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUGJ9Iu008086\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 11:19:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUGJ9Nh008084\n\tfor source@collab.sakaiproject.org; Fri, 30 Nov 2007 11:19:09 -0500\nDate: Fri, 30 Nov 2007 11:19:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 30 11:25:57 2007\nX-DSPAM-Confidence: 0.8429\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38916\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-11-30 11:19:06 -0500 (Fri, 30 Nov 2007)\nNew Revision: 38916\n\nModified:\nauthz/branches/SAK-7924/authz-api/api/src/java/org/sakaiproject/authz/api/SecurityService.java\nauthz/branches/SAK-7924/authz-api/api/src/java/org/sakaiproject/authz/cover/SecurityService.java\nauthz/branches/SAK-7924/authz-impl/impl/src/java/org/sakaiproject/authz/impl/DbAuthzGroupService.java\nauthz/branches/SAK-7924/authz-impl/impl/src/java/org/sakaiproject/authz/impl/DbAuthzGroupSql.java\nauthz/branches/SAK-7924/authz-impl/impl/src/java/org/sakaiproject/authz/impl/DbAuthzGroupSqlDefault.java\nauthz/branches/SAK-7924/authz-impl/impl/src/java/org/sakaiproject/authz/impl/SakaiSecurity.java\nLog:\nSAK-7924 - View Site in a different role\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Nov 30 11:14:44 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 30 Nov 2007 11:14:44 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 30 Nov 2007 11:14:44 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby casino.mail.umich.edu () with ESMTP id lAUGEh9c029657;\n\tFri, 30 Nov 2007 11:14:43 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 475036EA.F1E4C.29213 ; \n\t30 Nov 2007 11:14:37 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0672A89AA2;\n\tFri, 30 Nov 2007 16:14:30 +0000 (GMT)\nMessage-ID: <200711301608.lAUG85cG008027@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 331\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 16:14:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 50ABB2D51D\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 16:14:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUG85i4008029\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 11:08:05 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUG85cG008027\n\tfor source@collab.sakaiproject.org; Fri, 30 Nov 2007 11:08:05 -0500\nDate: Fri, 30 Nov 2007 11:08:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r38915 - oncourse/branches/sakai_2-4-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 30 11:14:44 2007\nX-DSPAM-Confidence: 0.9793\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38915\n\nAuthor: cwen@iupui.edu\nDate: 2007-11-30 11:08:04 -0500 (Fri, 30 Nov 2007)\nNew Revision: 38915\n\nModified:\noncourse/branches/sakai_2-4-x/\nLog:\nset prop\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Fri Nov 30 11:00:57 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 30 Nov 2007 11:00:57 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 30 Nov 2007 11:00:57 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby sleepers.mail.umich.edu () with ESMTP id lAUG0uhI016410;\n\tFri, 30 Nov 2007 11:00:56 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 475033AF.8E5AA.9061 ; \n\t30 Nov 2007 11:00:53 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1FB4B64B62;\n\tFri, 30 Nov 2007 16:00:46 +0000 (GMT)\nMessage-ID: <200711301554.lAUFsLqg008005@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 314\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 16:00:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id F35CA2D511\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 16:00:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUFsL6c008007\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 10:54:21 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUFsLqg008005\n\tfor source@collab.sakaiproject.org; Fri, 30 Nov 2007 10:54:21 -0500\nDate: Fri, 30 Nov 2007 10:54:21 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38914 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 30 11:00:57 2007\nX-DSPAM-Confidence: 0.9780\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38914\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-30 10:54:17 -0500 (Fri, 30 Nov 2007)\nNew Revision: 38914\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nRevving up gradebook to pick up SAK-12091 since SAK-12114 needed it\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Fri Nov 30 10:59:49 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 30 Nov 2007 10:59:49 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 30 Nov 2007 10:59:49 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby fan.mail.umich.edu () with ESMTP id lAUFxj8x005365;\n\tFri, 30 Nov 2007 10:59:45 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 47503358.8FD45.30940 ; \n\t30 Nov 2007 10:59:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B69F68ED73;\n\tFri, 30 Nov 2007 15:59:09 +0000 (GMT)\nMessage-ID: <200711301552.lAUFqheh007986@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 860\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 15:55:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 93B5F2D511\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 15:58:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUFqhrb007988\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 10:52:43 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUFqheh007986\n\tfor source@collab.sakaiproject.org; Fri, 30 Nov 2007 10:52:43 -0500\nDate: Fri, 30 Nov 2007 10:52:43 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 30 10:59:49 2007\nX-DSPAM-Confidence: 0.7615\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38913\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-30 10:52:40 -0500 (Fri, 30 Nov 2007)\nNew Revision: 38913\n\nAdded:\ngradebook/branches/oncourse_opc_122007/service/api/src/java/org/sakaiproject/service/gradebook/shared/MultipleAssignmentSavingException.java\nModified:\ngradebook/branches/oncourse_opc_122007/app/business/src/java/org/sakaiproject/tool/gradebook/business/GradebookManager.java\ngradebook/branches/oncourse_opc_122007/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\ngradebook/branches/oncourse_opc_122007/app/standalone-app/src/test/org/sakaiproject/tool/gradebook/test/GradebookManagerOPCTest.java\nLog:\nsvn merge -c 37674 https://source.sakaiproject.org/svn/gradebook/trunk\nU    app/standalone-app/src/test/org/sakaiproject/tool/gradebook/test/GradebookManagerOPCTest.java\nU    app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\nU    app/business/src/java/org/sakaiproject/tool/gradebook/business/GradebookManager.java\nA    service/api/src/java/org/sakaiproject/service/gradebook/shared/MultipleAssignmentSavingException.java\n\nsvn log -r 37674 https://source.sakaiproject.org/svn/gradebook/trunk\n------------------------------------------------------------------------\nr37674 | cwen@iupui.edu | 2007-10-31 16:44:59 -0400 (Wed, 31 Oct 2007) | 5 lines\n\nhttp://128.196.219.68/jira/browse/SAK-12091\nSAK-12091\n=>\nadd createAssignments and checkValidName methods to GradebookManager.\nalso add MultipleAssignmentSavingException.\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Fri Nov 30 10:40:21 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 30 Nov 2007 10:40:21 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 30 Nov 2007 10:40:21 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby jacknife.mail.umich.edu () with ESMTP id lAUFeKmP025558;\n\tFri, 30 Nov 2007 10:40:20 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 47502EDB.2B512.9988 ; \n\t30 Nov 2007 10:40:14 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C86EC8EBEB;\n\tFri, 30 Nov 2007 15:36:11 +0000 (GMT)\nMessage-ID: <200711301533.lAUFXclT007950@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 237\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 15:35:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D6D9F1D609\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 15:39:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUFXcZP007952\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 10:33:38 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUFXclT007950\n\tfor source@collab.sakaiproject.org; Fri, 30 Nov 2007 10:33:38 -0500\nDate: Fri, 30 Nov 2007 10:33:38 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38912 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 30 10:40:21 2007\nX-DSPAM-Confidence: 0.9800\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38912\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-30 10:33:37 -0500 (Fri, 30 Nov 2007)\nNew Revision: 38912\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdating msgcntr externals\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Fri Nov 30 10:37:05 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 30 Nov 2007 10:37:05 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 30 Nov 2007 10:37:05 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby score.mail.umich.edu () with ESMTP id lAUFb4gd007578;\n\tFri, 30 Nov 2007 10:37:04 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 47502E1B.2F244.29193 ; \n\t30 Nov 2007 10:37:02 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CCB818EC84;\n\tFri, 30 Nov 2007 15:32:47 +0000 (GMT)\nMessage-ID: <200711301530.lAUFUWRS007935@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 650\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 15:32:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D1DE82CCF8\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 15:36:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUFUWnA007937\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 10:30:32 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUFUWRS007935\n\tfor source@collab.sakaiproject.org; Fri, 30 Nov 2007 10:30:32 -0500\nDate: Fri, 30 Nov 2007 10:30:32 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38911 - in msgcntr/branches/oncourse_opc_122007/messageforums-app: . src/java/org/sakaiproject/tool/messageforums\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 30 10:37:05 2007\nX-DSPAM-Confidence: 0.9797\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38911\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-30 10:30:29 -0500 (Fri, 30 Nov 2007)\nNew Revision: 38911\n\nModified:\nmsgcntr/branches/oncourse_opc_122007/messageforums-app/project.xml\nmsgcntr/branches/oncourse_opc_122007/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java\nLog:\nSAK-12073\nRemoving some event stuff that crept in by mistake\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Fri Nov 30 10:21:12 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 30 Nov 2007 10:21:12 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 30 Nov 2007 10:21:12 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby flawless.mail.umich.edu () with ESMTP id lAUFLAQo011075;\n\tFri, 30 Nov 2007 10:21:10 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 47502A5D.5402C.9900 ; \n\t30 Nov 2007 10:21:05 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C02688EB9C;\n\tFri, 30 Nov 2007 15:20:23 +0000 (GMT)\nMessage-ID: <200711301514.lAUFE4bH007874@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 691\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 15:19:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9F5CFB253\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 15:20:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUFE47L007876\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 10:14:04 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUFE4bH007874\n\tfor source@collab.sakaiproject.org; Fri, 30 Nov 2007 10:14:04 -0500\nDate: Fri, 30 Nov 2007 10:14:04 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [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/!\n 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/!\n src/java/org/sakaiproject/emailtemplateservice email-template-!\n service/\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 30 10:21:12 2007\nX-DSPAM-Confidence: 0.8468\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn?root=contrib&view=rev&rev=43929\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-11-30 10:12:23 -0500 (Fri, 30 Nov 2007)\nNew Revision: 43929\n\nAdded:\nuct/email-template-service/\nuct/email-template-service/branches/\nuct/email-template-service/tags/\nuct/email-template-service/trunk/\nuct/email-template-service/trunk/.classpath\nuct/email-template-service/trunk/.project\nuct/email-template-service/trunk/.sakaiapp\nuct/email-template-service/trunk/.svnignore\nuct/email-template-service/trunk/README.txt\nuct/email-template-service/trunk/api/\nuct/email-template-service/trunk/api/pom.xml\nuct/email-template-service/trunk/api/project.xml\nuct/email-template-service/trunk/api/src/\nuct/email-template-service/trunk/api/src/java/\nuct/email-template-service/trunk/api/src/java/org/\nuct/email-template-service/trunk/api/src/java/org/sakaiproject/\nuct/email-template-service/trunk/api/src/java/org/sakaiproject/emailtemplateservice/\nuct/email-template-service/trunk/api/src/java/org/sakaiproject/emailtemplateservice/dao/\nuct/email-template-service/trunk/api/src/java/org/sakaiproject/emailtemplateservice/dao/EmailTemplateServiceDao.java\nuct/email-template-service/trunk/api/src/java/org/sakaiproject/emailtemplateservice/hbm/\nuct/email-template-service/trunk/api/src/java/org/sakaiproject/emailtemplateservice/hbm/EmailTemplate.hbm.xml\nuct/email-template-service/trunk/api/src/java/org/sakaiproject/emailtemplateservice/model/\nuct/email-template-service/trunk/api/src/java/org/sakaiproject/emailtemplateservice/model/EmailTemplate.java\nuct/email-template-service/trunk/api/src/java/org/sakaiproject/emailtemplateservice/model/RenderedTemplate.java\nuct/email-template-service/trunk/api/src/java/org/sakaiproject/emailtemplateservice/service/\nuct/email-template-service/trunk/api/src/java/org/sakaiproject/emailtemplateservice/service/EmailTemplateService.java\nuct/email-template-service/trunk/emailtemplateservce-shared-deploy/\nuct/email-template-service/trunk/emailtemplateservce-shared-deploy/pom.xml\nuct/email-template-service/trunk/impl/\nuct/email-template-service/trunk/impl/pom.xml\nuct/email-template-service/trunk/impl/project.xml\nuct/email-template-service/trunk/impl/src/\nuct/email-template-service/trunk/impl/src/java/\nuct/email-template-service/trunk/impl/src/java/org/\nuct/email-template-service/trunk/impl/src/java/org/sakaiproject/\nuct/email-template-service/trunk/impl/src/java/org/sakaiproject/emailtemplateservice/\nuct/email-template-service/trunk/impl/src/java/org/sakaiproject/emailtemplateservice/dao/\nuct/email-template-service/trunk/impl/src/java/org/sakaiproject/emailtemplateservice/dao/impl/\nuct/email-template-service/trunk/impl/src/java/org/sakaiproject/emailtemplateservice/dao/impl/EmailTemplateServiceDaoImpl.java\nuct/email-template-service/trunk/impl/src/java/org/sakaiproject/emailtemplateservice/service/\nuct/email-template-service/trunk/impl/src/java/org/sakaiproject/emailtemplateservice/service/impl/\nuct/email-template-service/trunk/impl/src/java/org/sakaiproject/emailtemplateservice/service/impl/EmailTemplateServiceImpl.java\nuct/email-template-service/trunk/impl/src/java/org/sakaiproject/emailtemplateservice/util/\nuct/email-template-service/trunk/impl/src/java/org/sakaiproject/emailtemplateservice/util/TextTemplateLogicUtils.java\nuct/email-template-service/trunk/pack/\nuct/email-template-service/trunk/pack/pom.xml\nuct/email-template-service/trunk/pack/project.xml\nuct/email-template-service/trunk/pack/src/\nuct/email-template-service/trunk/pack/src/webapp/\nuct/email-template-service/trunk/pack/src/webapp/WEB-INF/\nuct/email-template-service/trunk/pack/src/webapp/WEB-INF/components.xml\nuct/email-template-service/trunk/pack/src/webapp/WEB-INF/hibernate-hbms.xml\nuct/email-template-service/trunk/pack/src/webapp/WEB-INF/spring-hibernate.xml\nuct/email-template-service/trunk/pom.xml\nuct/email-template-service/trunk/project.xml\nuct/email-template-service/trunk/tool/\nuct/email-template-service/trunk/tool/maven.xml\nuct/email-template-service/trunk/tool/pom.xml\nuct/email-template-service/trunk/tool/project.properties\nuct/email-template-service/trunk/tool/project.xml\nuct/email-template-service/trunk/tool/src/\nuct/email-template-service/trunk/tool/src/java/\nuct/email-template-service/trunk/tool/src/java/org/\nuct/email-template-service/trunk/tool/src/java/org/sakaiproject/\nuct/email-template-service/trunk/tool/src/java/org/sakaiproject/emailtemplateservice/\nuct/email-template-service/trunk/tool/src/java/org/sakaiproject/emailtemplateservice/tool/\nuct/email-template-service/trunk/tool/src/java/org/sakaiproject/emailtemplateservice/tool/params/\nuct/email-template-service/trunk/tool/src/java/org/sakaiproject/emailtemplateservice/tool/producers/\nuct/email-template-service/trunk/tool/src/webapp/\nuct/email-template-service/trunk/tool/src/webapp/WEB-INF/\nuct/email-template-service/trunk/tool/src/webapp/WEB-INF/bundle/\nuct/email-template-service/trunk/tool/src/webapp/WEB-INF/web.xml\nuct/email-template-service/trunk/tool/src/webapp/component-templates/\nuct/email-template-service/trunk/tool/src/webapp/css/\nuct/email-template-service/trunk/tool/src/webapp/css/Emailtemplateservice.css\nuct/email-template-service/trunk/tool/src/webapp/images/\nuct/email-template-service/trunk/tool/src/webapp/templates/\nuct/email-template-service/trunk/tool/src/webapp/tools/\nuct/email-template-service/trunk/tool/src/webapp/tools/sakai.emailtemplateservice.xml\nLog:\nimport code from UCT trunk\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Nov 30 09:56:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 30 Nov 2007 09:56:53 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 30 Nov 2007 09:56:53 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby fan.mail.umich.edu () with ESMTP id lAUEuqlJ032608;\n\tFri, 30 Nov 2007 09:56:52 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 475024AF.10CDB.14443 ; \n\t30 Nov 2007 09:56:49 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0B31E5000C;\n\tFri, 30 Nov 2007 14:56:49 +0000 (GMT)\nMessage-ID: <200711301450.lAUEoGWr007827@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1003\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 14:56:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CD7F92998A\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 14:56:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUEoGO7007829\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 09:50:16 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUEoGWr007827\n\tfor source@collab.sakaiproject.org; Fri, 30 Nov 2007 09:50:16 -0500\nDate: Fri, 30 Nov 2007 09:50:16 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r38910 - oncourse/branches/sakai_2-4-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 30 09:56:53 2007\nX-DSPAM-Confidence: 0.8427\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38910\n\nAuthor: cwen@iupui.edu\nDate: 2007-11-30 09:50:16 -0500 (Fri, 30 Nov 2007)\nNew Revision: 38910\n\nModified:\noncourse/branches/sakai_2-4-x/.externals\nLog:\nupdate external for SAK-11728\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Nov 30 09:54:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 30 Nov 2007 09:54:42 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 30 Nov 2007 09:54:42 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby awakenings.mail.umich.edu () with ESMTP id lAUEsfKi001489;\n\tFri, 30 Nov 2007 09:54:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 4750242C.B4D70.13719 ; \n\t30 Nov 2007 09:54:39 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 631D68E9DC;\n\tFri, 30 Nov 2007 14:54:31 +0000 (GMT)\nMessage-ID: <200711301447.lAUEluAb007815@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 476\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 14:54:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id ADF9B2998A\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 14:54:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUElunJ007817\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 09:47:56 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUEluAb007815\n\tfor source@collab.sakaiproject.org; Fri, 30 Nov 2007 09:47:56 -0500\nDate: Fri, 30 Nov 2007 09:47:56 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 30 09:54:42 2007\nX-DSPAM-Confidence: 0.7552\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38909\n\nAuthor: cwen@iupui.edu\nDate: 2007-11-30 09:47:54 -0500 (Fri, 30 Nov 2007)\nNew Revision: 38909\n\nModified:\nassignment/branches/oncourse_2-4-x/assignment-impl/impl/src/bundle/assignment.properties\nassignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm\nLog:\nfound problem for building. remerge for SAK-11728\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Nov 30 09:47:14 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 30 Nov 2007 09:47:14 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 30 Nov 2007 09:47:14 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby fan.mail.umich.edu () with ESMTP id lAUElD1c027499;\n\tFri, 30 Nov 2007 09:47:13 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 47502264.5291A.9602 ; \n\t30 Nov 2007 09:47:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 930A654F31;\n\tFri, 30 Nov 2007 14:47:05 +0000 (GMT)\nMessage-ID: <200711301440.lAUEeVRK007803@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 136\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 14:46:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AE6512998A\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 14:46:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUEeVct007805\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 09:40:31 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUEeVRK007803\n\tfor source@collab.sakaiproject.org; Fri, 30 Nov 2007 09:40:31 -0500\nDate: Fri, 30 Nov 2007 09:40:31 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 30 09:47:14 2007\nX-DSPAM-Confidence: 0.7546\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38908\n\nAuthor: cwen@iupui.edu\nDate: 2007-11-30 09:40:29 -0500 (Fri, 30 Nov 2007)\nNew Revision: 38908\n\nModified:\nassignment/branches/oncourse_2-4-x/assignment-impl/impl/src/bundle/assignment.properties\nassignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm\nLog:\nfound problem for building. remerge for SAK-11728\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Fri Nov 30 09:32:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 30 Nov 2007 09:32:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 30 Nov 2007 09:32:19 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby jacknife.mail.umich.edu () with ESMTP id lAUEWHVZ015049;\n\tFri, 30 Nov 2007 09:32:17 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 47501ED3.D80A1.2055 ; \n\t30 Nov 2007 09:32:01 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 005608EA39;\n\tFri, 30 Nov 2007 14:31:53 +0000 (GMT)\nMessage-ID: <200711301425.lAUEPNrb007667@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 678\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 14:31:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 061902998A\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 14:31:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUEPNkD007669\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 09:25:23 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUEPNrb007667\n\tfor source@collab.sakaiproject.org; Fri, 30 Nov 2007 09:25:23 -0500\nDate: Fri, 30 Nov 2007 09:25:23 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38907 - authz/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 30 09:32:19 2007\nX-DSPAM-Confidence: 0.9810\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38907\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-30 09:25:21 -0500 (Fri, 30 Nov 2007)\nNew Revision: 38907\n\nAdded:\nauthz/branches/SAK-7924/\nLog:\nCreating branch for SAK-7924 from trunk @r38872\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Fri Nov 30 09:31:31 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 30 Nov 2007 09:31:31 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 30 Nov 2007 09:31:31 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby faithful.mail.umich.edu () with ESMTP id lAUEVUhB016053;\n\tFri, 30 Nov 2007 09:31:30 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 47501EA4.76C15.701 ; \n\t30 Nov 2007 09:31:03 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A479A54F31;\n\tFri, 30 Nov 2007 14:31:04 +0000 (GMT)\nMessage-ID: <200711301424.lAUEOT6j007643@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 354\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 14:30:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A70BC2998A\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 14:30:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUEOTpX007645\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 09:24:29 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUEOT6j007643\n\tfor source@collab.sakaiproject.org; Fri, 30 Nov 2007 09:24:29 -0500\nDate: Fri, 30 Nov 2007 09:24:29 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38905 - portal/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 30 09:31:31 2007\nX-DSPAM-Confidence: 0.9814\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38905\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-30 09:24:28 -0500 (Fri, 30 Nov 2007)\nNew Revision: 38905\n\nAdded:\nportal/branches/SAK-7924/\nLog:\nCreating branch for SAK-7924 from trunk @r38361\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gopal.ramasammycook@gmail.com Fri Nov 30 09:31:20 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 30 Nov 2007 09:31:20 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 30 Nov 2007 09:31:20 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby flawless.mail.umich.edu () with ESMTP id lAUEVJNq013402;\n\tFri, 30 Nov 2007 09:31:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 47501EAB.12C0B.10894 ; \n\t30 Nov 2007 09:31:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0AB988EA35;\n\tFri, 30 Nov 2007 14:31:12 +0000 (GMT)\nMessage-ID: <200711301424.lAUEOdHv007655@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 614\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 14:30:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 28E662998A\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 14:30:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUEOdEN007657\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 09:24:39 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUEOdHv007655\n\tfor source@collab.sakaiproject.org; Fri, 30 Nov 2007 09:24:39 -0500\nDate: Fri, 30 Nov 2007 09:24:39 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f\nTo: source@collab.sakaiproject.org\nFrom: gopal.ramasammycook@gmail.com\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 30 09:31:20 2007\nX-DSPAM-Confidence: 0.9812\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38906\n\nAuthor: gopal.ramasammycook@gmail.com\nDate: 2007-11-30 09:23:52 -0500 (Fri, 30 Nov 2007)\nNew Revision: 38906\n\nModified:\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/ExportResponsesBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/HistogramListener.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacadeQueries.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueriesAPI.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/PublishedAssessmentService.java\nLog:\nSAK-12142  Started export of part/section scores in seperate columns\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Nov 30 09:12:58 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 30 Nov 2007 09:12:58 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 30 Nov 2007 09:12:57 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby sleepers.mail.umich.edu () with ESMTP id lAUECu2j013672;\n\tFri, 30 Nov 2007 09:12:56 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 47501A60.3CD65.29617 ; \n\t30 Nov 2007 09:12:53 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 464E554F31;\n\tFri, 30 Nov 2007 14:12:51 +0000 (GMT)\nMessage-ID: <200711301406.lAUE6IJB007614@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 732\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 14:12:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A6F3429996\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 14:12:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUE6IiH007616\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 09:06:18 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUE6IJB007614\n\tfor source@collab.sakaiproject.org; Fri, 30 Nov 2007 09:06:18 -0500\nDate: Fri, 30 Nov 2007 09:06:18 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r38904 - oncourse/branches/sakai_2-4-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 30 09:12:57 2007\nX-DSPAM-Confidence: 0.8439\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38904\n\nAuthor: cwen@iupui.edu\nDate: 2007-11-30 09:06:17 -0500 (Fri, 30 Nov 2007)\nNew Revision: 38904\n\nModified:\noncourse/branches/sakai_2-4-x/.externals\nLog:\nupdate external -- merge SAK-11728\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Nov 30 09:04:00 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 30 Nov 2007 09:04:00 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 30 Nov 2007 09:04:00 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby godsend.mail.umich.edu () with ESMTP id lAUE3wpC009006;\n\tFri, 30 Nov 2007 09:03:58 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 47501848.B1995.32642 ; \n\t30 Nov 2007 09:03:55 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8CB0D54F31;\n\tFri, 30 Nov 2007 14:03:54 +0000 (GMT)\nMessage-ID: <200711301357.lAUDvLLJ007600@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 312\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 14:03:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 48CE82D4D1\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 14:03:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUDvLhg007602\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 08:57:21 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUDvLLJ007600\n\tfor source@collab.sakaiproject.org; Fri, 30 Nov 2007 08:57:21 -0500\nDate: Fri, 30 Nov 2007 08:57:21 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 30 09:04:00 2007\nX-DSPAM-Confidence: 0.7549\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38903\n\nAuthor: cwen@iupui.edu\nDate: 2007-11-30 08:57:19 -0500 (Fri, 30 Nov 2007)\nNew Revision: 38903\n\nModified:\nassignment/branches/oncourse_2-4-x/assignment-impl/impl/src/bundle/assignment.properties\nassignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm\nLog:\nSAK-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\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Fri Nov 30 08:50:35 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 30 Nov 2007 08:50:35 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 30 Nov 2007 08:50:35 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby panther.mail.umich.edu () with ESMTP id lAUDoZQw026444;\n\tFri, 30 Nov 2007 08:50:35 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 47501525.B5C23.1132 ; \n\t30 Nov 2007 08:50:32 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A70998E96E;\n\tFri, 30 Nov 2007 13:50:35 +0000 (GMT)\nMessage-ID: <200711301344.lAUDi115007565@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 298\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 13:50:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 161062D501\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 13:50:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUDi1do007567\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 08:44:01 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUDi115007565\n\tfor source@collab.sakaiproject.org; Fri, 30 Nov 2007 08:44:01 -0500\nDate: Fri, 30 Nov 2007 08:44:01 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38902 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 30 08:50:35 2007\nX-DSPAM-Confidence: 0.8418\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38902\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-30 08:44:00 -0500 (Fri, 30 Nov 2007)\nNew Revision: 38902\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nupdating externals for msgcntr\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Fri Nov 30 08:49:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 30 Nov 2007 08:49:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 30 Nov 2007 08:49:25 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby flawless.mail.umich.edu () with ESMTP id lAUDnLwA025518;\n\tFri, 30 Nov 2007 08:49:21 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 475014DB.F241.27801 ; \n\t30 Nov 2007 08:49:17 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EE9428E96A;\n\tFri, 30 Nov 2007 13:49:21 +0000 (GMT)\nMessage-ID: <200711301342.lAUDgiaW007553@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 706\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 13:49:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A34EB2D4E7\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 13:48:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAUDgiWQ007555\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 08:42:44 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAUDgiaW007553\n\tfor source@collab.sakaiproject.org; Fri, 30 Nov 2007 08:42:44 -0500\nDate: Fri, 30 Nov 2007 08:42:44 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38901 - msgcntr/branches/oncourse_opc_122007/messageforums-app\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 30 08:49:25 2007\nX-DSPAM-Confidence: 0.9817\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38901\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-30 08:42:42 -0500 (Fri, 30 Nov 2007)\nNew Revision: 38901\n\nModified:\nmsgcntr/branches/oncourse_opc_122007/messageforums-app/project.xml\nLog:\nSAK-12073\nAdding a dependency to event-api\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Nov 29 22:23:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 22:23:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 22:23:25 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby fan.mail.umich.edu () with ESMTP id lAU3NOuP015181;\n\tThu, 29 Nov 2007 22:23:24 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 474F8226.9B23A.12827 ; \n\t29 Nov 2007 22:23:21 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C77F18E3CF;\n\tFri, 30 Nov 2007 03:23:18 +0000 (GMT)\nMessage-ID: <200711300316.lAU3Ggen006743@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 220\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 03:22:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B515724F22\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 03:22:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAU3GgLm006745\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 22:16:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAU3Ggen006743\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 22:16:42 -0500\nDate: Thu, 29 Nov 2007 22:16:42 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 22:23:25 2007\nX-DSPAM-Confidence: 0.8471\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38900\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-29 22:16:36 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38900\n\nModified:\nreports/trunk/reports-api/.classpath\nreports/trunk/reports-impl/.classpath\nreports/trunk/reports-tool/.classpath\nreports/trunk/reports-util/.classpath\nwarehouse/trunk/warehouse-api/.classpath\nwarehouse/trunk/warehouse-impl/.classpath\nLog:\nupdating eclipse classpath to use bin instead of an m2-target folder.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Thu Nov 29 21:31:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 21:31:50 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 21:31:50 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby awakenings.mail.umich.edu () with ESMTP id lAU2Vn5M003405;\n\tThu, 29 Nov 2007 21:31:49 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 474F760F.76D8E.25106 ; \n\t29 Nov 2007 21:31:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6AC1F8E4D6;\n\tFri, 30 Nov 2007 02:31:39 +0000 (GMT)\nMessage-ID: <200711300225.lAU2PFfI006723@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 984\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 02:31:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E860B24F0E\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 02:31:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAU2PGId006725\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 21:25:16 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAU2PFfI006723\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 21:25:15 -0500\nDate: Thu, 29 Nov 2007 21:25:15 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 21:31:50 2007\nX-DSPAM-Confidence: 0.8490\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38899\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-29 21:25:00 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38899\n\nModified:\ncontent/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingHandlerResolver.java\ncontent/branches/SAK-12239/content-bundles/types.properties\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java\ncontent/branches/SAK-12239/content-util/util/src/java/org/sakaiproject/content/util/BaseResourceType.java\ncontent/branches/SAK-12239/content-util/util/src/java/org/sakaiproject/content/util/BasicResourceType.java\ncontent/branches/SAK-12239/content-util/util/src/java/org/sakaiproject/content/util/BasicSiteSelectableResourceType.java\nLog:\nSAK-12239\nAdding 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.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Thu Nov 29 21:22:45 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 21:22:45 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 21:22:45 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby fan.mail.umich.edu () with ESMTP id lAU2MiSP020706;\n\tThu, 29 Nov 2007 21:22:44 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 474F73EE.8E4A8.7440 ; \n\t29 Nov 2007 21:22:41 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EB7C68E4D6;\n\tFri, 30 Nov 2007 02:22:34 +0000 (GMT)\nMessage-ID: <200711300216.lAU2G9WH006711@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 728\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 02:22:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 930332CEAA\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 02:22:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAU2G9FH006713\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 21:16:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAU2G9WH006711\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 21:16:09 -0500\nDate: Thu, 29 Nov 2007 21:16:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 21:22:45 2007\nX-DSPAM-Confidence: 0.7611\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38898\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-29 21:15:51 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38898\n\nModified:\ndb/branches/SAK-12239/db-api/api/src/java/org/sakaiproject/db/api/SqlService.java\ndb/branches/SAK-12239/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlService.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/BaseDbDoubleStorage.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/BaseDbFlatStorage.java\ndb/branches/SAK-12239/db-util/storage/src/java/org/sakaiproject/util/BaseDbSingleStorage.java\nentity/branches/SAK-12239/entity-util/util/src/java/org/sakaiproject/util/BaseResourceProperties.java\nLog:\nSAK-12239\nAdding 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.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Thu Nov 29 21:21:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 21:21:53 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 21:21:53 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby casino.mail.umich.edu () with ESMTP id lAU2Lp58000774;\n\tThu, 29 Nov 2007 21:21:51 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 474F73BA.88ED7.15969 ; \n\t29 Nov 2007 21:21:49 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CF6F37243F;\n\tFri, 30 Nov 2007 02:21:41 +0000 (GMT)\nMessage-ID: <200711300215.lAU2FDqc006699@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 187\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 02:21:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5FCEE2CEAA\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 02:21:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAU2FDhv006701\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 21:15:13 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAU2FDqc006699\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 21:15:13 -0500\nDate: Thu, 29 Nov 2007 21:15:13 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 21:21:53 2007\nX-DSPAM-Confidence: 0.8502\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38897\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-29 21:14:46 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38897\n\nModified:\ncontent/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingHandler.java\ncontent/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingHandlerResolver.java\ncontent/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingService.java\ncontent/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/FilePickerHelper.java\ncontent/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/api/ResourceType.java\ncontent/branches/SAK-12239/content-api/api/src/java/org/sakaiproject/content/cover/ContentHostingService.java\ncontent/branches/SAK-12239/content-bundles/types.properties\ncontent/branches/SAK-12239/content-impl/impl/src/config/content_type_names_nl.properties\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentHostingHandlerResolverImpl.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java\ncontent/branches/SAK-12239/content-impl/impl/src/java/org/sakaiproject/content/impl/DropboxContextObserver.java\ncontent/branches/SAK-12239/content-impl/pack/src/webapp/WEB-INF/components.xml\ncontent/branches/SAK-12239/content-tool/tool/src/java/org/sakaiproject/content/tool/FilePickerAction.java\ncontent/branches/SAK-12239/content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java\ncontent/branches/SAK-12239/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\ncontent/branches/SAK-12239/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java\nLog:\nSAK-12239\nAdding 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.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Thu Nov 29 20:29:10 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 20:29:10 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 20:29:10 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby sleepers.mail.umich.edu () with ESMTP id lAU1T9Nh005404;\n\tThu, 29 Nov 2007 20:29:09 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 474F6760.4749F.575 ; \n\t29 Nov 2007 20:29:07 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B71928C259;\n\tFri, 30 Nov 2007 01:29:05 +0000 (GMT)\nMessage-ID: <200711300122.lAU1MVTk006631@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 130\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 01:28:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5DB9224F8B\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 01:28:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAU1MVCI006633\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 20:22:31 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAU1MVTk006631\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 20:22:31 -0500\nDate: Thu, 29 Nov 2007 20:22:31 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 20:29:10 2007\nX-DSPAM-Confidence: 0.7603\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38896\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-29 20:21:51 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38896\n\nRemoved:\ncontent/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/OperationDelegationException.java\ncontent/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/providers/\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSql.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlDb2.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlDefault.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlHSql.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlMsSql.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlMySql.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlOracle.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/DropboxNotification.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/util/\ncontent/branches/sakai_2-4-x/content-impl/impl/src/sql/mssql/\nModified:\ncontent/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingHandler.java\ncontent/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingHandlerResolver.java\ncontent/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingService.java\ncontent/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/FilePickerHelper.java\ncontent/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/ResourceType.java\ncontent/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/cover/ContentHostingService.java\ncontent/branches/sakai_2-4-x/content-bundles/types.properties\ncontent/branches/sakai_2-4-x/content-impl/impl/src/config/content_type_names_nl.properties\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentHostingHandlerResolverImpl.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/DropboxContextObserver.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/sql/hsqldb/sakai_content.sql\ncontent/branches/sakai_2-4-x/content-impl/impl/src/sql/hsqldb/sakai_content_delete.sql\ncontent/branches/sakai_2-4-x/content-impl/impl/src/sql/mysql/sakai_content.sql\ncontent/branches/sakai_2-4-x/content-impl/impl/src/sql/mysql/sakai_content_delete.sql\ncontent/branches/sakai_2-4-x/content-impl/impl/src/sql/oracle/sakai_content.sql\ncontent/branches/sakai_2-4-x/content-impl/impl/src/sql/oracle/sakai_content_delete.sql\ncontent/branches/sakai_2-4-x/content-impl/pack/src/webapp/WEB-INF/components.xml\ncontent/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/FilePickerAction.java\ncontent/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java\ncontent/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\ncontent/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java\ncontent/branches/sakai_2-4-x/content-util/util/src/java/org/sakaiproject/content/util/BaseResourceType.java\ncontent/branches/sakai_2-4-x/content-util/util/src/java/org/sakaiproject/content/util/BasicResourceType.java\ncontent/branches/sakai_2-4-x/content-util/util/src/java/org/sakaiproject/content/util/BasicSiteSelectableResourceType.java\nLog:\nSAK-12239\nThese changes were supposed to go into the SAK-12239 branch rather than the 2.4.x branch\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Thu Nov 29 20:16:07 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 20:16:07 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 20:16:07 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby flawless.mail.umich.edu () with ESMTP id lAU1G6GY011606;\n\tThu, 29 Nov 2007 20:16:06 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 474F644F.9D8F3.26828 ; \n\t29 Nov 2007 20:16:03 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 92CBF8E008;\n\tFri, 30 Nov 2007 01:15:48 +0000 (GMT)\nMessage-ID: <200711300109.lAU199nN006596@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1010\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 01:15:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 52C8622654\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 01:15:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAU199VD006598\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 20:09:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAU199nN006596\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 20:09:09 -0500\nDate: Thu, 29 Nov 2007 20:09:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 20:16:07 2007\nX-DSPAM-Confidence: 0.8494\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38895\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-29 20:08:41 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38895\n\nRemoved:\ndb/branches/sakai_2-4-x/db-impl/ext/src/java/org/sakaiproject/springframework/orm/hibernate/dialect/\ndb/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlDb2.java\ndb/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlDefault.java\ndb/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlHSql.java\ndb/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlMsSql.java\ndb/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlMySql.java\ndb/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlOracle.java\ndb/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/SqlServiceSql.java\nentity/branches/sakai_2-4-x/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/\nentity/branches/sakai_2-4-x/entity-util/util/src/java/org/sakaiproject/util/serialize/\nModified:\ndb/branches/sakai_2-4-x/db-api/api/src/java/org/sakaiproject/db/api/SqlService.java\ndb/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlService.java\ndb/branches/sakai_2-4-x/db-util/storage/src/java/org/sakaiproject/util/BaseDbDoubleStorage.java\ndb/branches/sakai_2-4-x/db-util/storage/src/java/org/sakaiproject/util/BaseDbFlatStorage.java\ndb/branches/sakai_2-4-x/db-util/storage/src/java/org/sakaiproject/util/BaseDbSingleStorage.java\nentity/branches/sakai_2-4-x/entity-util/util/src/java/org/sakaiproject/util/BaseResourceProperties.java\nLog:\nSAK-12239\nThese changes were supposed to go into the SAK-12239 branch rather than the 2.4.x branch\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Thu Nov 29 19:39:16 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 19:39:16 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 19:39:16 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby fan.mail.umich.edu () with ESMTP id lAU0dF9X015060;\n\tThu, 29 Nov 2007 19:39:15 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 474F5BAC.C246E.23247 ; \n\t29 Nov 2007 19:39:11 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4000D8CB90;\n\tFri, 30 Nov 2007 00:19:02 +0000 (GMT)\nMessage-ID: <200711300032.lAU0WhmR006558@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 952\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 00:18:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B7BA22CE71\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 00:38:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAU0WiIZ006560\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 19:32:44 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAU0WhmR006558\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 19:32:44 -0500\nDate: Thu, 29 Nov 2007 19:32:44 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38894 - entity/trunk/entity-api/api/src/java/org/sakaiproject/entity/api/serialize\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 19:39:16 2007\nX-DSPAM-Confidence: 0.8471\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38894\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-29 19:32:40 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38894\n\nModified:\nentity/trunk/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/EntityReaderHandler.java\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-12308\n\nMoved parse into so that it matches standard behavior\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Thu Nov 29 19:36:27 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 19:36:27 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 19:36:27 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby faithful.mail.umich.edu () with ESMTP id lAU0aQNa001018;\n\tThu, 29 Nov 2007 19:36:26 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 474F5B05.92F68.7011 ; \n\t29 Nov 2007 19:36:24 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E6FD28E2E3;\n\tFri, 30 Nov 2007 00:16:15 +0000 (GMT)\nMessage-ID: <200711300029.lAU0TvT3006546@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 770\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 00:16:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 82C092CE71\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 00:36:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAU0TvMh006548\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 19:29:57 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAU0TvT3006546\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 19:29:57 -0500\nDate: Thu, 29 Nov 2007 19:29:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38893 - db/trunk/db-util/storage/src/java/org/sakaiproject/util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 19:36:27 2007\nX-DSPAM-Confidence: 0.7559\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38893\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-29 19:29:51 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38893\n\nModified:\ndb/trunk/db-util/storage/src/java/org/sakaiproject/util/BaseDbBinarySingleStorage.java\ndb/trunk/db-util/storage/src/java/org/sakaiproject/util/BaseDbDualSingleStorage.java\ndb/trunk/db-util/storage/src/java/org/sakaiproject/util/EntityReaderAdapter.java\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-12308\n\nAdded supporting code to enable based content collection migraiton on startup\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Thu Nov 29 19:36:00 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 19:36:00 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 19:36:00 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby chaos.mail.umich.edu () with ESMTP id lAU0ZxLS001525;\n\tThu, 29 Nov 2007 19:35:59 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 474F5AE8.91DEB.24760 ; \n\t29 Nov 2007 19:35:55 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 580368D4E4;\n\tFri, 30 Nov 2007 00:15:44 +0000 (GMT)\nMessage-ID: <200711300029.lAU0TKqN006534@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 385\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 00:15:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 04CC92CE73\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 00:35:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAU0TKgB006536\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 19:29:20 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAU0TKqN006534\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 19:29:20 -0500\nDate: Thu, 29 Nov 2007 19:29:20 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38892 - content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 19:36:00 2007\nX-DSPAM-Confidence: 0.8476\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38892\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-29 19:29:14 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38892\n\nModified:\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-12308\n\nAdded correct migration of the base entities on startup migtration\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Thu Nov 29 19:32:21 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 19:32:21 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 19:32:21 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby casino.mail.umich.edu () with ESMTP id lAU0WK4G019784;\n\tThu, 29 Nov 2007 19:32:20 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 474F5A0E.DA8F2.2570 ; \n\t29 Nov 2007 19:32:17 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 312AE8D4E3;\n\tFri, 30 Nov 2007 00:12:08 +0000 (GMT)\nMessage-ID: <200711300025.lAU0PmAe006511@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 82\n          for <source@collab.sakaiproject.org>;\n          Fri, 30 Nov 2007 00:11:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A055E2CEC5\n\tfor <source@collab.sakaiproject.org>; Fri, 30 Nov 2007 00:31:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAU0PmlG006513\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 19:25:49 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAU0PmAe006511\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 19:25:48 -0500\nDate: Thu, 29 Nov 2007 19:25:48 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 19:32:21 2007\nX-DSPAM-Confidence: 0.8511\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38891\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-29 19:25:09 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38891\n\nAdded:\ndb/branches/sakai_2-4-x/db-impl/ext/src/java/org/sakaiproject/springframework/orm/hibernate/dialect/\ndb/branches/sakai_2-4-x/db-impl/ext/src/java/org/sakaiproject/springframework/orm/hibernate/dialect/SQLServerDialect2005.java\ndb/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlDb2.java\ndb/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlDefault.java\ndb/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlHSql.java\ndb/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlMsSql.java\ndb/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlMySql.java\ndb/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlServiceSqlOracle.java\ndb/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/SqlServiceSql.java\nentity/branches/sakai_2-4-x/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/\nentity/branches/sakai_2-4-x/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/DataStreamEntitySerializer.java\nentity/branches/sakai_2-4-x/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/EntityDoubleReader.java\nentity/branches/sakai_2-4-x/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/EntityDoubleReaderHandler.java\nentity/branches/sakai_2-4-x/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/EntityParseException.java\nentity/branches/sakai_2-4-x/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/EntityReader.java\nentity/branches/sakai_2-4-x/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/EntityReaderHandler.java\nentity/branches/sakai_2-4-x/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/EntitySerializer.java\nentity/branches/sakai_2-4-x/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/SerializableEntity.java\nentity/branches/sakai_2-4-x/entity-api/api/src/java/org/sakaiproject/entity/api/serialize/SerializablePropertiesAccess.java\nentity/branches/sakai_2-4-x/entity-util/util/src/java/org/sakaiproject/util/serialize/\nentity/branches/sakai_2-4-x/entity-util/util/src/java/org/sakaiproject/util/serialize/Type1BaseResourcePropertiesSerializer.java\nModified:\ndb/branches/sakai_2-4-x/db-api/api/src/java/org/sakaiproject/db/api/SqlService.java\ndb/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlService.java\ndb/branches/sakai_2-4-x/db-util/storage/src/java/org/sakaiproject/util/BaseDbDoubleStorage.java\ndb/branches/sakai_2-4-x/db-util/storage/src/java/org/sakaiproject/util/BaseDbFlatStorage.java\ndb/branches/sakai_2-4-x/db-util/storage/src/java/org/sakaiproject/util/BaseDbSingleStorage.java\nentity/branches/sakai_2-4-x/entity-util/util/src/java/org/sakaiproject/util/BaseResourceProperties.java\nLog:\nSAK-12239\nAdded files from 2.5.x to 2.4.x in entity and db to support new serialization and quota query in content\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Thu Nov 29 17:44:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 17:44:50 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 17:44:50 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby jacknife.mail.umich.edu () with ESMTP id lATMinup001793;\n\tThu, 29 Nov 2007 17:44:49 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 474F40DB.DBD70.23977 ; \n\t29 Nov 2007 17:44:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A4C858E025;\n\tThu, 29 Nov 2007 22:43:43 +0000 (GMT)\nMessage-ID: <200711292237.lATMb8Wu006299@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 12\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 22:43:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E0B5F2CE92\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 22:43:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATMb97B006301\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 17:37:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATMb8Wu006299\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 17:37:08 -0500\nDate: Thu, 29 Nov 2007 17:37:08 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38890 - mailarchive/branches/sakai_2-5-x/mailarchive-james/james/src/java/org/sakaiproject/james\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 17:44:50 2007\nX-DSPAM-Confidence: 0.6567\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38890\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-29 17:37:07 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38890\n\nModified:\nmailarchive/branches/sakai_2-5-x/mailarchive-james/james/src/java/org/sakaiproject/james/SakaiMailet.java\nLog:\nsvn merge -r 38834:38835 https://source.sakaiproject.org/svn/mailarchive/trunk\nU    mailarchive-james/james/src/java/org/sakaiproject/james/SakaiMailet.java\nin-143-196:~/java/2-5/sakai_2-5-x/mailarchive mmmay$ svn log -r 38834:38835 https://source.sakaiproject.org/svn/mailarchive/trunk\n------------------------------------------------------------------------\nr38835 | zach.thomas@txstate.edu | 2007-11-28 12:35:55 -0500 (Wed, 28 Nov 2007) | 1 line\n\nSAK-11973 removing extraneous line breaks from incoming messages to the mail archive.\n------------------------------------------------------------------------\n\nIssue resolves SAK-11995 which was recorded off the testing in SAK-11973\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Thu Nov 29 17:22:49 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 17:22:49 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 17:22:49 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby casino.mail.umich.edu () with ESMTP id lATMMnml020148;\n\tThu, 29 Nov 2007 17:22:49 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 474F3BAA.1F95D.23769 ; \n\t29 Nov 2007 17:22:36 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 311F98E21A;\n\tThu, 29 Nov 2007 22:22:43 +0000 (GMT)\nMessage-ID: <200711292216.lATMG5J3006209@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 913\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 22:22:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4C0892CE4D\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 22:22:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATMG52q006211\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 17:16:05 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATMG5J3006209\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 17:16:05 -0500\nDate: Thu, 29 Nov 2007 17:16:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [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!\n roject/content/util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 17:22:49 2007\nX-DSPAM-Confidence: 0.8503\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38888\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-29 17:15:04 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38888\n\nAdded:\ncontent/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/OperationDelegationException.java\ncontent/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/providers/\ncontent/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/providers/SiteContentAdvisor.java\ncontent/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/providers/SiteContentAdvisorProvider.java\ncontent/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/providers/SiteContentAdvisorTypeRegistry.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSql.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlDb2.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlDefault.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlHSql.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlMsSql.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlMySql.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentServiceSqlOracle.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/DropboxNotification.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/api/\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/api/SerializableCollectionAccess.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/api/SerializableResourceAccess.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/Type1BaseContentCollectionSerializer.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/Type1BaseContentResourceSerializer.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/ConversionTimeService.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/ConvertTime.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/FileSizeResourcesConversionHandler.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/SAXSerializableCollectionAccess.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/SAXSerializablePropertiesAccess.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/SAXSerializableResourceAccess.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/Type1BlobCollectionConversionHandler.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/Type1BlobResourcesConversionHandler.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/upgradeschema.config\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/util/\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/util/GMTDateformatter.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/sql/mssql/\ncontent/branches/sakai_2-4-x/content-impl/impl/src/sql/mssql/sakai_content.sql\ncontent/branches/sakai_2-4-x/content-impl/impl/src/sql/mssql/sakai_content_delete.sql\ncontent/branches/sakai_2-4-x/content-impl/impl/src/sql/mssql/sakai_content_registry.sql\nModified:\ncontent/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingHandler.java\ncontent/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingHandlerResolver.java\ncontent/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingService.java\ncontent/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/FilePickerHelper.java\ncontent/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/api/ResourceType.java\ncontent/branches/sakai_2-4-x/content-api/api/src/java/org/sakaiproject/content/cover/ContentHostingService.java\ncontent/branches/sakai_2-4-x/content-bundles/types.properties\ncontent/branches/sakai_2-4-x/content-impl/impl/src/config/content_type_names_nl.properties\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ContentHostingHandlerResolverImpl.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/DropboxContextObserver.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/sql/hsqldb/sakai_content.sql\ncontent/branches/sakai_2-4-x/content-impl/impl/src/sql/hsqldb/sakai_content_delete.sql\ncontent/branches/sakai_2-4-x/content-impl/impl/src/sql/mysql/sakai_content.sql\ncontent/branches/sakai_2-4-x/content-impl/impl/src/sql/mysql/sakai_content_delete.sql\ncontent/branches/sakai_2-4-x/content-impl/impl/src/sql/oracle/sakai_content.sql\ncontent/branches/sakai_2-4-x/content-impl/impl/src/sql/oracle/sakai_content_delete.sql\ncontent/branches/sakai_2-4-x/content-impl/pack/src/webapp/WEB-INF/components.xml\ncontent/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/FilePickerAction.java\ncontent/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java\ncontent/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\ncontent/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java\ncontent/branches/sakai_2-4-x/content-util/util/src/java/org/sakaiproject/content/util/BaseResourceType.java\ncontent/branches/sakai_2-4-x/content-util/util/src/java/org/sakaiproject/content/util/BasicResourceType.java\ncontent/branches/sakai_2-4-x/content-util/util/src/java/org/sakaiproject/content/util/BasicSiteSelectableResourceType.java\nLog:\nSAK-12239\nAdding new files and updating existing files to merge 2.5.x changes to SAK-12239 branch\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Thu Nov 29 16:47:55 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 16:47:55 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 16:47:55 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby flawless.mail.umich.edu () with ESMTP id lATLlsi0001545;\n\tThu, 29 Nov 2007 16:47:54 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 474F3380.B892A.11269 ; \n\t29 Nov 2007 16:47:47 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 037898DFA1;\n\tThu, 29 Nov 2007 21:46:39 +0000 (GMT)\nMessage-ID: <200711292141.lATLfKVl006183@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 111\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 21:46:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3E8262CDAC\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 21:47:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATLfK3A006185\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 16:41:20 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATLfKVl006183\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 16:41:20 -0500\nDate: Thu, 29 Nov 2007 16:41:20 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38887 - util/branches/sakai_2-5-x/util-util/util/src/java/org/sakaiproject/util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 16:47:55 2007\nX-DSPAM-Confidence: 0.6197\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38887\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-29 16:41:19 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38887\n\nModified:\nutil/branches/sakai_2-5-x/util-util/util/src/java/org/sakaiproject/util/FormattedText.java\nLog:\nsvn merge -r 38780:38781 https://source.sakaiproject.org/svn/util/trunk\nU    util-util/util/src/java/org/sakaiproject/util/FormattedText.java\nin-143-196:~/java/2-5/sakai_2-5-x/util mmmay$ svn log -r 38780:38781 https://source.sakaiproject.org/svn/util/trunk\n------------------------------------------------------------------------\nr38781 | lance@indiana.edu | 2007-11-26 09:36:07 -0500 (Mon, 26 Nov 2007) | 5 lines\n\nSAK-12147\nhttp://jira.sakaiproject.org/jira/browse/SAK-12147\nRemoval of FormatedText.parseFormatedText(String, Strinbuffer) breaks backward compatibility\n\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Thu Nov 29 16:43:24 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 16:43:24 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 16:43:24 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby mission.mail.umich.edu () with ESMTP id lATLhMT7016885;\n\tThu, 29 Nov 2007 16:43:22 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 474F3274.D44FE.29066 ; \n\t29 Nov 2007 16:43:19 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id AE8C18E138;\n\tThu, 29 Nov 2007 21:43:16 +0000 (GMT)\nMessage-ID: <200711292136.lATLaqmq006151@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 897\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 21:43:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2FB492CE69\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 21:43:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATLaqZR006153\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 16:36:52 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATLaqmq006151\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 16:36:52 -0500\nDate: Thu, 29 Nov 2007 16:36:52 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38886 - reports/branches/sakai_2-5-x/reports-impl/impl/src/java/org/sakaiproject/reports/logic/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 16:43:24 2007\nX-DSPAM-Confidence: 0.5937\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38886\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-29 16:36:51 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38886\n\nModified:\nreports/branches/sakai_2-5-x/reports-impl/impl/src/java/org/sakaiproject/reports/logic/impl/ReportsManagerImpl.java\nLog:\nsvn merge -r 38864:38865 https://source.sakaiproject.org/svn/reports/trunk\nU    reports-impl/impl/src/java/org/sakaiproject/reports/logic/impl/ReportsManagerImpl.java\nin-143-196:~/java/2-5/sakai_2-5-x/reports mmmay$ svn log -r 38864:38865 https://source.sakaiproject.org/svn/reports/trunk\n------------------------------------------------------------------------\nr38865 | john.ellis@rsmart.com | 2007-11-29 12:28:23 -0500 (Thu, 29 Nov 2007) | 3 lines\n\nSAK-12303\nchanged upgrade24 to default to false\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Thu Nov 29 16:43:09 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 16:43:09 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 16:43:09 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby score.mail.umich.edu () with ESMTP id lATLh9Qg018852;\n\tThu, 29 Nov 2007 16:43:09 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 474F3266.15CC6.21570 ; \n\t29 Nov 2007 16:43:04 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A8B978E0B9;\n\tThu, 29 Nov 2007 21:42:53 +0000 (GMT)\nMessage-ID: <200711292136.lATLaOgN006139@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 630\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 21:42:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 077702CE69\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 21:42:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATLaORr006141\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 16:36:24 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATLaOgN006139\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 16:36:24 -0500\nDate: Thu, 29 Nov 2007 16:36:24 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 16:43:09 2007\nX-DSPAM-Confidence: 0.8463\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38885\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-11-29 16:36:22 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38885\n\nAdded:\noncourse/branches/assignment_post-2-4/assignment-tool/\noncourse/branches/assignment_post-2-4/assignment-tool/tool/\noncourse/branches/assignment_post-2-4/assignment-tool/tool/src/\noncourse/branches/assignment_post-2-4/assignment-tool/tool/src/bundle/\noncourse/branches/assignment_post-2-4/assignment-tool/tool/src/bundle/assignment.properties\nRemoved:\noncourse/branches/assignment_post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/DbAssignmentService.java\nModified:\noncourse/branches/assignment_post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nUpdate oncourse overlay for new post-2-4 assignments\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Thu Nov 29 16:37:38 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 16:37:38 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 16:37:38 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby sleepers.mail.umich.edu () with ESMTP id lATLbbVA015199;\n\tThu, 29 Nov 2007 16:37:37 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 474F311B.B71C6.21780 ; \n\t29 Nov 2007 16:37:34 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 71AB28E000;\n\tThu, 29 Nov 2007 21:37:25 +0000 (GMT)\nMessage-ID: <200711292131.lATLV1UN006118@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 382\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 21:37:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4E38E2CE69\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 21:37:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATLV1kD006120\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 16:31:01 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATLV1UN006118\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 16:31:01 -0500\nDate: Thu, 29 Nov 2007 16:31:01 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 16:37:38 2007\nX-DSPAM-Confidence: 0.6565\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38884\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-29 16:30:59 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38884\n\nModified:\nrwiki/branches/sakai_2-5-x/rwiki-impl/.classpath\nrwiki/branches/sakai_2-5-x/rwiki-impl/impl/pom.xml\nrwiki/branches/sakai_2-5-x/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/RWikiObjectServiceImpl.java\nrwiki/branches/sakai_2-5-x/rwiki-impl/pack/src/webapp/WEB-INF/coreServiceComponents.xml\nLog:\nsvn merge -r 38525:38526 https://source.sakaiproject.org/svn/rwiki/trunk\nU    rwiki-impl/.classpath\nU    rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/RWikiObjectServiceImpl.java\nU    rwiki-impl/impl/pom.xml\nU    rwiki-impl/pack/src/webapp/WEB-INF/coreServiceComponents.xml\nin-143-196:~/java/2-5/sakai_2-5-x/rwiki mmmay$ svn log -r 38525:38526 https://source.sakaiproject.org/svn/rwiki/trunk\n------------------------------------------------------------------------\nr38526 | ian@caret.cam.ac.uk | 2007-11-21 07:47:29 -0500 (Wed, 21 Nov 2007) | 4 lines\n\nSAK-10955\nApplied Patch, thank you Beth\n\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Nov 29 16:17:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 16:17:13 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 16:17:13 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby jacknife.mail.umich.edu () with ESMTP id lATLHBqP011771;\n\tThu, 29 Nov 2007 16:17:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 474F2C51.75420.17195 ; \n\t29 Nov 2007 16:17:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5729C8E009;\n\tThu, 29 Nov 2007 21:17:03 +0000 (GMT)\nMessage-ID: <200711292110.lATLAf1h005995@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 61\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 21:16:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A34EC2CE4E\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 21:16:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATLAgxD005997\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 16:10:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATLAf1h005995\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 16:10:41 -0500\nDate: Thu, 29 Nov 2007 16:10:41 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38883 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 16:17:13 2007\nX-DSPAM-Confidence: 0.8460\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38883\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-29 16:10:39 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38883\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nRevving up util again.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Nov 29 16:14:20 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 16:14:20 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 16:14:20 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby chaos.mail.umich.edu () with ESMTP id lATLEJS0003631;\n\tThu, 29 Nov 2007 16:14:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 474F2BA4.A291F.10536 ; \n\t29 Nov 2007 16:14:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EEC2D8E005;\n\tThu, 29 Nov 2007 21:14:07 +0000 (GMT)\nMessage-ID: <200711292107.lATL7i4v005983@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 619\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 21:13:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EC5AA2CE4B\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 21:13:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATL7iFI005985\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 16:07:44 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATL7i4v005983\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 16:07:44 -0500\nDate: Thu, 29 Nov 2007 16:07:44 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38882 - util/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 16:14:20 2007\nX-DSPAM-Confidence: 0.9942\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38882\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-29 16:07:41 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38882\n\nModified:\nutil/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util/ResourceLoader.java\nLog:\nsvn merge -r 31644:31675 https://source.sakaiproject.org/svn/util/trunk/util-util/util/src/java/org/sakaiproject/util/ResourceLoader.java\nU    ResourceLoader.java\n\nsvn log -r 31644:31675 https://source.sakaiproject.org/svn/util/trunk/util-util/util/src/java/org/sakaiproject/util/ResourceLoader.java\n------------------------------------------------------------------------\nr31645 | bkirschn@umich.edu | 2007-06-18 17:12:48 -0400 (Mon, 18 Jun 2007) | 1 line\n\nSAK-10392 new ResourceLoader( User, ... ) constructor\n------------------------------------------------------------------------\nr31655 | bkirschn@umich.edu | 2007-06-19 09:13:57 -0400 (Tue, 19 Jun 2007) | 1 line\n\nSAK-10392 pull out new constructor until build supports\n------------------------------------------------------------------------\nr31661 | bkirschn@umich.edu | 2007-06-19 10:51:28 -0400 (Tue, 19 Jun 2007) | 1 line\n\nSAK-10392 revised new constructor with userId\n------------------------------------------------------------------------\nr31664 | bkirschn@umich.edu | 2007-06-19 11:28:33 -0400 (Tue, 19 Jun 2007) | 1 line\n\nSAK-10392 setBaseName() is required. Doh!\n------------------------------------------------------------------------\nr31675 | bkirschn@umich.edu | 2007-06-19 16:39:24 -0400 (Tue, 19 Jun 2007) | 1 line\n\nSAK-10392 surface getLocale( String userId ) method\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Thu Nov 29 16:12:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 16:12:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 16:12:51 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby faithful.mail.umich.edu () with ESMTP id lATLCpJq021749;\n\tThu, 29 Nov 2007 16:12:51 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 474F2B4B.DA7BE.10077 ; \n\t29 Nov 2007 16:12:47 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 987E48E000;\n\tThu, 29 Nov 2007 21:12:40 +0000 (GMT)\nMessage-ID: <200711292106.lATL6HiV005971@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 491\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 21:12:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3334B2CE4B\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 21:12:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATL6Hro005973\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 16:06:17 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATL6HiV005971\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 16:06:17 -0500\nDate: Thu, 29 Nov 2007 16:06:17 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38881 - polls/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/poll/tool/params\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 16:12:51 2007\nX-DSPAM-Confidence: 0.7005\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38881\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-29 16:06:15 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38881\n\nModified:\npolls/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/poll/tool/params/PollToolBean.java\nLog:\nsvn merge -r 38521:38523 https://source.sakaiproject.org/svn/polls/trunk\nU    tool/src/java/org/sakaiproject/poll/tool/params/PollToolBean.java\nin-143-196:~/java/2-5/sakai_2-5-x/polls mmmay$ svn log -r 38521:38523 https://source.sakaiproject.org/svn/polls/trunk\n------------------------------------------------------------------------\nr38522 | david.horwitz@uct.ac.za | 2007-11-21 05:14:25 -0500 (Wed, 21 Nov 2007) | 1 line\n\nSAK-11882 remove single p tags\n------------------------------------------------------------------------\nr38523 | david.horwitz@uct.ac.za | 2007-11-21 05:41:48 -0500 (Wed, 21 Nov 2007) | 1 line\n\nSAK-11882 now removes trainling <p>$nbsp;</p>'s too\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Thu Nov 29 15:47:21 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 15:47:21 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 15:47:21 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby flawless.mail.umich.edu () with ESMTP id lATKlHQw029491;\n\tThu, 29 Nov 2007 15:47:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 474F254E.C4E85.1024 ; \n\t29 Nov 2007 15:47:13 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 99FF18DFA6;\n\tThu, 29 Nov 2007 20:47:19 +0000 (GMT)\nMessage-ID: <200711292040.lATKef5X005943@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 483\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 20:47:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 785512C547\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 20:46:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATKefu9005945\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 15:40:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATKef5X005943\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 15:40:41 -0500\nDate: Thu, 29 Nov 2007 15:40:41 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38880 - reference/branches/sakai_2-5-x/docs/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 15:47:21 2007\nX-DSPAM-Confidence: 0.7011\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38880\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-29 15:40:40 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38880\n\nModified:\nreference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql\nreference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\nLog:\nsvn merge -r 38504:38506 https://source.sakaiproject.org/svn/reference/trunk\nU    docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql\nU    docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\nin-143-196:~/java/2-5/sakai_2-5-x/reference mmmay$ svn logs -r 38504:38506 https://source.sakaiproject.org/svn/reference/trunk\nUnknown command: 'logs'\nType 'svn help' for usage.\nin-143-196:~/java/2-5/sakai_2-5-x/reference mmmay$ svn log -r 38504:38506 https://source.sakaiproject.org/svn/reference/trunk\n------------------------------------------------------------------------\nr38505 | jimeng@umich.edu | 2007-11-20 13:57:15 -0500 (Tue, 20 Nov 2007) | 3 lines\n\nSAK-11908 \nOne new column (BINARY_ENTITY) was overlooked when adding columns to the content_resource_delete table\n\n------------------------------------------------------------------------\nr38506 | jimeng@umich.edu | 2007-11-20 14:03:40 -0500 (Tue, 20 Nov 2007) | 3 lines\n\nSAK-11908\nAlso need oracle conversion to add BINARY_ENTITY column to content_resource_delete\n\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Thu Nov 29 15:32:58 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 15:32:58 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 15:32:58 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby fan.mail.umich.edu () with ESMTP id lATKWvOI021298;\n\tThu, 29 Nov 2007 15:32:57 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 474F21F2.5329C.12982 ; \n\t29 Nov 2007 15:32:54 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4B13A8DDA7;\n\tThu, 29 Nov 2007 20:33:02 +0000 (GMT)\nMessage-ID: <200711292026.lATKQMCM005919@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 409\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 20:32:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4587A2CC5B\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 20:32:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATKQMo5005921\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 15:26:22 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATKQMCM005919\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 15:26:22 -0500\nDate: Thu, 29 Nov 2007 15:26:22 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38879 - citations/branches/sakai_2-5-x/citations-tool/tool/src/java/org/sakaiproject/citation/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 15:32:58 2007\nX-DSPAM-Confidence: 0.6566\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38879\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-29 15:26:21 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38879\n\nModified:\ncitations/branches/sakai_2-5-x/citations-tool/tool/src/java/org/sakaiproject/citation/tool/CitationHelperAction.java\nLog:\nsvn merge -r 38500:38501 https://source.sakaiproject.org/svn/citations/trunkU    citations-tool/tool/src/java/org/sakaiproject/citation/tool/CitationHelperAction.java\nin-143-196:~/java/2-5/sakai_2-5-x/citations mmmay$ svn log -r 38500:38501 https://source.sakaiproject.org/svn/citations/trunk\n------------------------------------------------------------------------\nr38501 | ssmail@indiana.edu | 2007-11-20 13:27:22 -0500 (Tue, 20 Nov 2007) | 1 line\n\nSAK-12248: Added a catch block for Exception in doBeginSearch() - an alert is displayed and the page is properly re-rendered\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Thu Nov 29 15:26:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 15:26:53 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 15:26:53 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby awakenings.mail.umich.edu () with ESMTP id lATKQqm9031281;\n\tThu, 29 Nov 2007 15:26:52 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 474F2082.899C7.26474 ; \n\t29 Nov 2007 15:26:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BB9E38DDA7;\n\tThu, 29 Nov 2007 20:26:55 +0000 (GMT)\nMessage-ID: <200711292020.lATKKFbP005893@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 120\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 20:26:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EA5C32CC49\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 20:26:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATKKFGQ005895\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 15:20:15 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATKKFbP005893\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 15:20:15 -0500\nDate: Thu, 29 Nov 2007 15:20:15 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r38878 - oncourse/branches/sakai_2-4-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 15:26:53 2007\nX-DSPAM-Confidence: 0.8434\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38878\n\nAuthor: cwen@iupui.edu\nDate: 2007-11-29 15:20:14 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38878\n\nModified:\noncourse/branches/sakai_2-4-x/\noncourse/branches/sakai_2-4-x/.externals\nLog:\nUpdated externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Nov 29 15:25:07 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 15:25:07 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 15:25:07 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby casino.mail.umich.edu () with ESMTP id lATKP6UM003621;\n\tThu, 29 Nov 2007 15:25:06 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 474F2017.753ED.19394 ; \n\t29 Nov 2007 15:24:59 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E426164011;\n\tThu, 29 Nov 2007 20:25:00 +0000 (GMT)\nMessage-ID: <200711292018.lATKILM8005869@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 254\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 20:24:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 466C82CC35\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 20:24:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATKILx9005871\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 15:18:21 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATKILM8005869\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 15:18:21 -0500\nDate: Thu, 29 Nov 2007 15:18:21 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38877 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 15:25:07 2007\nX-DSPAM-Confidence: 0.8460\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38877\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-29 15:18:20 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38877\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nRevving up entity too\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Nov 29 15:12:06 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 15:12:06 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 15:12:06 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby faithful.mail.umich.edu () with ESMTP id lATKC6Ot016577;\n\tThu, 29 Nov 2007 15:12:06 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 474F1D0E.934DF.6216 ; \n\t29 Nov 2007 15:12:03 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 456288DE3F;\n\tThu, 29 Nov 2007 20:12:09 +0000 (GMT)\nMessage-ID: <200711292005.lATK5Vwf005856@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 495\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 20:11:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4A2272CC38\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 20:11:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATK5VWQ005858\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 15:05:32 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATK5Vwf005856\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 15:05:31 -0500\nDate: Thu, 29 Nov 2007 15:05:31 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38876 - site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 15:12:06 2007\nX-DSPAM-Confidence: 0.8494\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38876\n\nAuthor: zqian@umich.edu\nDate: 2007-11-29 15:05:30 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38876\n\nModified:\nsite-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nLog:\nfix to SAK-12279:Group edit tools & organize tool links\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Nov 29 15:10:56 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 15:10:56 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 15:10:56 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby godsend.mail.umich.edu () with ESMTP id lATKAtgR025536;\n\tThu, 29 Nov 2007 15:10:55 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 474F1CC3.22852.998 ; \n\t29 Nov 2007 15:10:50 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EBE388DF26;\n\tThu, 29 Nov 2007 20:10:55 +0000 (GMT)\nMessage-ID: <200711292004.lATK4Hhk005840@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 617\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 20:10:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CB8242CC3C\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 20:10:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATK4Hnd005842\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 15:04:17 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATK4Hhk005840\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 15:04:17 -0500\nDate: Thu, 29 Nov 2007 15:04:17 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38875 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 15:10:56 2007\nX-DSPAM-Confidence: 0.8433\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38875\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-29 15:04:16 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38875\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nRevving up util\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Thu Nov 29 14:42:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 14:42:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 14:42:25 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby brazil.mail.umich.edu () with ESMTP id lATJgLTd030511;\n\tThu, 29 Nov 2007 14:42:24 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 474F1617.CA1F7.21844 ; \n\t29 Nov 2007 14:42:18 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A2D0D8C5FA;\n\tThu, 29 Nov 2007 19:42:07 +0000 (GMT)\nMessage-ID: <200711291935.lATJZl4x005764@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 772\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 19:41:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BCC05236B9\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 19:41:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATJZlJB005766\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 14:35:47 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATJZl4x005764\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 14:35:47 -0500\nDate: Thu, 29 Nov 2007 14:35:47 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r38874 - gradebook/trunk/app/ui/src/webapp\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 14:42:25 2007\nX-DSPAM-Confidence: 0.8481\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38874\n\nAuthor: cwen@iupui.edu\nDate: 2007-11-29 14:35:46 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38874\n\nModified:\ngradebook/trunk/app/ui/src/webapp/gradebookSetup.jsp\nLog:\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12305\nSAK-12305\n=>\nget rid of \"I want to enter grades \nthat do not adhere to the standard grade entry type\"\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Thu Nov 29 14:30:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 14:30:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 14:30:17 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby flawless.mail.umich.edu () with ESMTP id lATJUFtA008085;\n\tThu, 29 Nov 2007 14:30:15 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 474F133D.3A139.25776 ; \n\t29 Nov 2007 14:30:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 480338DC2C;\n\tThu, 29 Nov 2007 19:30:03 +0000 (GMT)\nMessage-ID: <200711291923.lATJNUYf005741@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 596\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 19:29:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 941AC24E17\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 19:29:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATJNUje005743\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 14:23:30 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATJNUYf005741\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 14:23:30 -0500\nDate: Thu, 29 Nov 2007 14:23:30 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 14:30:17 2007\nX-DSPAM-Confidence: 0.8482\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38873\n\nAuthor: cwen@iupui.edu\nDate: 2007-11-29 14:23:28 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38873\n\nModified:\nassignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nsvn 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\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Nov 29 14:11:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 14:11:43 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 14:11:43 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby jacknife.mail.umich.edu () with ESMTP id lATJBgin016253;\n\tThu, 29 Nov 2007 14:11:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 474F0EC9.34F1B.16681 ; \n\t29 Nov 2007 14:11:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 848228DD40;\n\tThu, 29 Nov 2007 19:11:01 +0000 (GMT)\nMessage-ID: <200711291904.lATJ4V1c005717@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 902\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 19:10:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id F0D672CBED\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 19:10:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATJ4Vfj005719\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 14:04:31 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATJ4V1c005717\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 14:04:31 -0500\nDate: Thu, 29 Nov 2007 14:04:31 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38872 - authz/trunk/authz-impl/impl/src/sql/hsqldb\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 14:11:43 2007\nX-DSPAM-Confidence: 0.8467\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38872\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-29 14:04:29 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38872\n\nModified:\nauthz/trunk/authz-impl/impl/src/sql/hsqldb/sakai_realm.sql\nLog:\nSAK-12272\nNeeded to move one of the statements down to the next line for hsql.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Thu Nov 29 13:24:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 13:24:43 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 13:24:43 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby panther.mail.umich.edu () with ESMTP id lATIOggE007620;\n\tThu, 29 Nov 2007 13:24:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 474F03DF.7C93A.20853 ; \n\t29 Nov 2007 13:24:34 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BA3B87B63A;\n\tThu, 29 Nov 2007 18:16:04 +0000 (GMT)\nMessage-ID: <200711291755.lATHtKL8005622@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 115\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 18:00:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 42EB22CBCC\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 18:01:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATHtK6B005624\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 12:55:20 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATHtKL8005622\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 12:55:20 -0500\nDate: Thu, 29 Nov 2007 12:55:20 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r38871 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 13:24:43 2007\nX-DSPAM-Confidence: 0.8494\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38871\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-29 12:55:18 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38871\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties\nLog:\nCTools: incorporate latest assignment conversion revision, add acknowledgements to footer.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Thu Nov 29 12:59:59 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 12:59:59 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 12:59:59 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby faithful.mail.umich.edu () with ESMTP id lATHxwGk017494;\n\tThu, 29 Nov 2007 12:59:58 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 474EFDFF.110C.20587 ; \n\t29 Nov 2007 12:59:29 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5DD0D8DC13;\n\tThu, 29 Nov 2007 17:59:38 +0000 (GMT)\nMessage-ID: <200711291753.lATHr0Qk005599@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 198\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 17:59:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 806D12CBCC\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 17:59:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATHr0CN005601\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 12:53:00 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATHr0Qk005599\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 12:53:00 -0500\nDate: Thu, 29 Nov 2007 12:53:00 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r38870 - ctools/branches/ctools_2-4/ctools-reference/config\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 12:59:59 2007\nX-DSPAM-Confidence: 0.8499\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38870\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-29 12:52:59 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38870\n\nModified:\nctools/branches/ctools_2-4/ctools-reference/config/sakai.properties\nLog:\nCTools: add Acknowledgments to CTools footer.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Nov 29 12:58:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 12:58:53 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 12:58:53 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby faithful.mail.umich.edu () with ESMTP id lATHwqOt016902;\n\tThu, 29 Nov 2007 12:58:52 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 474EFDD7.453A6.10486 ; \n\t29 Nov 2007 12:58:50 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8CD1653A37;\n\tThu, 29 Nov 2007 17:58:55 +0000 (GMT)\nMessage-ID: <200711291752.lATHqMsQ005587@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 536\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 17:58:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1134C2CBCC\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 17:58:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATHqM4h005589\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 12:52:22 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATHqMsQ005587\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 12:52:22 -0500\nDate: Thu, 29 Nov 2007 12:52:22 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38869 - assignment/branches/post-2-4-solution1/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 12:58:53 2007\nX-DSPAM-Confidence: 0.8496\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38869\n\nAuthor: zqian@umich.edu\nDate: 2007-11-29 12:52:21 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38869\n\nModified:\nassignment/branches/post-2-4-solution1/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionController.java\nLog:\nshould put the commit inside the right place, instead of in the finally block\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Thu Nov 29 12:56:01 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 12:56:01 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 12:56:01 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby mission.mail.umich.edu () with ESMTP id lATHu0an015418;\n\tThu, 29 Nov 2007 12:56:00 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 474EFD2B.2EF7F.1042 ; \n\t29 Nov 2007 12:55:57 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B3D468DC14;\n\tThu, 29 Nov 2007 17:55:53 +0000 (GMT)\nMessage-ID: <200711291749.lATHn9PO005561@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 602\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 17:55:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EE4432CBCE\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 17:55:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATHn99P005563\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 12:49:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATHn9PO005561\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 12:49:09 -0500\nDate: Thu, 29 Nov 2007 12:49:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r38868 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 12:56:01 2007\nX-DSPAM-Confidence: 0.7620\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38868\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-29 12:49:08 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38868\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties\nLog:\nCTools: add fix for assignment conversion script to deal with commit.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Nov 29 12:52:23 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 12:52:23 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 12:52:23 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby panther.mail.umich.edu () with ESMTP id lATHqMdX015795;\n\tThu, 29 Nov 2007 12:52:22 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 474EFC51.18D2C.3231 ; \n\t29 Nov 2007 12:52:19 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2000E525E5;\n\tThu, 29 Nov 2007 17:52:15 +0000 (GMT)\nMessage-ID: <200711291745.lATHjsrt005549@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 933\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 17:52:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7790C2CBB1\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 17:52:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATHjsH1005551\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 12:45:54 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATHjsrt005549\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 12:45:54 -0500\nDate: Thu, 29 Nov 2007 12:45:54 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38867 - assignment/branches/post-2-4-solution1/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 12:52:23 2007\nX-DSPAM-Confidence: 0.8483\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38867\n\nAuthor: zqian@umich.edu\nDate: 2007-11-29 12:45:53 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38867\n\nModified:\nassignment/branches/post-2-4-solution1/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionController.java\nLog:\ncommit the connection to avoid the 'set transaction' problem\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Nov 29 12:49:55 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 12:49:55 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 12:49:55 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby mission.mail.umich.edu () with ESMTP id lATHnsZn011188;\n\tThu, 29 Nov 2007 12:49:54 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 474EFBB6.7946C.3180 ; \n\t29 Nov 2007 12:49:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C94FB525E5;\n\tThu, 29 Nov 2007 17:49:39 +0000 (GMT)\nMessage-ID: <200711291743.lATHhHs7005537@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 160\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 17:49:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4D77F2CBB1\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 17:49:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATHhHq2005539\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 12:43:17 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATHhHs7005537\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 12:43:17 -0500\nDate: Thu, 29 Nov 2007 12:43:17 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38866 - assignment/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 12:49:55 2007\nX-DSPAM-Confidence: 0.7600\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38866\n\nAuthor: zqian@umich.edu\nDate: 2007-11-29 12:43:15 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38866\n\nAdded:\nassignment/branches/post-2-4-solution1/\nLog:\nThis is short-life brach only for debugging conversion fixes\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom john.ellis@rsmart.com Thu Nov 29 12:35:26 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 12:35:26 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 12:35:26 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby chaos.mail.umich.edu () with ESMTP id lATHZPVB032426;\n\tThu, 29 Nov 2007 12:35:25 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 474EF857.9814B.8455 ; \n\t29 Nov 2007 12:35:22 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BBBB08DC00;\n\tThu, 29 Nov 2007 17:35:15 +0000 (GMT)\nMessage-ID: <200711291728.lATHSStf005479@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 900\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 17:34:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 763662CB8D\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 17:34:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATHSTnP005481\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 12:28:29 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATHSStf005479\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 12:28:28 -0500\nDate: Thu, 29 Nov 2007 12:28:28 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to john.ellis@rsmart.com using -f\nTo: source@collab.sakaiproject.org\nFrom: john.ellis@rsmart.com\nSubject: [sakai] svn commit: r38865 - reports/trunk/reports-impl/impl/src/java/org/sakaiproject/reports/logic/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 12:35:26 2007\nX-DSPAM-Confidence: 0.7558\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38865\n\nAuthor: john.ellis@rsmart.com\nDate: 2007-11-29 12:28:23 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38865\n\nModified:\nreports/trunk/reports-impl/impl/src/java/org/sakaiproject/reports/logic/impl/ReportsManagerImpl.java\nLog:\nSAK-12303\nchanged upgrade24 to default to false\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Nov 29 11:48:28 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 11:48:28 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 11:48:28 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby awakenings.mail.umich.edu () with ESMTP id lATGmRwa006094;\n\tThu, 29 Nov 2007 11:48:27 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 474EED55.F171A.5601 ; \n\t29 Nov 2007 11:48:24 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2CD2E8DBB6;\n\tThu, 29 Nov 2007 16:48:18 +0000 (GMT)\nMessage-ID: <200711291641.lATGfc17005328@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 200\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 16:47:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4BAFF2CB19\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 16:47:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATGfcHB005330\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 11:41:38 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATGfc17005328\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 11:41:38 -0500\nDate: Thu, 29 Nov 2007 11:41:38 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38864 - oncourse/branches/oncourse_OPC_122007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 11:48:28 2007\nX-DSPAM-Confidence: 0.8480\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38864\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-29 11:41:37 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38864\n\nModified:\noncourse/branches/oncourse_OPC_122007/\noncourse/branches/oncourse_OPC_122007/.externals\nLog:\nFixing up externals to include assignments post 2.4, SAK-12114, SAK-12073, SAK-12176, SAK-12160 to test opc deliverables\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Nov 29 11:43:11 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 11:43:11 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 11:43:11 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby score.mail.umich.edu () with ESMTP id lATGhACg013856;\n\tThu, 29 Nov 2007 11:43:10 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 474EEC05.561CE.20811 ; \n\t29 Nov 2007 11:42:48 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BA33179889;\n\tThu, 29 Nov 2007 16:42:42 +0000 (GMT)\nMessage-ID: <200711291636.lATGaKhx005280@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 39\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 16:42:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4AED32CB0D\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 16:42:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATGaKHd005282\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 11:36:20 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATGaKhx005280\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 11:36:20 -0500\nDate: Thu, 29 Nov 2007 11:36:20 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38863 - announcement/branches/oncourse_opc_122007/announcement-tool/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 11:43:11 2007\nX-DSPAM-Confidence: 0.8484\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38863\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-29 11:36:19 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38863\n\nModified:\nannouncement/branches/oncourse_opc_122007/announcement-tool/tool/project.xml\nLog:\nSAK-12160\nAlso need to add a maven1 dependency for this\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Nov 29 11:40:23 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 11:40:23 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 11:40:23 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby chaos.mail.umich.edu () with ESMTP id lATGeMLi032389;\n\tThu, 29 Nov 2007 11:40:22 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 474EEB70.CD8BE.23483 ; \n\t29 Nov 2007 11:40:19 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8380379889;\n\tThu, 29 Nov 2007 16:40:14 +0000 (GMT)\nMessage-ID: <200711291633.lATGXtNB005266@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 0\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 16:40:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 324442CB0D\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 16:40:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATGXtQk005268\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 11:33:55 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATGXtNB005266\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 11:33:55 -0500\nDate: Thu, 29 Nov 2007 11:33:55 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 11:40:23 2007\nX-DSPAM-Confidence: 0.7005\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38862\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-29 11:33:53 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38862\n\nModified:\nannouncement/branches/oncourse_opc_122007/announcement-tool/tool/pom.xml\nannouncement/branches/oncourse_opc_122007/announcement-tool/tool/src/bundle/announcement.properties\nannouncement/branches/oncourse_opc_122007/announcement-tool/tool/src/java/org/sakaiproject/announcement/tool/AnnouncementAction.java\nannouncement/branches/oncourse_opc_122007/announcement-tool/tool/src/webapp/vm/announcement/chef_announcements-metadata.vm\nLog:\nsvn merge -c 37682 https://source.sakaiproject.org/svn/announcement/trunk\nU    announcement-tool/tool/src/java/org/sakaiproject/announcement/tool/AnnouncementAction.java\nU    announcement-tool/tool/src/bundle/announcement.properties\nU    announcement-tool/tool/src/webapp/vm/announcement/chef_announcements-metadata.vm\nU    announcement-tool/tool/pom.xml\n\nsvn log -r 37682 https://source.sakaiproject.org/svn/announcement/trunk\n------------------------------------------------------------------------\nr37682 | gjthomas@iupui.edu | 2007-11-01 11:19:36 -0400 (Thu, 01 Nov 2007) | 3 lines\n\nSAK-12160\nAdds a direct link back to the associated assignment if certain criteria exists.\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Nov 29 11:37:34 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 11:37:34 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 11:37:34 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby godsend.mail.umich.edu () with ESMTP id lATGbXao008172;\n\tThu, 29 Nov 2007 11:37:33 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 474EEAC8.C60E0.15765 ; \n\t29 Nov 2007 11:37:31 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 844288DABB;\n\tThu, 29 Nov 2007 16:37:27 +0000 (GMT)\nMessage-ID: <200711291631.lATGV52L005248@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 712\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 16:37:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3CC482CB0D\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 16:37:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATGV5q3005250\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 11:31:05 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATGV52L005248\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 11:31:05 -0500\nDate: Thu, 29 Nov 2007 11:31:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38861 - announcement/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 11:37:34 2007\nX-DSPAM-Confidence: 0.7601\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38861\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-29 11:31:04 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38861\n\nAdded:\nannouncement/branches/oncourse_opc_122007/\nLog:\nCreating a new branch for opc deliverables, created from sakai_2-4-x @r31545\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Nov 29 11:35:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 11:35:37 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 11:35:37 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby panther.mail.umich.edu () with ESMTP id lATGZatf026690;\n\tThu, 29 Nov 2007 11:35:36 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 474EEA52.DAD20.10167 ; \n\t29 Nov 2007 11:35:33 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4562E8DB92;\n\tThu, 29 Nov 2007 16:35:19 +0000 (GMT)\nMessage-ID: <200711291629.lATGT0NY005230@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 9\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 16:35:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8B3DA2CB0D\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 16:35:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATGT1RN005232\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 11:29:01 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATGT0NY005230\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 11:29:01 -0500\nDate: Thu, 29 Nov 2007 11:29:01 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38860 - in calendar/branches/oncourse_opc_122007/calendar-tool/tool/src: bundle java/org/sakaiproject/calendar/tool webapp/vm/calendar\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 11:35:37 2007\nX-DSPAM-Confidence: 0.7007\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38860\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-29 11:28:59 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38860\n\nModified:\ncalendar/branches/oncourse_opc_122007/calendar-tool/tool/src/bundle/calendar.properties\ncalendar/branches/oncourse_opc_122007/calendar-tool/tool/src/java/org/sakaiproject/calendar/tool/CalendarAction.java\ncalendar/branches/oncourse_opc_122007/calendar-tool/tool/src/webapp/vm/calendar/chef_calendar_viewActivity.vm\nLog:\nsvn merge -c 37681 https://source.sakaiproject.org/svn/calendar/trunk\nU    calendar-tool/tool/src/java/org/sakaiproject/calendar/tool/CalendarAction.java\nU    calendar-tool/tool/src/bundle/calendar.properties\nU    calendar-tool/tool/src/webapp/vm/calendar/chef_calendar_viewActivity.vm\n\nsvn log -r 37681 https://source.sakaiproject.org/svn/calendar/trunk\n------------------------------------------------------------------------\nr37681 | gjthomas@iupui.edu | 2007-11-01 10:52:56 -0400 (Thu, 01 Nov 2007) | 3 lines\n\nSAK-12160\nAdds a direct link back to the associated assignment if certain criteria exists.\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Nov 29 11:32:27 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 11:32:27 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 11:32:27 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby chaos.mail.umich.edu () with ESMTP id lATGWQtg026907;\n\tThu, 29 Nov 2007 11:32:26 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 474EE991.4D96.4043 ; \n\t29 Nov 2007 11:32:19 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5C4648DB75;\n\tThu, 29 Nov 2007 16:32:13 +0000 (GMT)\nMessage-ID: <200711291625.lATGPprR005218@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 231\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 16:32:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 628AE2CB0D\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 16:32:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATGPp3x005220\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 11:25:51 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATGPprR005218\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 11:25:51 -0500\nDate: Thu, 29 Nov 2007 11:25:51 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38859 - calendar/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 11:32:27 2007\nX-DSPAM-Confidence: 0.6952\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38859\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-29 11:25:50 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38859\n\nAdded:\ncalendar/branches/oncourse_opc_122007/\nLog:\nCreating a new branch for opc deliverables, created from oncourse_2-4-x @r32689\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Nov 29 11:27:20 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 11:27:20 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 11:27:20 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby chaos.mail.umich.edu () with ESMTP id lATGRJiE023288;\n\tThu, 29 Nov 2007 11:27:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 474EE862.474E2.2949 ; \n\t29 Nov 2007 11:27:17 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BCFA48DB63;\n\tThu, 29 Nov 2007 16:27:10 +0000 (GMT)\nMessage-ID: <200711291620.lATGKkxQ005184@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 977\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 16:26:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 51AD52CAE6\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 16:26:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATGKkvx005186\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 11:20:46 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATGKkxQ005184\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 11:20:46 -0500\nDate: Thu, 29 Nov 2007 11:20:46 -0500\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [svn] revprop propchange - r37681 svn:log\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 11:27:20 2007\nX-DSPAM-Confidence: 0.8285\nX-DSPAM-Probability: 0.0000\n\nAuthor: chmaurer@iupui.edu\nRevision: 37681\nProperty Name: svn:log\n\nNew Property Value:\nSAK-12160\nAdds a direct link back to the associated assignment if certain criteria exists.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Nov 29 11:20:58 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 11:20:58 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 11:20:58 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby casino.mail.umich.edu () with ESMTP id lATGKuAm028636;\n\tThu, 29 Nov 2007 11:20:56 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 474EE6D7.61BC.11969 ; \n\t29 Nov 2007 11:20:41 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B4FB5767B0;\n\tThu, 29 Nov 2007 16:20:34 +0000 (GMT)\nMessage-ID: <200711291614.lATGEBub005146@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 432\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 16:20:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 569652CB0A\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 16:20:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATGEBTu005148\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 11:14:11 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATGEBub005146\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 11:14:11 -0500\nDate: Thu, 29 Nov 2007 11:14:11 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 11:20:58 2007\nX-DSPAM-Confidence: 0.8531\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38858\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-29 11:14:07 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38858\n\nAdded:\nmsgcntr/branches/oncourse_opc_122007/messageforums-app/src/sql/mysql/SAK-12176-mysql.sql\nmsgcntr/branches/oncourse_opc_122007/messageforums-app/src/sql/oracle/SAK-12176-oracle.sql\nModified:\nmsgcntr/branches/oncourse_opc_122007/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages.properties\nmsgcntr/branches/oncourse_opc_122007/messageforums-api/src/java/org/sakaiproject/api/app/messageforums/Area.java\nmsgcntr/branches/oncourse_opc_122007/messageforums-api/src/java/org/sakaiproject/api/app/messageforums/DefaultPermissionsManager.java\nmsgcntr/branches/oncourse_opc_122007/messageforums-api/src/java/org/sakaiproject/api/app/messageforums/ui/PrivateMessageManager.java\nmsgcntr/branches/oncourse_opc_122007/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java\nmsgcntr/branches/oncourse_opc_122007/messageforums-app/src/webapp/jsp/compose.jsp\nmsgcntr/branches/oncourse_opc_122007/messageforums-app/src/webapp/jsp/privateMsg/pvtMsgSettings.jsp\nmsgcntr/branches/oncourse_opc_122007/messageforums-app/src/webapp/jsp/pvtMsgForward.jsp\nmsgcntr/branches/oncourse_opc_122007/messageforums-app/src/webapp/jsp/pvtMsgReply.jsp\nmsgcntr/branches/oncourse_opc_122007/messageforums-app/src/webapp/jsp/pvtMsgReplyAll.jsp\nmsgcntr/branches/oncourse_opc_122007/messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/AreaManagerImpl.java\nmsgcntr/branches/oncourse_opc_122007/messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/DefaultPermissionsManagerImpl.java\nmsgcntr/branches/oncourse_opc_122007/messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/ui/PrivateMessageManagerImpl.java\nmsgcntr/branches/oncourse_opc_122007/messageforums-hbm/src/java/org/sakaiproject/component/app/messageforums/dao/hibernate/Area.hbm.xml\nmsgcntr/branches/oncourse_opc_122007/messageforums-hbm/src/java/org/sakaiproject/component/app/messageforums/dao/hibernate/AreaImpl.java\nLog:\nsvn merge -c 38119 https://source.sakaiproject.org/svn/msgcntr/trunk\nC    messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/AreaManagerImpl.java\nU    messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/DefaultPermissionsManagerImpl.java\nU    messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/ui/PrivateMessageManagerImpl.java\nU    messageforums-hbm/src/java/org/sakaiproject/component/app/messageforums/dao/hibernate/AreaImpl.java\nU    messageforums-hbm/src/java/org/sakaiproject/component/app/messageforums/dao/hibernate/Area.hbm.xml\nU    messageforums-api/src/java/org/sakaiproject/api/app/messageforums/DefaultPermissionsManager.java\nU    messageforums-api/src/java/org/sakaiproject/api/app/messageforums/Area.java\nU    messageforums-api/src/java/org/sakaiproject/api/app/messageforums/ui/PrivateMessageManager.java\nU    messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages.properties\nA    messageforums-app/src/sql/mysql/SAK-12176-mysql.sql\nA    messageforums-app/src/sql/oracle/SAK-12176-oracle.sql\nU    messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java\nU    messageforums-app/src/webapp/jsp/pvtMsgReplyAll.jsp\nU    messageforums-app/src/webapp/jsp/privateMsg/pvtMsgSettings.jsp\nU    messageforums-app/src/webapp/jsp/pvtMsgReply.jsp\nU    messageforums-app/src/webapp/jsp/pvtMsgForward.jsp\nU    messageforums-app/src/webapp/jsp/compose.jsp\n\nsvn merge -c 38136 https://source.sakaiproject.org/svn/msgcntr/trunk\nG    messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java\n\nsvn log -r 38119 https://source.sakaiproject.org/svn/msgcntr/trunk\n------------------------------------------------------------------------\nr38119 | wang58@iupui.edu | 2007-11-12 11:36:45 -0500 (Mon, 12 Nov 2007) | 1 line\n\nSAK-12176 Messages--send cc to recipients' email address(es).\n------------------------------------------------------------------------\n\nsvn log -r 38136 https://source.sakaiproject.org/svn/msgcntr/trunk\n------------------------------------------------------------------------\nr38136 | wang58@iupui.edu | 2007-11-13 13:24:54 -0500 (Tue, 13 Nov 2007) | 1 line\n\nSAK-12176 Messages--send cc to recipients' email address(es)\n------------------------------------------------------------------------\n\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Nov 29 10:54:46 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 10:54:46 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 10:54:46 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby mission.mail.umich.edu () with ESMTP id lATFsjTF027478;\n\tThu, 29 Nov 2007 10:54:45 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 474EE0BD.D26B7.1948 ; \n\t29 Nov 2007 10:54:40 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 961C260E4E;\n\tThu, 29 Nov 2007 15:47:33 +0000 (GMT)\nMessage-ID: <200711291548.lATFmBj8005044@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 692\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 15:47:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 44EA22CB05\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 15:54:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATFmBHT005046\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 10:48:11 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATFmBj8005044\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 10:48:11 -0500\nDate: Thu, 29 Nov 2007 10:48:11 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 10:54:46 2007\nX-DSPAM-Confidence: 0.8515\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38856\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-29 10:48:09 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38856\n\nAdded:\ngradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/BulkAssignmentDecoratedBean.java\ngradebook/branches/oncourse_opc_122007/app/ui/src/webapp/inc/bulkNewItems.jspf\ngradebook/branches/oncourse_opc_122007/app/ui/src/webapp/js/multiItemAdd.js\nModified:\ngradebook/branches/oncourse_opc_122007/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties\ngradebook/branches/oncourse_opc_122007/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java\ngradebook/branches/oncourse_opc_122007/app/ui/src/webapp/addAssignment.jsp\ngradebook/branches/oncourse_opc_122007/app/ui/src/webapp/inc/assignmentEditing.jspf\nLog:\nsvn merge -c 37748 https://source.sakaiproject.org/svn/gradebook/trunk\nC    app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java\nA    app/ui/src/java/org/sakaiproject/tool/gradebook/ui/BulkAssignmentDecoratedBean.java\nC    app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties\nA    app/ui/src/webapp/inc/bulkNewItems.jspf\nU    app/ui/src/webapp/inc/assignmentEditing.jspf\nA    app/ui/src/webapp/js/multiItemAdd.js\nU    app/ui/src/webapp/addAssignment.jsp\n\nsvn log -r 37748 https://source.sakaiproject.org/svn/gradebook/trunk\n------------------------------------------------------------------------\nr37748 | josrodri@iupui.edu | 2007-11-05 15:05:34 -0500 (Mon, 05 Nov 2007) | 1 line\n\nSAK-12114 (local issue ONC-2): allow multiple gradebook item additions at one time.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stuart.freeman@et.gatech.edu Thu Nov 29 10:03:05 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 10:03:05 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 10:03:06 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby jacknife.mail.umich.edu () with ESMTP id lATF33LS028674;\n\tThu, 29 Nov 2007 10:03:03 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 474ED4A0.4D722.12021 ; \n\t29 Nov 2007 10:02:59 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8919A4E6BE;\n\tThu, 29 Nov 2007 15:02:53 +0000 (GMT)\nMessage-ID: <200711291456.lATEuSdE004931@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 938\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 15:02:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8A4B32CACD\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 15:02:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATEuSjv004933\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 09:56:28 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATEuSdE004931\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 09:56:28 -0500\nDate: Thu, 29 Nov 2007 09:56:28 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: stuart.freeman@et.gatech.edu\nSubject: [sakai] svn commit: r38855 - util/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 10:03:06 2007\nX-DSPAM-Confidence: 0.6241\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38855\n\nAuthor: stuart.freeman@et.gatech.edu\nDate: 2007-11-29 09:56:27 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38855\n\nModified:\nutil/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util/FormattedText.java\nLog:\nSAK-12022 Editor has problems inserting links and setting target to new window\n\n--(stuart@mothra:pts/1)--------------------(/home/stuart/src/sakai_2-4-x/util)--\n--(0959:Thu,29 Nov 07:$)-- svn merge -r 33250:33251 https://source.sakaiproject.org/svn/util/trunk\nU    util-util/util/src/java/org/sakaiproject/util/FormattedText.java\n--(stuart@mothra:pts/1)--------------------(/home/stuart/src/sakai_2-4-x/util)--\n--(1000:Thu,29 Nov 07:$)-- ^merge^log\nsvn log -r 33250:33251 https://source.sakaiproject.org/svn/util/trunk\n------------------------------------------------------------------------\nr33251 | joshua.ryan@asu.edu | 2007-07-27 16:04:51 -0400 (Fri, 27 Jul 2007) | 5 lines\n\nSAK-10306 SAK-10810\n\nChanged 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.\n\n\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stuart.freeman@et.gatech.edu Thu Nov 29 09:51:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 09:51:43 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 09:51:43 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby casino.mail.umich.edu () with ESMTP id lATEpg30014268;\n\tThu, 29 Nov 2007 09:51:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 474ED1F4.64CBB.21735 ; \n\t29 Nov 2007 09:51:35 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4923958597;\n\tThu, 29 Nov 2007 14:51:37 +0000 (GMT)\nMessage-ID: <200711291445.lATEj9TB004864@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 556\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 14:51:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 57CFF2CABF\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 14:51:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATEj9UP004866\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 09:45:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATEj9TB004864\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 09:45:09 -0500\nDate: Thu, 29 Nov 2007 09:45:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: stuart.freeman@et.gatech.edu\nSubject: [sakai] svn commit: r38854 - site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 09:51:43 2007\nX-DSPAM-Confidence: 0.7009\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38854\n\nAuthor: stuart.freeman@et.gatech.edu\nDate: 2007-11-29 09:45:07 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38854\n\nModified:\nsite-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nLog:\nSAK-11161 Group realm not updated when a role is changed via Site Info\n\n--(stuart@mothra:pts/1)-------------(/home/stuart/src/sakai_2-4-x/site-manage)--\n--(0921:Thu,29 Nov 07:$)-- svn merge -r 34359:34360 https://source.sakaiproject.org/svn/site-manage/trunk/\nU    site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\n--(stuart@mothra:pts/1)-------------(/home/stuart/src/sakai_2-4-x/site-manage)--\n--(0922:Thu,29 Nov 07:$)-- ^merge^log\nsvn log -r 34359:34360 https://source.sakaiproject.org/svn/site-manage/trunk/\n------------------------------------------------------------------------\nr34360 | zqian@umich.edu | 2007-08-24 11:19:48 -0400 (Fri, 24 Aug 2007) | 1 line\n\nfix to SAK-11161:Group realm not updated when a role is changed via Site Info\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Nov 29 09:46:57 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 09:46:57 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 09:46:57 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby casino.mail.umich.edu () with ESMTP id lATEkuc6011089;\n\tThu, 29 Nov 2007 09:46:56 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 474ED0D0.9DAC8.29210 ; \n\t29 Nov 2007 09:46:53 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B21EA58423;\n\tThu, 29 Nov 2007 14:46:38 +0000 (GMT)\nMessage-ID: <200711291440.lATEeEdC004852@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 162\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 14:46:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1F11727496\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 14:46:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATEeEGj004854\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 09:40:14 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATEeEdC004852\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 09:40:14 -0500\nDate: Thu, 29 Nov 2007 09:40:14 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38853 - assignment/branches/post-2-4\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 09:46:57 2007\nX-DSPAM-Confidence: 0.8488\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38853\n\nAuthor: zqian@umich.edu\nDate: 2007-11-29 09:40:13 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38853\n\nModified:\nassignment/branches/post-2-4/runconversion_readme.txt\nassignment/branches/post-2-4/upgradeschema_oracle.config\nLog:\nmerge SAK-11821 into post-2-4: Oracle has certain length constraint on the index name. Make it shorter\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jleasia@umich.edu Thu Nov 29 09:29:26 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 09:29:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 09:29:25 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby mission.mail.umich.edu () with ESMTP id lATETP6C016147;\n\tThu, 29 Nov 2007 09:29:25 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 474ECCBF.C21CE.2334 ; \n\t29 Nov 2007 09:29:22 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A880D8C254;\n\tThu, 29 Nov 2007 14:29:24 +0000 (GMT)\nMessage-ID: <200711291422.lATEMrIH004832@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 495\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 14:29:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id ABA452953D\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 14:29:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATEMrG9004834\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 09:22:53 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATEMrIH004832\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 09:22:53 -0500\nDate: Thu, 29 Nov 2007 09:22:53 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jleasia@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jleasia@umich.edu\nSubject: [sakai] svn commit: r38852 - ctools/trunk/ctools-reference/config\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 09:29:25 2007\nX-DSPAM-Confidence: 0.7606\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38852\n\nAuthor: jleasia@umich.edu\nDate: 2007-11-29 09:22:51 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38852\n\nModified:\nctools/trunk/ctools-reference/config/sakai.properties\nLog:\nCT-399 add acknowledgments link to footer\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Nov 29 09:26:10 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 09:26:10 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 09:26:10 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby panther.mail.umich.edu () with ESMTP id lATEQ9fS024102;\n\tThu, 29 Nov 2007 09:26:09 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 474ECBFB.BFFE6.32456 ; \n\t29 Nov 2007 09:26:06 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 938968D9ED;\n\tThu, 29 Nov 2007 14:26:05 +0000 (GMT)\nMessage-ID: <200711291419.lATEJYPX004809@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 786\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 14:25:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4E5742953D\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 14:25:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATEJYPR004811\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 09:19:34 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATEJYPX004809\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 09:19:34 -0500\nDate: Thu, 29 Nov 2007 09:19:34 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38851 - gradebook/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 09:26:10 2007\nX-DSPAM-Confidence: 0.7607\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38851\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-29 09:19:33 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38851\n\nAdded:\ngradebook/branches/oncourse_opc_122007/\nLog:\nCreating a new branch for opc deliverables, created from oncourse_2-4-x @r38084\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Nov 29 09:23:55 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 09:23:55 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 09:23:55 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby awakenings.mail.umich.edu () with ESMTP id lATENsUA027647;\n\tThu, 29 Nov 2007 09:23:54 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 474ECB74.2C367.5819 ; \n\t29 Nov 2007 09:23:50 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2E51E7C9A5;\n\tThu, 29 Nov 2007 14:23:51 +0000 (GMT)\nMessage-ID: <200711291417.lATEH7OV004797@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 483\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 14:23:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7704A2953D\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 14:23:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATEH7YQ004799\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 09:17:07 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATEH7OV004797\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 09:17:07 -0500\nDate: Thu, 29 Nov 2007 09:17:07 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38850 - msgcntr/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 09:23:55 2007\nX-DSPAM-Confidence: 0.7605\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38850\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-29 09:17:06 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38850\n\nAdded:\nmsgcntr/branches/oncourse_opc_122007/\nLog:\nCreating a new branch for opc deliverables, created from oncourse_2-4-x @r38092\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Nov 29 09:12:52 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 09:12:52 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 09:12:52 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby mission.mail.umich.edu () with ESMTP id lATECpX3004161;\n\tThu, 29 Nov 2007 09:12:51 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 474EC8DD.30EE4.13237 ; \n\t29 Nov 2007 09:12:48 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D29557ACC7;\n\tThu, 29 Nov 2007 14:12:46 +0000 (GMT)\nMessage-ID: <200711291406.lATE6KYb004785@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 59\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 14:12:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8683E2CAC4\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 14:12:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lATE6LaY004787\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 09:06:21 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lATE6KYb004785\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 09:06:20 -0500\nDate: Thu, 29 Nov 2007 09:06:20 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38849 - oncourse/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 09:12:52 2007\nX-DSPAM-Confidence: 0.6957\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38849\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-29 09:06:20 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38849\n\nAdded:\noncourse/branches/oncourse_OPC_122007/\nLog:\nCopying 2.4.x externals to start opc testing\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gopal.ramasammycook@gmail.com Thu Nov 29 02:49:16 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 29 Nov 2007 02:49:16 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 29 Nov 2007 02:49:16 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby mission.mail.umich.edu () with ESMTP id lAT7nELH018799;\n\tThu, 29 Nov 2007 02:49:14 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 474E6EF6.199D5.9964 ; \n\t29 Nov 2007 02:49:12 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8394D8D4EB;\n\tThu, 29 Nov 2007 07:49:04 +0000 (GMT)\nMessage-ID: <200711290742.lAT7gfM9003864@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 41\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 07:48:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AC1282C986\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 07:48:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAT7gfJ5003866\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 02:42:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAT7gfM9003864\n\tfor source@collab.sakaiproject.org; Thu, 29 Nov 2007 02:42:41 -0500\nDate: Thu, 29 Nov 2007 02:42:41 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f\nTo: source@collab.sakaiproject.org\nFrom: gopal.ramasammycook@gmail.com\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 29 02:49:16 2007\nX-DSPAM-Confidence: 0.7555\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38848\n\nAuthor: gopal.ramasammycook@gmail.com\nDate: 2007-11-29 02:42:17 -0500 (Thu, 29 Nov 2007)\nNew Revision: 38848\n\nModified:\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramQuestionScoresBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramScoresBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/HistogramListener.java\nsam/branches/SAK-12065/samigo-app/src/webapp/jsf/evaluation/histogramScores.jsp\nLog:\nSAK-12065 Discrimination Statistics\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Wed Nov 28 22:22:31 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 28 Nov 2007 22:22:31 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 28 Nov 2007 22:22:31 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby flawless.mail.umich.edu () with ESMTP id lAT3MV14012053;\n\tWed, 28 Nov 2007 22:22:31 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 474E3070.7E63D.29753 ; \n\t28 Nov 2007 22:22:27 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8562A8C953;\n\tThu, 29 Nov 2007 03:22:22 +0000 (GMT)\nMessage-ID: <200711290315.lAT3FqwB003133@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 550\n          for <source@collab.sakaiproject.org>;\n          Thu, 29 Nov 2007 03:21:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BD5102C988\n\tfor <source@collab.sakaiproject.org>; Thu, 29 Nov 2007 03:21:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAT3FqMl003135\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 22:15:52 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAT3FqwB003133\n\tfor source@collab.sakaiproject.org; Wed, 28 Nov 2007 22:15:52 -0500\nDate: Wed, 28 Nov 2007 22:15:52 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r38847 - ctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 28 22:22:31 2007\nX-DSPAM-Confidence: 0.8507\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38847\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-28 22:15:50 -0500 (Wed, 28 Nov 2007)\nNew Revision: 38847\n\nAdded:\nctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion/checkconversion.sh\nModified:\nctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion/runconversion.sh\nLog:\nCTools: generalize runconversion and add checkconversion script to check setup for conversion.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Wed Nov 28 16:53:34 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 28 Nov 2007 16:53:34 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 28 Nov 2007 16:53:34 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby sleepers.mail.umich.edu () with ESMTP id lASLrXpp021438;\n\tWed, 28 Nov 2007 16:53:33 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 474DE357.D512C.15836 ; \n\t28 Nov 2007 16:53:30 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 890648CF85;\n\tWed, 28 Nov 2007 21:53:20 +0000 (GMT)\nMessage-ID: <200711282147.lASLl9Hq002773@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 692\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 21:53:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 02C6A2C399\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 21:53:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASLl9M7002775\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 16:47:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASLl9Hq002773\n\tfor source@collab.sakaiproject.org; Wed, 28 Nov 2007 16:47:09 -0500\nDate: Wed, 28 Nov 2007 16:47:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38846 - content/branches/SAK-12105\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 28 16:53:34 2007\nX-DSPAM-Confidence: 0.9824\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38846\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-11-28 16:47:06 -0500 (Wed, 28 Nov 2007)\nNew Revision: 38846\n\nModified:\ncontent/branches/SAK-12105/pom.xml\nLog:\nSAK-12105 removing the providers from the JCR profile until i actually get it start up with them\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Wed Nov 28 16:25:48 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 28 Nov 2007 16:25:48 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 28 Nov 2007 16:25:48 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby flawless.mail.umich.edu () with ESMTP id lASLPl4u023330;\n\tWed, 28 Nov 2007 16:25:47 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 474DDCD3.95C5C.15078 ; \n\t28 Nov 2007 16:25:42 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4A8408CF60;\n\tWed, 28 Nov 2007 21:25:34 +0000 (GMT)\nMessage-ID: <200711282119.lASLJ43Z002613@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 307\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 21:25:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 670952C38A\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 21:25:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASLJ5Z6002620\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 16:19:05 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASLJ43Z002613\n\tfor source@collab.sakaiproject.org; Wed, 28 Nov 2007 16:19:04 -0500\nDate: Wed, 28 Nov 2007 16:19:04 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r38844 - ctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 28 16:25:48 2007\nX-DSPAM-Confidence: 0.9876\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38844\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-28 16:19:02 -0500 (Wed, 28 Nov 2007)\nNew Revision: 38844\n\nModified:\nctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion/runconversion.sh\nctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion/upgradeschema_oracle.config\nLog:\nCTools: first pass on specific revisions for CTools.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Nov 28 16:25:45 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 28 Nov 2007 16:25:45 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 28 Nov 2007 16:25:45 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby faithful.mail.umich.edu () with ESMTP id lASLPiHf030508;\n\tWed, 28 Nov 2007 16:25:44 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 474DDCD1.CB87E.10844 ; \n\t28 Nov 2007 16:25:40 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 269208CF51;\n\tWed, 28 Nov 2007 21:25:35 +0000 (GMT)\nMessage-ID: <200711282119.lASLJ54K002624@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 336\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 21:25:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3925B2C38C\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 21:25:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASLJ6Tm002627\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 16:19:06 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASLJ54K002624\n\tfor source@collab.sakaiproject.org; Wed, 28 Nov 2007 16:19:05 -0500\nDate: Wed, 28 Nov 2007 16:19:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38845 - in content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl: . jcr\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 28 16:25:45 2007\nX-DSPAM-Confidence: 0.9885\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38845\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-28 16:18:58 -0500 (Wed, 28 Nov 2007)\nNew Revision: 38845\n\nModified:\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/BaseJCRStorage.java\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRStorageUser.java\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/SakaiConstants.java\nLog:\nSAK-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\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Wed Nov 28 16:00:39 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 28 Nov 2007 16:00:39 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 28 Nov 2007 16:00:39 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby faithful.mail.umich.edu () with ESMTP id lASL0cuV015086;\n\tWed, 28 Nov 2007 16:00:38 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 474DD6E1.28F4E.28948 ; \n\t28 Nov 2007 16:00:19 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id ACEEA8CF0D;\n\tWed, 28 Nov 2007 21:00:13 +0000 (GMT)\nMessage-ID: <200711282053.lASKrtJg002565@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 776\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 20:59:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8BA6829514\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 21:00:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASKruWq002567\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 15:53:56 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASKrtJg002565\n\tfor source@collab.sakaiproject.org; Wed, 28 Nov 2007 15:53:55 -0500\nDate: Wed, 28 Nov 2007 15:53:55 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r38843 - ctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 28 16:00:39 2007\nX-DSPAM-Confidence: 0.9874\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38843\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-28 15:53:53 -0500 (Wed, 28 Nov 2007)\nNew Revision: 38843\n\nRemoved:\nctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion/upgradeschema_mysql.config\nModified:\nctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion/runconversion.sh\nctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion/runconversion_readme.txt\nctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion/upgradeschema_oracle.config\nLog:\nCTools: add keywords, remove unneeded config file.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Wed Nov 28 15:58:46 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 28 Nov 2007 15:58:46 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 28 Nov 2007 15:58:46 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby jacknife.mail.umich.edu () with ESMTP id lASKweUK000759;\n\tWed, 28 Nov 2007 15:58:40 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 474DD667.A2A51.25744 ; \n\t28 Nov 2007 15:58:18 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9CB188B2E2;\n\tWed, 28 Nov 2007 20:58:11 +0000 (GMT)\nMessage-ID: <200711282051.lASKpqVm002553@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 998\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 20:57:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AA2AD2C0FE\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 20:57:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASKpqBX002555\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 15:51:52 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASKpqVm002553\n\tfor source@collab.sakaiproject.org; Wed, 28 Nov 2007 15:51:52 -0500\nDate: Wed, 28 Nov 2007 15:51:52 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r38842 - in ctools/trunk/builds/ctools_2-4/db-conversion/2-4-x: . assignment-db-conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 28 15:58:46 2007\nX-DSPAM-Confidence: 0.8488\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38842\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-28 15:51:50 -0500 (Wed, 28 Nov 2007)\nNew Revision: 38842\n\nAdded:\nctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion/\nctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion/README.txt\nctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion/runconversion.sh\nctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion/runconversion_readme.txt\nctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion/upgradeschema_mysql.config\nctools/trunk/builds/ctools_2-4/db-conversion/2-4-x/assignment-db-conversion/upgradeschema_oracle.config\nLog:\nCTools: initial version of the assignment db conversion scripts for 2.4.xQ\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Wed Nov 28 15:51:00 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 28 Nov 2007 15:51:00 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 28 Nov 2007 15:51:00 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby mission.mail.umich.edu () with ESMTP id lASKoxA8001837;\n\tWed, 28 Nov 2007 15:50:59 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 474DD4AD.8A1AC.8772 ; \n\t28 Nov 2007 15:50:56 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DB67F8B2E2;\n\tWed, 28 Nov 2007 20:50:54 +0000 (GMT)\nMessage-ID: <200711282044.lASKiQeh002541@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 863\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 20:50:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6E49629514\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 20:50:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASKiQ4b002543\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 15:44:26 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASKiQeh002541\n\tfor source@collab.sakaiproject.org; Wed, 28 Nov 2007 15:44:26 -0500\nDate: Wed, 28 Nov 2007 15:44:26 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r38841 - oncourse/trunk/src/jobscheduler/scheduler-component-shared/src/java/org/sakaiproject/component/app/scheduler/jobs\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 28 15:51:00 2007\nX-DSPAM-Confidence: 0.9820\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38841\n\nAuthor: cwen@iupui.edu\nDate: 2007-11-28 15:44:25 -0500 (Wed, 28 Nov 2007)\nNew Revision: 38841\n\nModified:\noncourse/trunk/src/jobscheduler/scheduler-component-shared/src/java/org/sakaiproject/component/app/scheduler/jobs/Fall2007CourseSync.java\nLog:\nhttps://uisapp2.iu.edu/jira/browse/ONC-260\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Wed Nov 28 15:11:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 28 Nov 2007 15:11:53 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 28 Nov 2007 15:11:53 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby fan.mail.umich.edu () with ESMTP id lASKBqGC016611;\n\tWed, 28 Nov 2007 15:11:52 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 474DCB75.62E34.28429 ; \n\t28 Nov 2007 15:11:36 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BCEC28B2E2;\n\tWed, 28 Nov 2007 20:11:30 +0000 (GMT)\nMessage-ID: <200711282005.lASK5BVO002500@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 905\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 20:11:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 38E7124B62\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 20:11:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASK5BtL002502\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 15:05:11 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASK5BVO002500\n\tfor source@collab.sakaiproject.org; Wed, 28 Nov 2007 15:05:11 -0500\nDate: Wed, 28 Nov 2007 15:05:11 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r38840 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 28 15:11:53 2007\nX-DSPAM-Confidence: 0.9836\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38840\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-28 15:05:09 -0500 (Wed, 28 Nov 2007)\nNew Revision: 38840\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties\nLog:\nCTools: need new revision of entity.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Wed Nov 28 14:42:06 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 28 Nov 2007 14:42:06 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 28 Nov 2007 14:42:06 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby panther.mail.umich.edu () with ESMTP id lASJg5ZB025416;\n\tWed, 28 Nov 2007 14:42:05 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 474DC485.58357.25605 ; \n\t28 Nov 2007 14:42:00 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 700878CCF3;\n\tWed, 28 Nov 2007 19:41:58 +0000 (GMT)\nMessage-ID: <200711281935.lASJZYQ1002371@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1000\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 19:41:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 533502C0F6\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 19:41:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASJZY1w002373\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 14:35:34 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASJZYQ1002371\n\tfor source@collab.sakaiproject.org; Wed, 28 Nov 2007 14:35:34 -0500\nDate: Wed, 28 Nov 2007 14:35:34 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38839 - assignment/branches/post-2-4\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 28 14:42:06 2007\nX-DSPAM-Confidence: 0.9875\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38839\n\nAuthor: zqian@umich.edu\nDate: 2007-11-28 14:35:33 -0500 (Wed, 28 Nov 2007)\nNew Revision: 38839\n\nModified:\nassignment/branches/post-2-4/runconversion_readme.txt\nLog:\nSAK-11821 in post-2-4: added comment inside the readme file to warn the possible compiling problem\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Wed Nov 28 14:17:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 28 Nov 2007 14:17:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 28 Nov 2007 14:17:02 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby mission.mail.umich.edu () with ESMTP id lASJH1Dh025313;\n\tWed, 28 Nov 2007 14:17:01 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 474DBEA6.9C553.11085 ; \n\t28 Nov 2007 14:16:58 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DF6838CD64;\n\tWed, 28 Nov 2007 19:16:46 +0000 (GMT)\nMessage-ID: <200711281910.lASJAPh3002343@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 403\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 19:16:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 53DA024C30\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 19:16:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASJAPZ0002345\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 14:10:25 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASJAPh3002343\n\tfor source@collab.sakaiproject.org; Wed, 28 Nov 2007 14:10:25 -0500\nDate: Wed, 28 Nov 2007 14:10:25 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r38838 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 28 14:17:02 2007\nX-DSPAM-Confidence: 0.9865\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38838\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-28 14:10:23 -0500 (Wed, 28 Nov 2007)\nNew Revision: 38838\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties\nLog:\nCTools: update util for the assignment db conversion.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom antranig@caret.cam.ac.uk Wed Nov 28 13:35:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 28 Nov 2007 13:35:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 28 Nov 2007 13:35:51 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby casino.mail.umich.edu () with ESMTP id lASIZoAS018513;\n\tWed, 28 Nov 2007 13:35:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 474DB4FE.88A03.13291 ; \n\t28 Nov 2007 13:35:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5A4CF8CD1C;\n\tWed, 28 Nov 2007 18:30:16 +0000 (GMT)\nMessage-ID: <200711281828.lASISQ1k002195@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 595\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 18:29:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 53C302BEEF\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 18:34:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASISQw6002197\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 13:28:26 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASISQ1k002195\n\tfor source@collab.sakaiproject.org; Wed, 28 Nov 2007 13:28:26 -0500\nDate: Wed, 28 Nov 2007 13:28:26 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: antranig@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38837 - site/branches/SAK-12203/site-impl/impl/src/java/org/sakaiproject/site/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 28 13:35:51 2007\nX-DSPAM-Confidence: 0.8430\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38837\n\nAuthor: antranig@caret.cam.ac.uk\nDate: 2007-11-28 13:28:20 -0500 (Wed, 28 Nov 2007)\nNew Revision: 38837\n\nModified:\nsite/branches/SAK-12203/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSite.java\nLog:\nSAK-12203: Fixed constructor to pass service through\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Wed Nov 28 13:12:49 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 28 Nov 2007 13:12:49 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 28 Nov 2007 13:12:49 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby faithful.mail.umich.edu () with ESMTP id lASICmb9013743;\n\tWed, 28 Nov 2007 13:12:48 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 474DAF7F.15F82.29920 ; \n\t28 Nov 2007 13:12:17 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B495D8C894;\n\tWed, 28 Nov 2007 18:06:25 +0000 (GMT)\nMessage-ID: <200711281805.lASI5WgU002179@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 955\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 18:05:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6CEC82BD1B\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 18:11:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASI5Wb6002181\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 13:05:32 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASI5WgU002179\n\tfor source@collab.sakaiproject.org; Wed, 28 Nov 2007 13:05:32 -0500\nDate: Wed, 28 Nov 2007 13:05:32 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38836 - user/trunk\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 28 13:12:49 2007\nX-DSPAM-Confidence: 0.8431\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38836\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-28 13:05:28 -0500 (Wed, 28 Nov 2007)\nNew Revision: 38836\n\nModified:\nuser/trunk/pom.xml\nLog:\nNOJIRA\nI cant spell framework, sorry.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zach.thomas@txstate.edu Wed Nov 28 12:42:44 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 28 Nov 2007 12:42:44 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 28 Nov 2007 12:42:44 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby chaos.mail.umich.edu () with ESMTP id lASHgfWv001356;\n\tWed, 28 Nov 2007 12:42:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 474DA88A.358C9.18698 ; \n\t28 Nov 2007 12:42:37 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BF8167CAC0;\n\tWed, 28 Nov 2007 17:42:26 +0000 (GMT)\nMessage-ID: <200711281735.lASHZvCD002142@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 32\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 17:42:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4BDF82BDE5\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 17:42:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASHZw4S002144\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 12:35:58 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASHZvCD002142\n\tfor source@collab.sakaiproject.org; Wed, 28 Nov 2007 12:35:57 -0500\nDate: Wed, 28 Nov 2007 12:35:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zach.thomas@txstate.edu\nSubject: [sakai] svn commit: r38835 - mailarchive/trunk/mailarchive-james/james/src/java/org/sakaiproject/james\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 28 12:42:44 2007\nX-DSPAM-Confidence: 0.9860\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38835\n\nAuthor: zach.thomas@txstate.edu\nDate: 2007-11-28 12:35:55 -0500 (Wed, 28 Nov 2007)\nNew Revision: 38835\n\nModified:\nmailarchive/trunk/mailarchive-james/james/src/java/org/sakaiproject/james/SakaiMailet.java\nLog:\nSAK-11973 removing extraneous line breaks from incoming messages to the mail archive.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Wed Nov 28 12:35:49 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 28 Nov 2007 12:35:49 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 28 Nov 2007 12:35:49 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby jacknife.mail.umich.edu () with ESMTP id lASHZmhk028004;\n\tWed, 28 Nov 2007 12:35:48 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 474DA6EE.94F44.19992 ; \n\t28 Nov 2007 12:35:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1CF148CAE6;\n\tWed, 28 Nov 2007 17:35:43 +0000 (GMT)\nMessage-ID: <200711281729.lASHTO9t002113@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 698\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 17:35:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5ADE82BDE5\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 17:35:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASHTOH1002115\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 12:29:24 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASHTO9t002113\n\tfor source@collab.sakaiproject.org; Wed, 28 Nov 2007 12:29:24 -0500\nDate: Wed, 28 Nov 2007 12:29:24 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r38834 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 28 12:35:49 2007\nX-DSPAM-Confidence: 0.9859\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38834\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-28 12:29:23 -0500 (Wed, 28 Nov 2007)\nNew Revision: 38834\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties\nLog:\nCTools: update 2.4.xQ for new assignments code.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Nov 28 12:34:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 28 Nov 2007 12:34:37 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 28 Nov 2007 12:34:37 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby jacknife.mail.umich.edu () with ESMTP id lASHYa6X027012;\n\tWed, 28 Nov 2007 12:34:36 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 474DA6A4.D4DD7.15882 ; \n\t28 Nov 2007 12:34:31 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 585F48CB8E;\n\tWed, 28 Nov 2007 17:34:29 +0000 (GMT)\nMessage-ID: <200711281728.lASHS5fS002097@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 647\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 17:34:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1B83A2BDE5\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 17:34:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASHS5Qn002099\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 12:28:05 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASHS5fS002097\n\tfor source@collab.sakaiproject.org; Wed, 28 Nov 2007 12:28:05 -0500\nDate: Wed, 28 Nov 2007 12:28:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38833 - content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 28 12:34:37 2007\nX-DSPAM-Confidence: 0.7598\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38833\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-28 12:28:00 -0500 (Wed, 28 Nov 2007)\nNew Revision: 38833\n\nModified:\ncontent/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java\nLog:\nSAK-12105: Fixed a bug in the user simulation which caused it to never remove the content, oops, works now\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Wed Nov 28 11:26:15 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 28 Nov 2007 11:26:15 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 28 Nov 2007 11:26:15 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby sleepers.mail.umich.edu () with ESMTP id lASGQEDo026652;\n\tWed, 28 Nov 2007 11:26:14 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 474D96A0.CD068.5990 ; \n\t28 Nov 2007 11:26:11 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9B0F68C948;\n\tWed, 28 Nov 2007 16:26:07 +0000 (GMT)\nMessage-ID: <200711281619.lASGJeXt001919@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 470\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 16:25:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id F189C2BD0A\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 16:25:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASGJe3w001921\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 11:19:40 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASGJeXt001919\n\tfor source@collab.sakaiproject.org; Wed, 28 Nov 2007 11:19:40 -0500\nDate: Wed, 28 Nov 2007 11:19:40 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38832 - util/branches/SAK-12239\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 28 11:26:15 2007\nX-DSPAM-Confidence: 0.9862\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38832\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-28 11:19:39 -0500 (Wed, 28 Nov 2007)\nNew Revision: 38832\n\nAdded:\nutil/branches/SAK-12239/sakai_2-4-x/\nLog:\nSAK-12239\nCreating branch for post-2.4 work related to content-hosting based on sakai-2.4.x\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Wed Nov 28 11:26:15 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 28 Nov 2007 11:26:15 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 28 Nov 2007 11:26:15 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby brazil.mail.umich.edu () with ESMTP id lASGQE3X006047;\n\tWed, 28 Nov 2007 11:26:14 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 474D9691.95CEB.16889 ; \n\t28 Nov 2007 11:25:56 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C76318C953;\n\tWed, 28 Nov 2007 16:25:40 +0000 (GMT)\nMessage-ID: <200711281619.lASGJCpd001907@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 486\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 16:25:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 211EC2BD0D\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 16:25:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASGJCWq001909\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 11:19:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASGJCpd001907\n\tfor source@collab.sakaiproject.org; Wed, 28 Nov 2007 11:19:12 -0500\nDate: Wed, 28 Nov 2007 11:19:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38831 - content/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 28 11:26:15 2007\nX-DSPAM-Confidence: 0.9852\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38831\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-28 11:19:11 -0500 (Wed, 28 Nov 2007)\nNew Revision: 38831\n\nAdded:\ncontent/branches/SAK-12239/\nLog:\nSAK-12239\nCreating branch for post-2.4 work related to content-hosting based on sakai-2.4.x\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Wed Nov 28 11:25:28 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 28 Nov 2007 11:25:28 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 28 Nov 2007 11:25:28 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby jacknife.mail.umich.edu () with ESMTP id lASGPRSB003285;\n\tWed, 28 Nov 2007 11:25:27 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 474D9669.962E4.25202 ; \n\t28 Nov 2007 11:25:16 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 49AD58C909;\n\tWed, 28 Nov 2007 16:25:11 +0000 (GMT)\nMessage-ID: <200711281618.lASGIllX001895@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 910\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 16:24:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9D782296AC\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 16:24:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASGIlXu001897\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 11:18:47 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASGIllX001895\n\tfor source@collab.sakaiproject.org; Wed, 28 Nov 2007 11:18:47 -0500\nDate: Wed, 28 Nov 2007 11:18:47 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38830 - db/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 28 11:25:28 2007\nX-DSPAM-Confidence: 0.9852\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38830\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-28 11:18:45 -0500 (Wed, 28 Nov 2007)\nNew Revision: 38830\n\nAdded:\ndb/branches/SAK-12239/\nLog:\nSAK-12239\nCreating branch for post-2.4 work related to content-hosting based on sakai-2.4.x\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Wed Nov 28 11:25:16 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 28 Nov 2007 11:25:16 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 28 Nov 2007 11:25:16 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby flawless.mail.umich.edu () with ESMTP id lASGPFm6015248;\n\tWed, 28 Nov 2007 11:25:15 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 474D964B.55E0D.4110 ; \n\t28 Nov 2007 11:24:50 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5519B8C8FB;\n\tWed, 28 Nov 2007 16:24:29 +0000 (GMT)\nMessage-ID: <200711281618.lASGI97e001883@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 640\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 16:24:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BE36D296AC\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 16:24:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASGI92E001885\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 11:18:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASGI97e001883\n\tfor source@collab.sakaiproject.org; Wed, 28 Nov 2007 11:18:09 -0500\nDate: Wed, 28 Nov 2007 11:18:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38829 - entity/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 28 11:25:16 2007\nX-DSPAM-Confidence: 0.9858\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38829\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-28 11:18:08 -0500 (Wed, 28 Nov 2007)\nNew Revision: 38829\n\nAdded:\nentity/branches/SAK-12239/\nLog:\nSAK-12239\nCreating branch for post-2.4 work related to content-hosting based on sakai-2.4.x\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Wed Nov 28 11:23:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 28 Nov 2007 11:23:13 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 28 Nov 2007 11:23:13 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby awakenings.mail.umich.edu () with ESMTP id lASGNCUo023029;\n\tWed, 28 Nov 2007 11:23:12 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 474D95D1.A23D0.1221 ; \n\t28 Nov 2007 11:22:44 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E7C188C88E;\n\tWed, 28 Nov 2007 16:22:32 +0000 (GMT)\nMessage-ID: <200711281616.lASGG23O001871@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 377\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 16:22:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7F22F296D2\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 16:22:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASGG2dj001873\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 11:16:02 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASGG23O001871\n\tfor source@collab.sakaiproject.org; Wed, 28 Nov 2007 11:16:02 -0500\nDate: Wed, 28 Nov 2007 11:16:02 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38828 - entity/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 28 11:23:13 2007\nX-DSPAM-Confidence: 0.9846\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38828\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-28 11:16:00 -0500 (Wed, 28 Nov 2007)\nNew Revision: 38828\n\nRemoved:\nentity/branches/SAK-12239/\nLog:\nSAK-12239 \nStarting over.  Taking a copy of 2.4.x instead of 2.5.x.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Wed Nov 28 11:22:22 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 28 Nov 2007 11:22:22 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 28 Nov 2007 11:22:22 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby fan.mail.umich.edu () with ESMTP id lASGML52004679;\n\tWed, 28 Nov 2007 11:22:21 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 474D95B6.8329D.6196 ; \n\t28 Nov 2007 11:22:17 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0045C8C7F6;\n\tWed, 28 Nov 2007 16:22:11 +0000 (GMT)\nMessage-ID: <200711281615.lASGFih7001859@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 13\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 16:21:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8EA3D296D2\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 16:21:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASGFi5M001861\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 11:15:44 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASGFih7001859\n\tfor source@collab.sakaiproject.org; Wed, 28 Nov 2007 11:15:44 -0500\nDate: Wed, 28 Nov 2007 11:15:44 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38827 - db/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 28 11:22:22 2007\nX-DSPAM-Confidence: 0.9853\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38827\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-28 11:15:42 -0500 (Wed, 28 Nov 2007)\nNew Revision: 38827\n\nRemoved:\ndb/branches/SAK-12239/\nLog:\nSAK-12239 \nStarting over.  Taking a copy of 2.4.x instead of 2.5.x.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Wed Nov 28 11:22:04 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 28 Nov 2007 11:22:04 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 28 Nov 2007 11:22:04 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby faithful.mail.umich.edu () with ESMTP id lASGM2Rr017704;\n\tWed, 28 Nov 2007 11:22:02 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 474D959F.37FA1.26118 ; \n\t28 Nov 2007 11:21:54 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D7CA98C6A4;\n\tWed, 28 Nov 2007 16:21:43 +0000 (GMT)\nMessage-ID: <200711281615.lASGF4Yw001847@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 89\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 16:21:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 533B02BC87\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 16:21:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASGF4xt001849\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 11:15:04 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASGF4Yw001847\n\tfor source@collab.sakaiproject.org; Wed, 28 Nov 2007 11:15:04 -0500\nDate: Wed, 28 Nov 2007 11:15:04 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38826 - content/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 28 11:22:03 2007\nX-DSPAM-Confidence: 0.9870\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38826\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-28 11:15:03 -0500 (Wed, 28 Nov 2007)\nNew Revision: 38826\n\nRemoved:\ncontent/branches/SAK-12239/\nLog:\nSAK-12239 \nStarting over.  Taking a copy of 2.4.x instead of 2.5.x.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Wed Nov 28 11:21:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 28 Nov 2007 11:21:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 28 Nov 2007 11:21:51 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby faithful.mail.umich.edu () with ESMTP id lASGLoOW017552;\n\tWed, 28 Nov 2007 11:21:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 474D9590.137DA.17497 ; \n\t28 Nov 2007 11:21:38 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A1C738C3E2;\n\tWed, 28 Nov 2007 16:21:33 +0000 (GMT)\nMessage-ID: <200711281550.lASFoXi9001796@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 384\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 15:54:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E0A3C2BD10\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 15:56:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASFoX5A001798\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 10:50:33 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASFoXi9001796\n\tfor source@collab.sakaiproject.org; Wed, 28 Nov 2007 10:50:33 -0500\nDate: Wed, 28 Nov 2007 10:50:33 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38824 - content/branches/SAK-12239\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 28 11:21:51 2007\nX-DSPAM-Confidence: 0.9856\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38824\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-28 10:50:31 -0500 (Wed, 28 Nov 2007)\nNew Revision: 38824\n\nRemoved:\ncontent/branches/SAK-12239/content-api/\ncontent/branches/SAK-12239/content-bundles/\ncontent/branches/SAK-12239/content-help/\ncontent/branches/SAK-12239/content-impl-jcr/\ncontent/branches/SAK-12239/content-impl-providers/\ncontent/branches/SAK-12239/content-impl/\ncontent/branches/SAK-12239/content-test/\ncontent/branches/SAK-12239/content-tool/\ncontent/branches/SAK-12239/content-util/\ncontent/branches/SAK-12239/contentmultiplex-impl/\ncontent/branches/SAK-12239/pom.xml\nLog:\nSAK-12239\nAnother false start.  Need to start from 2.4.x\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Nov 28 11:05:56 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 28 Nov 2007 11:05:56 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 28 Nov 2007 11:05:56 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby faithful.mail.umich.edu () with ESMTP id lASG5tdE003241;\n\tWed, 28 Nov 2007 11:05:55 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 474D91D9.7998C.1877 ; \n\t28 Nov 2007 11:05:48 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 13C944F782;\n\tWed, 28 Nov 2007 15:39:42 +0000 (GMT)\nMessage-ID: <200711281559.lASFxCXu001819@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 47\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 15:39:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id F061C2BC21\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 16:05:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASFxCep001821\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 10:59:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASFxCXu001819\n\tfor source@collab.sakaiproject.org; Wed, 28 Nov 2007 10:59:12 -0500\nDate: Wed, 28 Nov 2007 10:59:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38825 - content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 28 11:05:56 2007\nX-DSPAM-Confidence: 0.9866\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38825\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-28 10:59:07 -0500 (Wed, 28 Nov 2007)\nNew Revision: 38825\n\nModified:\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/BaseJCRResourceEdit.java\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRStorageUser.java\nLog:\nSAK-12105: Updated log messages and deprecated some methods\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ssmail@indiana.edu Wed Nov 28 11:05:07 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 28 Nov 2007 11:05:07 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 28 Nov 2007 11:05:07 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby panther.mail.umich.edu () with ESMTP id lASG55pV006019;\n\tWed, 28 Nov 2007 11:05:05 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 474D91A6.90BB7.12922 ; \n\t28 Nov 2007 11:05:02 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 685758C703;\n\tWed, 28 Nov 2007 15:38:48 +0000 (GMT)\nMessage-ID: <200711281537.lASFbh8J001772@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 117\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 15:37:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E14CE2BC23\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 15:43:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASFbhMe001775\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 10:37:43 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASFbh8J001772\n\tfor source@collab.sakaiproject.org; Wed, 28 Nov 2007 10:37:43 -0500\nDate: Wed, 28 Nov 2007 10:37:43 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ssmail@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ssmail@indiana.edu\nSubject: [sakai] svn commit: r38823 - citations/trunk/citations-osid/xserver/src/java/org/sakaibrary/xserver\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 28 11:05:07 2007\nX-DSPAM-Confidence: 0.6942\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38823\n\nAuthor: ssmail@indiana.edu\nDate: 2007-11-28 10:37:41 -0500 (Wed, 28 Nov 2007)\nNew Revision: 38823\n\nModified:\ncitations/trunk/citations-osid/xserver/src/java/org/sakaibrary/xserver/XServer.java\nLog:\nSAK-12297: Reworked the asset caching logic to avoid discarding search results\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Wed Nov 28 10:29:22 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 28 Nov 2007 10:29:22 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 28 Nov 2007 10:29:22 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby flawless.mail.umich.edu () with ESMTP id lASFTMtY005417;\n\tWed, 28 Nov 2007 10:29:22 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 474D894A.B1659.23123 ; \n\t28 Nov 2007 10:29:17 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BCC1B8C7A5;\n\tWed, 28 Nov 2007 15:25:14 +0000 (GMT)\nMessage-ID: <200711281522.lASFMoAr001732@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 116\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 15:24:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 90C192B5CB\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 15:28:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASFMouK001734\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 10:22:50 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASFMoAr001732\n\tfor source@collab.sakaiproject.org; Wed, 28 Nov 2007 10:22:50 -0500\nDate: Wed, 28 Nov 2007 10:22:50 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38822 - in assignment/branches/post-2-4/assignment-tool/tool/src: bundle java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 28 10:29:22 2007\nX-DSPAM-Confidence: 0.8490\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38822\n\nAuthor: zqian@umich.edu\nDate: 2007-11-28 10:22:48 -0500 (Wed, 28 Nov 2007)\nNew Revision: 38822\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/bundle/assignment.properties\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerge the fix to SAK-11497 into post-2-4\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Nov 28 08:43:56 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 28 Nov 2007 08:43:56 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 28 Nov 2007 08:43:56 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby score.mail.umich.edu () with ESMTP id lASDhuDk009592;\n\tWed, 28 Nov 2007 08:43:56 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 474D708F.8E94.17872 ; \n\t28 Nov 2007 08:43:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BC3258C6AD;\n\tWed, 28 Nov 2007 13:44:04 +0000 (GMT)\nMessage-ID: <200711281337.lASDbNRk001649@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 200\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 13:43:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 714492969F\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 13:43:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASDbNRL001651\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 08:37:23 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASDbNRk001649\n\tfor source@collab.sakaiproject.org; Wed, 28 Nov 2007 08:37:23 -0500\nDate: Wed, 28 Nov 2007 08:37:23 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38821 - content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 28 08:43:56 2007\nX-DSPAM-Confidence: 0.9862\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38821\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-28 08:37:17 -0500 (Wed, 28 Nov 2007)\nNew Revision: 38821\n\nModified:\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/BaseJCRResourceEdit.java\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/BaseJCRStorage.java\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRContentService.java\nLog:\nSAK-12105: Fixed up some of the logging and corrected some exception handling, should produce much cleaner output during normal operation\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Wed Nov 28 08:36:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 28 Nov 2007 08:36:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 28 Nov 2007 08:36:19 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby chaos.mail.umich.edu () with ESMTP id lASDaIus021533;\n\tWed, 28 Nov 2007 08:36:18 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 474D6ECB.53145.4289 ; \n\t28 Nov 2007 08:36:14 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8FC158C6E1;\n\tWed, 28 Nov 2007 13:36:32 +0000 (GMT)\nMessage-ID: <200711281329.lASDTqKc001618@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 590\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 13:36:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B87212969F\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 13:35:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASDTqvr001620\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 08:29:52 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASDTqKc001618\n\tfor source@collab.sakaiproject.org; Wed, 28 Nov 2007 08:29:52 -0500\nDate: Wed, 28 Nov 2007 08:29:52 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38820 - in authz/trunk/authz-impl/impl/src/sql: hsqldb mssql mysql oracle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 28 08:36:19 2007\nX-DSPAM-Confidence: 0.9823\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38820\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-28 08:29:41 -0500 (Wed, 28 Nov 2007)\nNew Revision: 38820\n\nModified:\nauthz/trunk/authz-impl/impl/src/sql/hsqldb/sakai_realm.sql\nauthz/trunk/authz-impl/impl/src/sql/mssql/sakai_realm.sql\nauthz/trunk/authz-impl/impl/src/sql/mysql/sakai_realm.sql\nauthz/trunk/authz-impl/impl/src/sql/oracle/sakai_realm.sql\nLog:\nSAK-12272\n\nPatch Committed from  \t Ying Wang,\nReviewd, Discussed on the list, no negative comments recieved.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Wed Nov 28 06:44:18 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 28 Nov 2007 06:44:18 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 28 Nov 2007 06:44:18 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby flawless.mail.umich.edu () with ESMTP id lASBiHwT023077;\n\tWed, 28 Nov 2007 06:44:17 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 474D548C.2694D.21055 ; \n\t28 Nov 2007 06:44:14 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E9F285226D;\n\tWed, 28 Nov 2007 11:38:25 +0000 (GMT)\nMessage-ID: <200711281136.lASBa7W1001476@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 717\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 11:38:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C7FB92480F\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 11:42:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASBa8Ea001478\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 06:36:08 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASBa7W1001476\n\tfor source@collab.sakaiproject.org; Wed, 28 Nov 2007 06:36:07 -0500\nDate: Wed, 28 Nov 2007 06:36:07 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38819 - in component/branches/SAK-12134/component-loader: tomcat5/server-config/src/configuration/conf tomcat6/server-config/src/configuration/conf\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 28 06:44:18 2007\nX-DSPAM-Confidence: 0.8478\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38819\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-28 06:35:59 -0500 (Wed, 28 Nov 2007)\nNew Revision: 38819\n\nModified:\ncomponent/branches/SAK-12134/component-loader/tomcat5/server-config/src/configuration/conf/server.xml\ncomponent/branches/SAK-12134/component-loader/tomcat6/server-config/src/configuration/conf/server.xml\nLog:\nSAK-12134\nFixed small errors in config files (invalid xml)\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Wed Nov 28 06:38:28 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 28 Nov 2007 06:38:28 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 28 Nov 2007 06:38:28 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby flawless.mail.umich.edu () with ESMTP id lASBcRFa021704;\n\tWed, 28 Nov 2007 06:38:27 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 474D532A.5FB82.12497 ; \n\t28 Nov 2007 06:38:21 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7FB9B676FF;\n\tWed, 28 Nov 2007 11:34:15 +0000 (GMT)\nMessage-ID: <200711281132.lASBW0Jl001458@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 195\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 11:34:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4DE262480F\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 11:38:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASBW0VE001460\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 06:32:00 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASBW0Jl001458\n\tfor source@collab.sakaiproject.org; Wed, 28 Nov 2007 06:32:00 -0500\nDate: Wed, 28 Nov 2007 06:32:00 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 28 06:38:28 2007\nX-DSPAM-Confidence: 0.8477\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38818\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-28 06:31:48 -0500 (Wed, 28 Nov 2007)\nNew Revision: 38818\n\nAdded:\ncomponent/branches/SAK-12134/component-loader/tomcat5/server-config/src/configuration/conf/\ncomponent/branches/SAK-12134/component-loader/tomcat5/server-config/src/configuration/conf/server.xml\ncomponent/branches/SAK-12134/component-loader/tomcat6/server-config/src/configuration/conf/\ncomponent/branches/SAK-12134/component-loader/tomcat6/server-config/src/configuration/conf/server.xml\nRemoved:\ncomponent/branches/SAK-12134/component-loader/tomcat5/server-config/src/configuration/conf/server.xml\ncomponent/branches/SAK-12134/component-loader/tomcat5/server-config/src/configuration/config/\ncomponent/branches/SAK-12134/component-loader/tomcat6/server-config/src/configuration/conf/server.xml\ncomponent/branches/SAK-12134/component-loader/tomcat6/server-config/src/configuration/config/\nLog:\nSAK-12134\nFixed the location of the server.xml files\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Wed Nov 28 06:35:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 28 Nov 2007 06:35:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 28 Nov 2007 06:35:51 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby score.mail.umich.edu () with ESMTP id lASBZoU1031691;\n\tWed, 28 Nov 2007 06:35:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 474D528F.10EC9.1880 ; \n\t28 Nov 2007 06:35:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 12D0352EA1;\n\tWed, 28 Nov 2007 11:31:40 +0000 (GMT)\nMessage-ID: <200711281129.lASBTMSj001446@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 912\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 11:31:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DBC4B2BA33\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 11:35:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lASBTNf5001448\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 06:29:23 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lASBTMSj001446\n\tfor source@collab.sakaiproject.org; Wed, 28 Nov 2007 06:29:22 -0500\nDate: Wed, 28 Nov 2007 06:29:22 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 28 06:35:51 2007\nX-DSPAM-Confidence: 0.8483\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38817\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-28 06:29:11 -0500 (Wed, 28 Nov 2007)\nNew Revision: 38817\n\nModified:\ncomponent/branches/SAK-12134/component-loader/tomcat5/server-config/pom.xml\ncomponent/branches/SAK-12134/component-loader/tomcat5/server-config/src/configuration/config/server.xml\ncomponent/branches/SAK-12134/component-loader/tomcat6/server-config/pom.xml\ncomponent/branches/SAK-12134/component-loader/tomcat6/server-config/src/configuration/config/server.xml\nLog:\nSAK-12134\nCreated server configuration templates\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Tue Nov 27 20:40:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 27 Nov 2007 20:40:43 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 27 Nov 2007 20:40:43 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby fan.mail.umich.edu () with ESMTP id lAS1egtV016121;\n\tTue, 27 Nov 2007 20:40:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 474CC715.7B80A.15165 ; \n\t27 Nov 2007 20:40:40 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 640108B332;\n\tWed, 28 Nov 2007 01:40:36 +0000 (GMT)\nMessage-ID: <200711280134.lAS1YDP4000402@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 365\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 01:40:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 055392B6F2\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 01:40:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAS1YDSY000404\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 20:34:13 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAS1YDP4000402\n\tfor source@collab.sakaiproject.org; Tue, 27 Nov 2007 20:34:13 -0500\nDate: Tue, 27 Nov 2007 20:34:13 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38816 - content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 27 20:40:43 2007\nX-DSPAM-Confidence: 0.8493\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38816\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-11-27 20:34:08 -0500 (Tue, 27 Nov 2007)\nNew Revision: 38816\n\nModified:\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRContentService.java\nLog:\nSAK-12105 fixed getCollectionSize. I was forgetting to add in the folders.  Only files were being counted.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Tue Nov 27 20:39:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 27 Nov 2007 20:39:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 27 Nov 2007 20:39:51 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby jacknife.mail.umich.edu () with ESMTP id lAS1doWX027938;\n\tTue, 27 Nov 2007 20:39:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 474CC6DB.12430.17972 ; \n\t27 Nov 2007 20:39:41 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6BDF48BE27;\n\tWed, 28 Nov 2007 01:39:37 +0000 (GMT)\nMessage-ID: <200711280133.lAS1XKoF000390@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 42\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 01:39:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3CD0D28D00\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 01:39:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAS1XK2J000392\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 20:33:20 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAS1XKoF000390\n\tfor source@collab.sakaiproject.org; Tue, 27 Nov 2007 20:33:20 -0500\nDate: Tue, 27 Nov 2007 20:33:20 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 27 20:39:51 2007\nX-DSPAM-Confidence: 0.9885\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38815\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-27 20:33:06 -0500 (Tue, 27 Nov 2007)\nNew Revision: 38815\n\nAdded:\ncomponent/branches/SAK-12134/component-loader/tomcat5/server-config/\ncomponent/branches/SAK-12134/component-loader/tomcat5/server-config/pom.xml\ncomponent/branches/SAK-12134/component-loader/tomcat5/server-config/src/\ncomponent/branches/SAK-12134/component-loader/tomcat5/server-config/src/configuration/\ncomponent/branches/SAK-12134/component-loader/tomcat5/server-config/src/configuration/config/\ncomponent/branches/SAK-12134/component-loader/tomcat5/server-config/src/configuration/config/server.xml\ncomponent/branches/SAK-12134/component-loader/tomcat6/server-config/\ncomponent/branches/SAK-12134/component-loader/tomcat6/server-config/pom.xml\ncomponent/branches/SAK-12134/component-loader/tomcat6/server-config/src/\ncomponent/branches/SAK-12134/component-loader/tomcat6/server-config/src/configuration/\ncomponent/branches/SAK-12134/component-loader/tomcat6/server-config/src/configuration/config/\ncomponent/branches/SAK-12134/component-loader/tomcat6/server-config/src/configuration/config/server.xml\nModified:\ncomponent/branches/SAK-12134/component-loader/tomcat5/pom.xml\ncomponent/branches/SAK-12134/component-loader/tomcat6/pom.xml\nLog:\nSAK-12134\nAdded server configuration projects for tomcat5 and tomcat6\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Tue Nov 27 20:27:46 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 27 Nov 2007 20:27:46 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 27 Nov 2007 20:27:46 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby mission.mail.umich.edu () with ESMTP id lAS1RjfC001341;\n\tTue, 27 Nov 2007 20:27:45 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 474CC40C.BE27.13595 ; \n\t27 Nov 2007 20:27:42 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9310A8BCC5;\n\tWed, 28 Nov 2007 01:27:39 +0000 (GMT)\nMessage-ID: <200711280120.lAS1KuRl000347@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 197\n          for <source@collab.sakaiproject.org>;\n          Wed, 28 Nov 2007 01:26:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 344FF2B6E3\n\tfor <source@collab.sakaiproject.org>; Wed, 28 Nov 2007 01:27:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAS1Ku9P000349\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 20:20:56 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAS1KuRl000347\n\tfor source@collab.sakaiproject.org; Tue, 27 Nov 2007 20:20:56 -0500\nDate: Tue, 27 Nov 2007 20:20:56 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 27 20:27:46 2007\nX-DSPAM-Confidence: 0.9894\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38814\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-27 20:20:26 -0500 (Tue, 27 Nov 2007)\nNew Revision: 38814\n\nAdded:\nmaven2/trunk/sakai-plugin/src/main/java/org/sakaiproject/maven/plugin/component/ConfigurationMojo.java\nmaven2/trunk/sakai-plugin/src/test/java/org/sakaiproject/maven/plugin/component/ConfigurationMojoTest.java\nmaven2/trunk/sakai-plugin/src/test/java/org/sakaiproject/maven/plugin/component/stub/SimpleConfigurationArtifact4CCStub.java\nmaven2/trunk/sakai-plugin/src/test/java/org/sakaiproject/maven/plugin/component/stub/SimpleConfigurationArtifactStub.java\nmaven2/trunk/sakai-plugin/src/test/resources/unit/configurationmojotest/\nmaven2/trunk/sakai-plugin/src/test/resources/unit/configurationmojotest/plugin-config.xml\nmaven2/trunk/sakai-plugin/src/test/resources/unit/sample_wars/simple.configuration\nModified:\nmaven2/trunk/sakai-plugin/src/main/java/org/sakaiproject/maven/plugin/component/AbstractComponentMojo.java\nmaven2/trunk/sakai-plugin/src/main/java/org/sakaiproject/maven/plugin/component/ComponentDeployMojo.java\nmaven2/trunk/sakai-plugin/src/main/resources/META-INF/plexus/components.xml\nmaven2/trunk/sakai-plugin/src/main/resources/deploy.tomcat5.properties\nmaven2/trunk/sakai-plugin/src/main/resources/deploy.tomcat6.properties\nmaven2/trunk/sakai-plugin/src/site/apt/index.apt\nmaven2/trunk/sakai-plugin/src/test/java/org/sakaiproject/maven/plugin/component/AbstractComponentMojoTest.java\nmaven2/trunk/sakai-plugin/src/test/java/org/sakaiproject/maven/plugin/component/ComponentDeployMojoTest.java\nmaven2/trunk/sakai-plugin/src/test/java/org/sakaiproject/maven/plugin/component/stub/MavenProjectBasicStub.java\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-12281\n\nAdded new packaging type to make it possible to perform configuration of the app server from within sakai source\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ssmail@indiana.edu Tue Nov 27 17:15:38 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 27 Nov 2007 17:15:38 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 27 Nov 2007 17:15:38 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby godsend.mail.umich.edu () with ESMTP id lARMFbcl019704;\n\tTue, 27 Nov 2007 17:15:37 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 474C9701.74EE4.20467 ; \n\t27 Nov 2007 17:15:32 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3724551926;\n\tTue, 27 Nov 2007 22:16:12 +0000 (GMT)\nMessage-ID: <200711272209.lARM99ag032517@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 58\n          for <source@collab.sakaiproject.org>;\n          Tue, 27 Nov 2007 22:15:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EF9892B60F\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 22:15:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARM99jk032519\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 17:09:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARM99ag032517\n\tfor source@collab.sakaiproject.org; Tue, 27 Nov 2007 17:09:09 -0500\nDate: Tue, 27 Nov 2007 17:09:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ssmail@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ssmail@indiana.edu\nSubject: [sakai] svn commit: r38813 - in citations/trunk/citations-osid/xserver/src/java/org/sakaibrary: osid/repository/xserver xserver\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 27 17:15:38 2007\nX-DSPAM-Confidence: 0.7603\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38813\n\nAuthor: ssmail@indiana.edu\nDate: 2007-11-27 17:09:07 -0500 (Tue, 27 Nov 2007)\nNew Revision: 38813\n\nModified:\ncitations/trunk/citations-osid/xserver/src/java/org/sakaibrary/osid/repository/xserver/AssetIterator.java\ncitations/trunk/citations-osid/xserver/src/java/org/sakaibrary/xserver/XServerException.java\nLog:\nSAK-12282: throw NO_MORE_ITERATOR_ELEMENTS exception for anticipated errors\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Tue Nov 27 16:45:32 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 27 Nov 2007 16:45:32 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 27 Nov 2007 16:45:32 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby jacknife.mail.umich.edu () with ESMTP id lARLjWsp006491;\n\tTue, 27 Nov 2007 16:45:32 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 474C8FF5.F10F9.22946 ; \n\t27 Nov 2007 16:45:28 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B9EF3840A4;\n\tTue, 27 Nov 2007 21:45:26 +0000 (GMT)\nMessage-ID: <200711272139.lARLdAIK032457@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 421\n          for <source@collab.sakaiproject.org>;\n          Tue, 27 Nov 2007 21:45:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 52F342B613\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 21:45:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARLdAd5032459\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 16:39:10 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARLdAIK032457\n\tfor source@collab.sakaiproject.org; Tue, 27 Nov 2007 16:39:10 -0500\nDate: Tue, 27 Nov 2007 16:39:10 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [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!\n /tool assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 27 16:45:32 2007\nX-DSPAM-Confidence: 0.7607\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38812\n\nAuthor: zqian@umich.edu\nDate: 2007-11-27 16:39:00 -0500 (Tue, 27 Nov 2007)\nNew Revision: 38812\n\nAdded:\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/SchemaConversionHandler.java\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/SerializableSubmissionAccess.java\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/AssignmentSubmissionAccess.java\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/CombineDuplicateSubmissionsConversionHandler.java\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/RemoveDuplicateSubmissionsConversionHandler.java\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SAXSerializablePropertiesAccess.java\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionController.java\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionDriver.java\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionException.java\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SubmitterIdAssignmentsConversionHandler.java\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/UpgradeSchema.java\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/upgradeschema.config\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/entity/\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/entity/api/\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/entity/api/serialize/\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/entity/api/serialize/DataStreamEntitySerializer.java\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/entity/api/serialize/EntityDoubleReader.java\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/entity/api/serialize/EntityDoubleReaderHandler.java\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/entity/api/serialize/EntityParseException.java\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/entity/api/serialize/EntityReader.java\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/entity/api/serialize/EntityReaderHandler.java\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/entity/api/serialize/EntitySerializer.java\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/entity/api/serialize/SerializableEntity.java\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/entity/api/serialize/SerializablePropertiesAccess.java\nassignment/branches/post-2-4/runconversion.sh\nassignment/branches/post-2-4/runconversion_readme.txt\nassignment/branches/post-2-4/upgradeschema_mysql.config\nassignment/branches/post-2-4/upgradeschema_oracle.config\nModified:\nassignment/branches/post-2-4/assignment-api/api/src/java/org/sakaiproject/assignment/api/AssignmentService.java\nassignment/branches/post-2-4/assignment-api/api/src/java/org/sakaiproject/assignment/api/AssignmentSubmission.java\nassignment/branches/post-2-4/assignment-api/api/src/java/org/sakaiproject/assignment/cover/AssignmentService.java\nassignment/branches/post-2-4/assignment-impl/.classpath\nassignment/branches/post-2-4/assignment-impl/impl/pom.xml\nassignment/branches/post-2-4/assignment-impl/impl/project.xml\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/DbAssignmentService.java\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/taggable/impl/AssignmentActivityProducerImpl.java\nassignment/branches/post-2-4/assignment-impl/impl/src/sql/hsqldb/sakai_assignment.sql\nassignment/branches/post-2-4/assignment-impl/impl/src/sql/mysql/sakai_assignment.sql\nassignment/branches/post-2-4/assignment-impl/impl/src/sql/oracle/sakai_assignment.sql\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm\nLog:\nmerge fix to SAK-11821 into post-2-4\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stuart.freeman@et.gatech.edu Tue Nov 27 16:44:48 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 27 Nov 2007 16:44:48 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 27 Nov 2007 16:44:48 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby chaos.mail.umich.edu () with ESMTP id lARLilVU002665;\n\tTue, 27 Nov 2007 16:44:47 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 474C8FCA.2589B.4450 ; \n\t27 Nov 2007 16:44:44 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8130C6FDCB;\n\tTue, 27 Nov 2007 21:44:41 +0000 (GMT)\nMessage-ID: <200711272138.lARLcOtC032445@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 640\n          for <source@collab.sakaiproject.org>;\n          Tue, 27 Nov 2007 21:44:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 10ECA2B613\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 21:44:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARLcORG032447\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 16:38:24 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARLcOtC032445\n\tfor source@collab.sakaiproject.org; Tue, 27 Nov 2007 16:38:24 -0500\nDate: Tue, 27 Nov 2007 16:38:24 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: stuart.freeman@et.gatech.edu\nSubject: [sakai] svn commit: r38811 - login/branches/sakai_2-4-x/login-tool/tool/src/java/org/sakaiproject/login/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 27 16:44:48 2007\nX-DSPAM-Confidence: 0.7626\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38811\n\nAuthor: stuart.freeman@et.gatech.edu\nDate: 2007-11-27 16:38:22 -0500 (Tue, 27 Nov 2007)\nNew Revision: 38811\n\nModified:\nlogin/branches/sakai_2-4-x/login-tool/tool/src/java/org/sakaiproject/login/tool/LoginTool.java\nLog:\nmerge fix for SAK-9580 don't trim password input\n\n--(stuart@mothra:pts/3)-------------------(/home/stuart/src/sakai_2-4-x/login)--\n--(1640:Tue,27 Nov 07:$)-- svn merge -r 29017:29018 https://source.sakaiproject.org/svn/login/trunk/\nU    login-tool/tool/src/java/org/sakaiproject/login/tool/LoginTool.java\n--(stuart@mothra:pts/3)-------------------(/home/stuart/src/sakai_2-4-x/login)--\n--(1640:Tue,27 Nov 07:$)-- ^merge^log\nsvn log -r 29017:29018 https://source.sakaiproject.org/svn/login/trunk/\n------------------------------------------------------------------------\nr29018 | ray@media.berkeley.edu | 2007-04-17 14:20:23 -0400 (Tue, 17 Apr 2007) | 1 line\n\nSAK-9580 Since some authentication systems allow whitespace in passwords, entered passwords should be sent on to authn without trimming them\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Tue Nov 27 16:40:54 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 27 Nov 2007 16:40:54 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 27 Nov 2007 16:40:54 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby faithful.mail.umich.edu () with ESMTP id lARLesVS021704;\n\tTue, 27 Nov 2007 16:40:54 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 474C8EDE.3B710.20912 ; \n\t27 Nov 2007 16:40:49 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8B0878BBB7;\n\tTue, 27 Nov 2007 21:40:41 +0000 (GMT)\nMessage-ID: <200711272134.lARLYPoN032428@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 161\n          for <source@collab.sakaiproject.org>;\n          Tue, 27 Nov 2007 21:40:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 480D72B613\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 21:40:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARLYP0B032430\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 16:34:25 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARLYPoN032428\n\tfor source@collab.sakaiproject.org; Tue, 27 Nov 2007 16:34:25 -0500\nDate: Tue, 27 Nov 2007 16:34:25 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r38810 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 27 16:40:54 2007\nX-DSPAM-Confidence: 0.9876\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38810\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-27 16:34:23 -0500 (Tue, 27 Nov 2007)\nNew Revision: 38810\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/defaultbuild.properties\nLog:\nCTools: start build of 2.4.xQ\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Tue Nov 27 16:20:54 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 27 Nov 2007 16:20:54 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 27 Nov 2007 16:20:54 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby jacknife.mail.umich.edu () with ESMTP id lARLKrUR022837;\n\tTue, 27 Nov 2007 16:20:53 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 474C8A2D.3401F.29150 ; \n\t27 Nov 2007 16:20:48 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 655728BB9C;\n\tTue, 27 Nov 2007 21:20:28 +0000 (GMT)\nMessage-ID: <200711272114.lARLE2KP032389@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 942\n          for <source@collab.sakaiproject.org>;\n          Tue, 27 Nov 2007 21:20:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6FA132B5F3\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 21:20:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARLE2gn032391\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 16:14:02 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARLE2KP032389\n\tfor source@collab.sakaiproject.org; Tue, 27 Nov 2007 16:14:02 -0500\nDate: Tue, 27 Nov 2007 16:14:02 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r38809 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 27 16:20:54 2007\nX-DSPAM-Confidence: 0.9879\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38809\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-27 16:14:00 -0500 (Tue, 27 Nov 2007)\nNew Revision: 38809\n\nAdded:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xQ.properties\nLog:\nCTools: add new configuration for the Winter O8 efficiency release.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom stuart.freeman@et.gatech.edu Tue Nov 27 16:13:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 27 Nov 2007 16:13:53 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 27 Nov 2007 16:13:53 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby casino.mail.umich.edu () with ESMTP id lARLDr5c023354;\n\tTue, 27 Nov 2007 16:13:53 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 474C8887.69CA3.9034 ; \n\t27 Nov 2007 16:13:47 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5D0268BB97;\n\tTue, 27 Nov 2007 21:13:36 +0000 (GMT)\nMessage-ID: <200711272107.lARL7FdS032358@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 256\n          for <source@collab.sakaiproject.org>;\n          Tue, 27 Nov 2007 21:13:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 11D762B5F4\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 21:13:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARL7FA3032360\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 16:07:15 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARL7FdS032358\n\tfor source@collab.sakaiproject.org; Tue, 27 Nov 2007 16:07:15 -0500\nDate: Tue, 27 Nov 2007 16:07:15 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to stuart.freeman@et.gatech.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: stuart.freeman@et.gatech.edu\nSubject: [sakai] svn commit: r38808 - assignment/branches/sakai_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 27 16:13:53 2007\nX-DSPAM-Confidence: 0.9937\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38808\n\nAuthor: stuart.freeman@et.gatech.edu\nDate: 2007-11-27 15:09:17 -0500 (Tue, 27 Nov 2007)\nNew Revision: 38808\n\nModified:\nassignment/branches/sakai_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerge fix for SAK-12164 into 2-4-x\n\n--(stuart@mothra:pts/0)--------------(/home/stuart/src/sakai_2-4-x/assignment)-\n--(1450:Tue,27 Nov 07:$)-- svn merge -r 38120:38121 https://source.sakaiproject\norg/svn/assignment/trunk\nU    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentA\ntion.java\n--(stuart@mothra:pts/0)--------------(/home/stuart/src/sakai_2-4-x/assignment)-\n--(1509:Tue,27 Nov 07:$)-- svn log -r 38120:38121 https://source.sakaiproject.o\ng/svn/assignment/trunk\n------------------------------------------------------------------------\nr38120 | zqian@umich.edu | 2007-11-12 11:44:57 -0500 (Mon, 12 Nov 2007) | 1 lin\n\nfix to SAK-12178: Assignments: Log in as instructor, add assignment, in points \nield enter 10000000000, Alert message displayed, message should display correct\ninput value\n------------------------------------------------------------------------\nr38121 | zqian@umich.edu | 2007-11-12 12:10:08 -0500 (Mon, 12 Nov 2007) | 1 lin\n\nfix to SAK-12164: 'Assign this grade...' function is writing over Grade data\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Tue Nov 27 13:39:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 27 Nov 2007 13:39:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 27 Nov 2007 13:39:19 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby awakenings.mail.umich.edu () with ESMTP id lARIdIwA023666;\n\tTue, 27 Nov 2007 13:39:18 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 474C6450.27D63.16307 ; \n\t27 Nov 2007 13:39:14 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C52C2752A4;\n\tTue, 27 Nov 2007 18:35:09 +0000 (GMT)\nMessage-ID: <200711271832.lARIWq97031890@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 371\n          for <source@collab.sakaiproject.org>;\n          Tue, 27 Nov 2007 18:34:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1EA9D2B055\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 18:38:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARIWqDW031892\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 13:32:52 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARIWq97031890\n\tfor source@collab.sakaiproject.org; Tue, 27 Nov 2007 13:32:52 -0500\nDate: Tue, 27 Nov 2007 13:32:52 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38806 - osp/tags/sakai_2-5-0_beta_GMT\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 27 13:39:19 2007\nX-DSPAM-Confidence: 0.8492\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38806\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-27 13:32:51 -0500 (Tue, 27 Nov 2007)\nNew Revision: 38806\n\nModified:\nosp/tags/sakai_2-5-0_beta_GMT/\nosp/tags/sakai_2-5-0_beta_GMT/.externals\nosp/tags/sakai_2-5-0_beta_GMT/pom.xml\nLog:\nCreating 2.5 beta tag to include OSP, GMT and formbuilder\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Tue Nov 27 13:31:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 27 Nov 2007 13:31:53 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 27 Nov 2007 13:31:53 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby godsend.mail.umich.edu () with ESMTP id lARIVpg3013254;\n\tTue, 27 Nov 2007 13:31:51 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 474C6292.A1848.9649 ; \n\t27 Nov 2007 13:31:49 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2CDD38B92A;\n\tTue, 27 Nov 2007 18:27:46 +0000 (GMT)\nMessage-ID: <200711271825.lARIPalF031878@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 844\n          for <source@collab.sakaiproject.org>;\n          Tue, 27 Nov 2007 18:27:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0C1522B055\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 18:31:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARIPahg031880\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 13:25:36 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARIPalF031878\n\tfor source@collab.sakaiproject.org; Tue, 27 Nov 2007 13:25:36 -0500\nDate: Tue, 27 Nov 2007 13:25:36 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38805 - osp/tags\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 27 13:31:53 2007\nX-DSPAM-Confidence: 0.8491\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38805\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-27 13:25:35 -0500 (Tue, 27 Nov 2007)\nNew Revision: 38805\n\nAdded:\nosp/tags/sakai_2-5-0_beta_GMT/\nLog:\nCreating 2.5 beta tag to include OSP, GMT and formbuilder\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Tue Nov 27 13:21:20 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 27 Nov 2007 13:21:20 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 27 Nov 2007 13:21:20 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby sleepers.mail.umich.edu () with ESMTP id lARILJjf006306;\n\tTue, 27 Nov 2007 13:21:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 474C6019.4DF2F.18251 ; \n\t27 Nov 2007 13:21:17 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 981CC65377;\n\tTue, 27 Nov 2007 18:16:17 +0000 (GMT)\nMessage-ID: <200711271813.lARIDjPm031855@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 621\n          for <source@collab.sakaiproject.org>;\n          Tue, 27 Nov 2007 18:15:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id F01822B035\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 18:19:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARIDj7Y031857\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 13:13:45 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARIDjPm031855\n\tfor source@collab.sakaiproject.org; Tue, 27 Nov 2007 13:13:45 -0500\nDate: Tue, 27 Nov 2007 13:13:45 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r38804 - oncourse/trunk/src\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 27 13:21:20 2007\nX-DSPAM-Confidence: 0.8490\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38804\n\nAuthor: cwen@iupui.edu\nDate: 2007-11-27 13:13:44 -0500 (Tue, 27 Nov 2007)\nNew Revision: 38804\n\nRemoved:\noncourse/trunk/src/assignment/\nLog:\nadd assignment post-2-4 overlay. getting rid of it from trunk overlay for now.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Tue Nov 27 13:20:23 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 27 Nov 2007 13:20:23 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 27 Nov 2007 13:20:23 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby faithful.mail.umich.edu () with ESMTP id lARIKMhj007490;\n\tTue, 27 Nov 2007 13:20:22 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 474C5FDF.266AD.23776 ; \n\t27 Nov 2007 13:20:18 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 25DE86FC7D;\n\tTue, 27 Nov 2007 18:15:26 +0000 (GMT)\nMessage-ID: <200711271757.lARHvoYv031821@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 54\n          for <source@collab.sakaiproject.org>;\n          Tue, 27 Nov 2007 18:02:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 531152B02D\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 18:03:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARHvp6L031823\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 12:57:51 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARHvoYv031821\n\tfor source@collab.sakaiproject.org; Tue, 27 Nov 2007 12:57:50 -0500\nDate: Tue, 27 Nov 2007 12:57:50 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r38802 - oncourse/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 27 13:20:23 2007\nX-DSPAM-Confidence: 0.8466\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38802\n\nAuthor: cwen@iupui.edu\nDate: 2007-11-27 12:57:49 -0500 (Tue, 27 Nov 2007)\nNew Revision: 38802\n\nAdded:\noncourse/branches/assignment_post-2-4/\nLog:\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Tue Nov 27 13:20:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 27 Nov 2007 13:20:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 27 Nov 2007 13:20:19 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby sleepers.mail.umich.edu () with ESMTP id lARIKHQn005517;\n\tTue, 27 Nov 2007 13:20:17 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 474C5FD7.10B9C.30054 ; \n\t27 Nov 2007 13:20:11 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B95AA8B8ED;\n\tTue, 27 Nov 2007 18:15:24 +0000 (GMT)\nMessage-ID: <200711271812.lARICWT5031835@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 255\n          for <source@collab.sakaiproject.org>;\n          Tue, 27 Nov 2007 18:14:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4F66A2B034\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 18:18:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARICXQW031837\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 13:12:33 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARICWT5031835\n\tfor source@collab.sakaiproject.org; Tue, 27 Nov 2007 13:12:33 -0500\nDate: Tue, 27 Nov 2007 13:12:33 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 27 13:20:19 2007\nX-DSPAM-Confidence: 0.8484\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38803\n\nAuthor: cwen@iupui.edu\nDate: 2007-11-27 13:12:31 -0500 (Tue, 27 Nov 2007)\nNew Revision: 38803\n\nAdded:\noncourse/branches/assignment_post-2-4/assignment-impl/\noncourse/branches/assignment_post-2-4/assignment-impl/impl/\noncourse/branches/assignment_post-2-4/assignment-impl/impl/src/\noncourse/branches/assignment_post-2-4/assignment-impl/impl/src/java/\noncourse/branches/assignment_post-2-4/assignment-impl/impl/src/java/org/\noncourse/branches/assignment_post-2-4/assignment-impl/impl/src/java/org/sakaiproject/\noncourse/branches/assignment_post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/\noncourse/branches/assignment_post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/\noncourse/branches/assignment_post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\noncourse/branches/assignment_post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/DbAssignmentService.java\nLog:\nadd assignment post-2-4 overlay. getting rid of it from trunk overlay for now.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Tue Nov 27 12:40:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 27 Nov 2007 12:40:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 27 Nov 2007 12:40:19 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby brazil.mail.umich.edu () with ESMTP id lARHeIt9021661;\n\tTue, 27 Nov 2007 12:40:18 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 474C567D.9D26C.3924 ; \n\t27 Nov 2007 12:40:16 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 015488B8A0;\n\tTue, 27 Nov 2007 17:40:15 +0000 (GMT)\nMessage-ID: <200711271734.lARHY3AB031807@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 980\n          for <source@collab.sakaiproject.org>;\n          Tue, 27 Nov 2007 17:40:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CB8392B02D\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 17:40:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARHY3jt031809\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 12:34:03 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARHY3AB031807\n\tfor source@collab.sakaiproject.org; Tue, 27 Nov 2007 12:34:03 -0500\nDate: Tue, 27 Nov 2007 12:34:03 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 27 12:40:19 2007\nX-DSPAM-Confidence: 0.9856\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38801\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-27 12:33:27 -0500 (Tue, 27 Nov 2007)\nNew Revision: 38801\n\nAdded:\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/loader/shared/SharedComponentManager.java\ncomponent/branches/SAK-12134/component-loader/component-loader-common/impl/src/java/org/sakaiproject/component/loader/common/stats/\ncomponent/branches/SAK-12134/component-loader/component-loader-common/impl/src/java/org/sakaiproject/component/loader/common/stats/AbstractStats.java\ncomponent/branches/SAK-12134/component-loader/component-loader-common/impl/src/java/org/sakaiproject/component/loader/common/stats/MemoryStats.java\ncomponent/branches/SAK-12134/component-loader/component-loader-common/impl/src/java/org/sakaiproject/component/loader/common/stats/NewMemoryStats.java\ncomponent/branches/SAK-12134/component-loader/component-loader-common/impl/src/java/org/sakaiproject/component/loader/common/stats/OldMemoryStats.java\nRemoved:\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/loader/shared/SharedComponentManager.java\nModified:\ncomponent/branches/SAK-12134/component-loader/pom.xml\ncomponent/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/.classpath\ncomponent/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/pom.xml\ncomponent/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/src/java/org/sakaiproject/component/loader/tomcat5/server/SakaiContextConfig.java\ncomponent/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/src/java/org/sakaiproject/component/loader/tomcat5/server/SakaiLoader.java\ncomponent/branches/SAK-12134/component-loader/tomcat6/component-loader-server/impl/.classpath\ncomponent/branches/SAK-12134/component-loader/tomcat6/component-loader-server/impl/pom.xml\ncomponent/branches/SAK-12134/component-loader/tomcat6/component-loader-server/impl/src/java/org/sakaiproject/component/loader/tomcat6/server/SakaiContextConfig.java\nLog:\nConverted to work with tomcat 6\nfixed some issues with startup in tomcat5\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Tue Nov 27 11:37:05 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 27 Nov 2007 11:37:05 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 27 Nov 2007 11:37:05 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby score.mail.umich.edu () with ESMTP id lARGb4k0024988;\n\tTue, 27 Nov 2007 11:37:04 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 474C4798.8AD93.7992 ; \n\t27 Nov 2007 11:36:43 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D873B8B731;\n\tTue, 27 Nov 2007 16:36:37 +0000 (GMT)\nMessage-ID: <200711271630.lARGUKQs031677@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 179\n          for <source@collab.sakaiproject.org>;\n          Tue, 27 Nov 2007 16:36:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C4CE72AEAD\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 16:36:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARGUKYr031679\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 11:30:20 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARGUKQs031677\n\tfor source@collab.sakaiproject.org; Tue, 27 Nov 2007 11:30:20 -0500\nDate: Tue, 27 Nov 2007 11:30:20 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r38800 - ctools/trunk/builds/ctools_2-4/patches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 27 11:37:05 2007\nX-DSPAM-Confidence: 0.9863\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38800\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-27 11:30:19 -0500 (Tue, 27 Nov 2007)\nNew Revision: 38800\n\nModified:\nctools/trunk/builds/ctools_2-4/patches/SAK-12115.patch\nLog:\nCTools: update SAK-12115 patch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Tue Nov 27 11:02:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 27 Nov 2007 11:02:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 27 Nov 2007 11:02:51 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby score.mail.umich.edu () with ESMTP id lARG2oI1031553;\n\tTue, 27 Nov 2007 11:02:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 474C3F9B.AA66C.18397 ; \n\t27 Nov 2007 11:02:38 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 27EEC8B6B9;\n\tTue, 27 Nov 2007 16:02:27 +0000 (GMT)\nMessage-ID: <200711271556.lARFuHGJ031602@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 469\n          for <source@collab.sakaiproject.org>;\n          Tue, 27 Nov 2007 16:02:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 05C612AE98\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 16:02:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARFuHnc031604\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 10:56:18 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARFuHGJ031602\n\tfor source@collab.sakaiproject.org; Tue, 27 Nov 2007 10:56:17 -0500\nDate: Tue, 27 Nov 2007 10:56:17 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38799 - assignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 27 11:02:51 2007\nX-DSPAM-Confidence: 0.7603\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38799\n\nAuthor: zqian@umich.edu\nDate: 2007-11-27 10:56:16 -0500 (Tue, 27 Nov 2007)\nNew Revision: 38799\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_report_submissions.vm\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_student_list_submissions.vm\nLog:\nmerge in fix to SAK-11858 to post-2-4: svn merge -r 37700:37701 https://source.sakaiproject.org/svn/assignment/trunk/\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Tue Nov 27 10:52:00 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 27 Nov 2007 10:52:00 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 27 Nov 2007 10:52:00 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby score.mail.umich.edu () with ESMTP id lARFpxqW023322;\n\tTue, 27 Nov 2007 10:51:59 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 474C3D18.64AB8.2862 ; \n\t27 Nov 2007 10:51:55 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 437058B4AF;\n\tTue, 27 Nov 2007 15:46:50 +0000 (GMT)\nMessage-ID: <200711271545.lARFjb9H031482@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 952\n          for <source@collab.sakaiproject.org>;\n          Tue, 27 Nov 2007 15:46:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 224872AC06\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 15:51:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARFjbej031484\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 10:45:37 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARFjb9H031482\n\tfor source@collab.sakaiproject.org; Tue, 27 Nov 2007 10:45:37 -0500\nDate: Tue, 27 Nov 2007 10:45:37 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 27 10:52:00 2007\nX-DSPAM-Confidence: 0.9875\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38797\n\nAuthor: zqian@umich.edu\nDate: 2007-11-27 10:45:34 -0500 (Tue, 27 Nov 2007)\nNew Revision: 38797\n\nModified:\nassignment/branches/post-2-4/assignment-impl/impl/src/bundle/assignment.properties\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerge SAK-12186 into post-2-4 branch:svn merge -r 38185:38186 https://source.sakaiproject.org/svn/assignment/trunk/\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Tue Nov 27 10:36:49 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 27 Nov 2007 10:36:49 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 27 Nov 2007 10:36:49 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby faithful.mail.umich.edu () with ESMTP id lARFalGr026768;\n\tTue, 27 Nov 2007 10:36:47 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 474C3989.7FE8A.7516 ; \n\t27 Nov 2007 10:36:44 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3A6B84F3E3;\n\tTue, 27 Nov 2007 15:31:11 +0000 (GMT)\nMessage-ID: <200711271529.lARFTX2M031455@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 662\n          for <source@collab.sakaiproject.org>;\n          Tue, 27 Nov 2007 15:30:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E67082AD62\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 15:35:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARFTY2j031457\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 10:29:34 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARFTX2M031455\n\tfor source@collab.sakaiproject.org; Tue, 27 Nov 2007 10:29:33 -0500\nDate: Tue, 27 Nov 2007 10:29:33 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 27 10:36:49 2007\nX-DSPAM-Confidence: 0.8499\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38796\n\nAuthor: zqian@umich.edu\nDate: 2007-11-27 10:29:31 -0500 (Tue, 27 Nov 2007)\nNew Revision: 38796\n\nModified:\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerged in fixes to SAK-10667 into post-2-4\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gopal.ramasammycook@gmail.com Tue Nov 27 10:05:11 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 27 Nov 2007 10:05:11 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 27 Nov 2007 10:05:11 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby faithful.mail.umich.edu () with ESMTP id lARF5Abc004495;\n\tTue, 27 Nov 2007 10:05:10 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 474C321F.DB55D.6116 ; \n\t27 Nov 2007 10:05:06 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B37D664EBB;\n\tTue, 27 Nov 2007 15:05:01 +0000 (GMT)\nMessage-ID: <200711271458.lAREwjwV031391@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 963\n          for <source@collab.sakaiproject.org>;\n          Tue, 27 Nov 2007 15:04:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DC7E62AC06\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 15:04:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAREwkDH031393\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 09:58:46 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAREwjwV031391\n\tfor source@collab.sakaiproject.org; Tue, 27 Nov 2007 09:58:45 -0500\nDate: Tue, 27 Nov 2007 09:58:45 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f\nTo: source@collab.sakaiproject.org\nFrom: gopal.ramasammycook@gmail.com\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 27 10:05:11 2007\nX-DSPAM-Confidence: 0.8467\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38795\n\nAuthor: gopal.ramasammycook@gmail.com\nDate: 2007-11-27 09:58:21 -0500 (Tue, 27 Nov 2007)\nNew Revision: 38795\n\nModified:\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramQuestionScoresBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/HistogramListener.java\nsam/branches/SAK-12065/samigo-app/src/webapp/jsf/evaluation/histogramScores.jsp\nLog:\nSAK 12065 - Discrimination Statistics\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Tue Nov 27 09:52:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 27 Nov 2007 09:52:53 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 27 Nov 2007 09:52:53 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby casino.mail.umich.edu () with ESMTP id lAREqqbm024370;\n\tTue, 27 Nov 2007 09:52:52 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 474C2F3C.4F7A0.28631 ; \n\t27 Nov 2007 09:52:47 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5FB088B4DF;\n\tTue, 27 Nov 2007 14:52:45 +0000 (GMT)\nMessage-ID: <200711271446.lAREkURQ031338@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 623\n          for <source@collab.sakaiproject.org>;\n          Tue, 27 Nov 2007 14:52:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 654C12ABDD\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 14:52:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAREkUtE031340\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 09:46:30 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAREkURQ031338\n\tfor source@collab.sakaiproject.org; Tue, 27 Nov 2007 09:46:30 -0500\nDate: Tue, 27 Nov 2007 09:46:30 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r38794 - ctools/trunk/builds/ctools_2-4/patches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 27 09:52:53 2007\nX-DSPAM-Confidence: 0.8501\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38794\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-27 09:46:29 -0500 (Tue, 27 Nov 2007)\nNew Revision: 38794\n\nAdded:\nctools/trunk/builds/ctools_2-4/patches/SAK-12115.patch\nLog:\nCTools: commit initial patch for SAK-12115\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Tue Nov 27 09:43:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 27 Nov 2007 09:43:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 27 Nov 2007 09:43:30 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby jacknife.mail.umich.edu () with ESMTP id lAREhTsw019872;\n\tTue, 27 Nov 2007 09:43:29 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 474C2CFF.928B1.18231 ; \n\t27 Nov 2007 09:43:14 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BAD128B4D8;\n\tTue, 27 Nov 2007 14:43:11 +0000 (GMT)\nMessage-ID: <200711271436.lAREai0H031306@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 82\n          for <source@collab.sakaiproject.org>;\n          Tue, 27 Nov 2007 14:42:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3144A2ABEB\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 14:42:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAREaip8031308\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 09:36:44 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAREai0H031306\n\tfor source@collab.sakaiproject.org; Tue, 27 Nov 2007 09:36:44 -0500\nDate: Tue, 27 Nov 2007 09:36:44 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38793 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 27 09:43:30 2007\nX-DSPAM-Confidence: 0.7613\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38793\n\nAuthor: zqian@umich.edu\nDate: 2007-11-27 09:36:42 -0500 (Tue, 27 Nov 2007)\nNew Revision: 38793\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerge the fix to SAK-11443 into post-2-4 branch: svn merge -r 35031:35032 https://source.sakaiproject.org/svn/assignment/trunk/\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Tue Nov 27 05:57:15 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 27 Nov 2007 05:57:15 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 27 Nov 2007 05:57:15 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby jacknife.mail.umich.edu () with ESMTP id lARAvEbh026064;\n\tTue, 27 Nov 2007 05:57:14 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 474BF804.79BA8.31344 ; \n\t27 Nov 2007 05:57:11 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id AC92B51700;\n\tTue, 27 Nov 2007 10:55:02 +0000 (GMT)\nMessage-ID: <200711271050.lARAopR0030978@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 686\n          for <source@collab.sakaiproject.org>;\n          Tue, 27 Nov 2007 10:54:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1A27D2A2AB\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 10:56:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lARAop5w030980\n\tfor <source@collab.sakaiproject.org>; Tue, 27 Nov 2007 05:50:51 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lARAopR0030978\n\tfor source@collab.sakaiproject.org; Tue, 27 Nov 2007 05:50:51 -0500\nDate: Tue, 27 Nov 2007 05:50:51 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38792 - in maven2/trunk: . sakai-plugin sakai-plugin/src/main/java/org/sakaiproject/maven/plugin/component sakai-plugin/src/main/resources\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 27 05:57:15 2007\nX-DSPAM-Confidence: 0.9850\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38792\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-27 05:50:34 -0500 (Tue, 27 Nov 2007)\nNew Revision: 38792\n\nAdded:\nmaven2/trunk/sakai-plugin/src/main/resources/deploy.tomcat5.properties\nmaven2/trunk/sakai-plugin/src/main/resources/deploy.tomcat6.properties\nModified:\nmaven2/trunk/pom.xml\nmaven2/trunk/sakai-plugin/\nmaven2/trunk/sakai-plugin/pom.xml\nmaven2/trunk/sakai-plugin/src/main/java/org/sakaiproject/maven/plugin/component/AbstractComponentMojo.java\nmaven2/trunk/sakai-plugin/src/main/java/org/sakaiproject/maven/plugin/component/ComponentDeployMojo.java\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-12275\nAdded deployment profile, see SAK for details\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Mon Nov 26 17:58:00 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 26 Nov 2007 17:58:00 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 26 Nov 2007 17:58:00 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby faithful.mail.umich.edu () with ESMTP id lAQMvx7b007909;\n\tMon, 26 Nov 2007 17:57:59 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 474B4F6E.323D6.3791 ; \n\t26 Nov 2007 17:57:52 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 980FD8AA72;\n\tMon, 26 Nov 2007 22:46:16 +0000 (GMT)\nMessage-ID: <200711262251.lAQMpadG029478@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 594\n          for <source@collab.sakaiproject.org>;\n          Mon, 26 Nov 2007 22:45:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 52CAE2A112\n\tfor <source@collab.sakaiproject.org>; Mon, 26 Nov 2007 22:57:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAQMpagB029480\n\tfor <source@collab.sakaiproject.org>; Mon, 26 Nov 2007 17:51:36 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAQMpadG029478\n\tfor source@collab.sakaiproject.org; Mon, 26 Nov 2007 17:51:36 -0500\nDate: Mon, 26 Nov 2007 17:51:36 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38791 - content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 26 17:58:00 2007\nX-DSPAM-Confidence: 0.9863\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38791\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-26 17:51:30 -0500 (Mon, 26 Nov 2007)\nNew Revision: 38791\n\nModified:\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/BaseJCRCollectionEdit.java\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/BaseJCRStorage.java\nLog:\nSAK-12105: Switched some logging over to debug, fixed up lots of exception handling\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom john.ellis@rsmart.com Mon Nov 26 12:57:38 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 26 Nov 2007 12:57:38 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 26 Nov 2007 12:57:38 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby chaos.mail.umich.edu () with ESMTP id lAQHvaWc014967;\n\tMon, 26 Nov 2007 12:57:36 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 474B0909.5FAF1.23997 ; \n\t26 Nov 2007 12:57:33 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id F04FF8A6CC;\n\tMon, 26 Nov 2007 17:57:27 +0000 (GMT)\nMessage-ID: <200711261751.lAQHpGPO028962@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 991\n          for <source@collab.sakaiproject.org>;\n          Mon, 26 Nov 2007 17:57:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 91CBD29EE7\n\tfor <source@collab.sakaiproject.org>; Mon, 26 Nov 2007 17:57:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAQHpGgA028964\n\tfor <source@collab.sakaiproject.org>; Mon, 26 Nov 2007 12:51:16 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAQHpGPO028962\n\tfor source@collab.sakaiproject.org; Mon, 26 Nov 2007 12:51:16 -0500\nDate: Mon, 26 Nov 2007 12:51:16 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to john.ellis@rsmart.com using -f\nTo: source@collab.sakaiproject.org\nFrom: john.ellis@rsmart.com\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 26 12:57:38 2007\nX-DSPAM-Confidence: 0.9815\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38790\n\nAuthor: john.ellis@rsmart.com\nDate: 2007-11-26 12:51:07 -0500 (Mon, 26 Nov 2007)\nNew Revision: 38790\n\nRemoved:\nmetaobj/trunk/metaobj-impl/api-impl/src/bundle/web-context.properties\nmetaobj/trunk/metaobj-tool/tool/src/bundle/web-context.properties\nmetaobj/trunk/metaobj-util/tool-lib/src/java/org/sakaiproject/metaobj/utils/ioc/web/WebContextLoader.java\nmetaobj/trunk/metaobj-util/tool-lib/src/java/org/sakaiproject/metaobj/utils/ioc/web/WebContextLoaderListener.java\nModified:\nmetaobj/trunk/metaobj-tool/tool/src/webapp/WEB-INF/components.xml\nmetaobj/trunk/metaobj-tool/tool/src/webapp/WEB-INF/web.xml\nLog:\nSAK-12254\nchanged over to use sakai's context loader\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom john.ellis@rsmart.com Mon Nov 26 12:56:36 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 26 Nov 2007 12:56:36 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 26 Nov 2007 12:56:36 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby sleepers.mail.umich.edu () with ESMTP id lAQHuZxv026079;\n\tMon, 26 Nov 2007 12:56:35 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 474B08CC.6FDE.27895 ; \n\t26 Nov 2007 12:56:31 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8F10F8A6C7;\n\tMon, 26 Nov 2007 17:56:26 +0000 (GMT)\nMessage-ID: <200711261750.lAQHoHtF028938@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 455\n          for <source@collab.sakaiproject.org>;\n          Mon, 26 Nov 2007 17:56:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0292529EE7\n\tfor <source@collab.sakaiproject.org>; Mon, 26 Nov 2007 17:56:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAQHoHhO028940\n\tfor <source@collab.sakaiproject.org>; Mon, 26 Nov 2007 12:50:17 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAQHoHtF028938\n\tfor source@collab.sakaiproject.org; Mon, 26 Nov 2007 12:50:17 -0500\nDate: Mon, 26 Nov 2007 12:50:17 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to john.ellis@rsmart.com using -f\nTo: source@collab.sakaiproject.org\nFrom: john.ellis@rsmart.com\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 26 12:56:36 2007\nX-DSPAM-Confidence: 0.8469\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38789\n\nAuthor: john.ellis@rsmart.com\nDate: 2007-11-26 12:49:53 -0500 (Mon, 26 Nov 2007)\nNew Revision: 38789\n\nAdded:\nosp/trunk/common/tool/src/webapp/WEB-INF/components.xml\nosp/trunk/glossary/tool/src/webapp/WEB-INF/components.xml\nosp/trunk/matrix/tool/src/webapp/WEB-INF/components.xml\nosp/trunk/portal/tool/src/webapp/WEB-INF/components.xml\nosp/trunk/presentation/tool/src/webapp/WEB-INF/components.xml\nosp/trunk/xsltcharon/xsltcharon-portal/xsl-portal/src/webapp/WEB-INF/components.xml\nRemoved:\nosp/trunk/common/tool/src/bundle/web-context.properties\nosp/trunk/glossary/tool/src/bundle/web-context.properties\nosp/trunk/matrix/tool/src/bundle/web-context.properties\nosp/trunk/portal/tool/src/bundle/web-context.properties\nosp/trunk/presentation/tool/src/bundle/web-context.properties\nosp/trunk/xsltcharon/xsltcharon-portal/xsl-portal/src/bundle/web-context.properties\nModified:\nosp/trunk/common/tool/src/webapp/WEB-INF/web.xml\nosp/trunk/glossary/tool/src/webapp/WEB-INF/web.xml\nosp/trunk/matrix/tool/src/webapp/WEB-INF/web.xml\nosp/trunk/portal/tool/src/webapp/WEB-INF/web.xml\nosp/trunk/presentation/tool/src/webapp/WEB-INF/web.xml\nosp/trunk/xsltcharon/xsltcharon-portal/xsl-portal/src/webapp/WEB-INF/web.xml\nLog:\nSAK-12254\nchanged to use the spring ContextLoader\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Mon Nov 26 12:55:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 26 Nov 2007 12:55:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 26 Nov 2007 12:55:30 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby fan.mail.umich.edu () with ESMTP id lAQHtUq3009586;\n\tMon, 26 Nov 2007 12:55:30 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 474B0888.48F0A.8245 ; \n\t26 Nov 2007 12:55:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2622A8A6C8;\n\tMon, 26 Nov 2007 17:55:19 +0000 (GMT)\nMessage-ID: <200711261749.lAQHn6Kc028926@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 637\n          for <source@collab.sakaiproject.org>;\n          Mon, 26 Nov 2007 17:55:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5CB5229EE7\n\tfor <source@collab.sakaiproject.org>; Mon, 26 Nov 2007 17:55:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAQHn6hH028928\n\tfor <source@collab.sakaiproject.org>; Mon, 26 Nov 2007 12:49:06 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAQHn6Kc028926\n\tfor source@collab.sakaiproject.org; Mon, 26 Nov 2007 12:49:06 -0500\nDate: Mon, 26 Nov 2007 12:49:06 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38788 - memory/branches/SAK-11913/memory-test/test/src/java/org/sakaiproject/memory/test\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 26 12:55:30 2007\nX-DSPAM-Confidence: 0.9846\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38788\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-26 12:48:56 -0500 (Mon, 26 Nov 2007)\nNew Revision: 38788\n\nModified:\nmemory/branches/SAK-11913/memory-test/test/src/java/org/sakaiproject/memory/test/HeavyLoadTestMemoryService.java\nmemory/branches/SAK-11913/memory-test/test/src/java/org/sakaiproject/memory/test/LoadTestMemoryService.java\nmemory/branches/SAK-11913/memory-test/test/src/java/org/sakaiproject/memory/test/LoadTestSakaiCaches.java\nLog:\nSAK-11913: Updated all the tests to take advantage of built in testrunner features\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Mon Nov 26 11:28:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 26 Nov 2007 11:28:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 26 Nov 2007 11:28:25 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby panther.mail.umich.edu () with ESMTP id lAQGSOGu021891;\n\tMon, 26 Nov 2007 11:28:24 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 474AF3DD.5AA3.18185 ; \n\t26 Nov 2007 11:27:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6A1BD8A504;\n\tMon, 26 Nov 2007 16:27:06 +0000 (GMT)\nMessage-ID: <200711261620.lAQGKxHx028765@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 360\n          for <source@collab.sakaiproject.org>;\n          Mon, 26 Nov 2007 16:26:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 64B4226189\n\tfor <source@collab.sakaiproject.org>; Mon, 26 Nov 2007 16:26:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAQGKxiJ028767\n\tfor <source@collab.sakaiproject.org>; Mon, 26 Nov 2007 11:20:59 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAQGKxHx028765\n\tfor source@collab.sakaiproject.org; Mon, 26 Nov 2007 11:20:59 -0500\nDate: Mon, 26 Nov 2007 11:20:59 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 26 11:28:25 2007\nX-DSPAM-Confidence: 0.8478\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38787\n\nAuthor: cwen@iupui.edu\nDate: 2007-11-26 11:20:57 -0500 (Mon, 26 Nov 2007)\nNew Revision: 38787\n\nAdded:\noncourse/trunk/src/assignment/\noncourse/trunk/src/assignment/assignment-impl/\noncourse/trunk/src/assignment/assignment-impl/impl/\noncourse/trunk/src/assignment/assignment-impl/impl/src/\noncourse/trunk/src/assignment/assignment-impl/impl/src/java/\noncourse/trunk/src/assignment/assignment-impl/impl/src/java/org/\noncourse/trunk/src/assignment/assignment-impl/impl/src/java/org/sakaiproject/\noncourse/trunk/src/assignment/assignment-impl/impl/src/java/org/sakaiproject/assignment/\noncourse/trunk/src/assignment/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/\noncourse/trunk/src/assignment/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\noncourse/trunk/src/assignment/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/DbAssignmentService.java\noncourse/trunk/src/assignment/assignment-tool/\noncourse/trunk/src/assignment/assignment-tool/tool/\noncourse/trunk/src/assignment/assignment-tool/tool/src/\noncourse/trunk/src/assignment/assignment-tool/tool/src/java/\noncourse/trunk/src/assignment/assignment-tool/tool/src/java/org/\noncourse/trunk/src/assignment/assignment-tool/tool/src/java/org/sakaiproject/\noncourse/trunk/src/assignment/assignment-tool/tool/src/java/org/sakaiproject/assignment/\noncourse/trunk/src/assignment/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/\noncourse/trunk/src/assignment/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\npost-24 for assignment and our ONC-258 fixes.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Mon Nov 26 10:33:38 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 26 Nov 2007 10:33:38 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 26 Nov 2007 10:33:38 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby casino.mail.umich.edu () with ESMTP id lAQFXbTK014699;\n\tMon, 26 Nov 2007 10:33:37 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 474AE74B.C24B6.13891 ; \n\t26 Nov 2007 10:33:34 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 941788A315;\n\tMon, 26 Nov 2007 15:33:30 +0000 (GMT)\nMessage-ID: <200711261527.lAQFRQMi028613@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 890\n          for <source@collab.sakaiproject.org>;\n          Mon, 26 Nov 2007 15:33:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1860929EAF\n\tfor <source@collab.sakaiproject.org>; Mon, 26 Nov 2007 15:33:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAQFRQaI028615\n\tfor <source@collab.sakaiproject.org>; Mon, 26 Nov 2007 10:27:26 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAQFRQMi028613\n\tfor source@collab.sakaiproject.org; Mon, 26 Nov 2007 10:27:26 -0500\nDate: Mon, 26 Nov 2007 10:27:26 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 26 10:33:38 2007\nX-DSPAM-Confidence: 0.8490\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38786\n\nAuthor: zqian@umich.edu\nDate: 2007-11-26 10:27:21 -0500 (Mon, 26 Nov 2007)\nNew Revision: 38786\n\nAdded:\nsite-manage/trunk/site-manage-api/api/src/java/org/sakaiproject/sitemanage/api/UserNotificationProvider.java\nsite-manage/trunk/site-manage-impl/impl/src/bundle/UserNotificationProvider.properties\nsite-manage/trunk/site-manage-impl/impl/src/java/org/sakaiproject/sitemanage/impl/UserNotificationProviderImpl.java\nModified:\nsite-manage/trunk/site-manage-api/.classpath\nsite-manage/trunk/site-manage-api/api/pom.xml\nsite-manage/trunk/site-manage-impl/.classpath\nsite-manage/trunk/site-manage-impl/impl/pom.xml\nsite-manage/trunk/site-manage-impl/pack/src/webapp/WEB-INF/components.xml\nsite-manage/trunk/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties\nsite-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nLog:\nmerge 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/\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Mon Nov 26 10:32:59 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 26 Nov 2007 10:32:59 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 26 Nov 2007 10:32:59 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby jacknife.mail.umich.edu () with ESMTP id lAQFWwQZ008234;\n\tMon, 26 Nov 2007 10:32:58 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 474AE722.6A6E5.29117 ; \n\t26 Nov 2007 10:32:53 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8A45E8A2B9;\n\tMon, 26 Nov 2007 15:32:48 +0000 (GMT)\nMessage-ID: <200711261526.lAQFQil7028599@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 31\n          for <source@collab.sakaiproject.org>;\n          Mon, 26 Nov 2007 15:32:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AE96F29EAF\n\tfor <source@collab.sakaiproject.org>; Mon, 26 Nov 2007 15:32:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAQFQiZu028601\n\tfor <source@collab.sakaiproject.org>; Mon, 26 Nov 2007 10:26:44 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAQFQil7028599\n\tfor source@collab.sakaiproject.org; Mon, 26 Nov 2007 10:26:44 -0500\nDate: Mon, 26 Nov 2007 10:26:44 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [sakai] svn commit: r38785 - oncourse/branches/sakai_2-4-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 26 10:32:59 2007\nX-DSPAM-Confidence: 0.8421\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38785\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-11-26 10:26:43 -0500 (Mon, 26 Nov 2007)\nNew Revision: 38785\n\nModified:\noncourse/branches/sakai_2-4-x/\noncourse/branches/sakai_2-4-x/.externals\nLog:\nUpdated externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Mon Nov 26 10:29:33 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 26 Nov 2007 10:29:33 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 26 Nov 2007 10:29:33 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby panther.mail.umich.edu () with ESMTP id lAQFTWRU010502;\n\tMon, 26 Nov 2007 10:29:32 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 474AE656.CB75D.15086 ; \n\t26 Nov 2007 10:29:29 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8752C89044;\n\tMon, 26 Nov 2007 15:29:24 +0000 (GMT)\nMessage-ID: <200711261523.lAQFNI5d028574@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 163\n          for <source@collab.sakaiproject.org>;\n          Mon, 26 Nov 2007 15:29:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2B71829EAF\n\tfor <source@collab.sakaiproject.org>; Mon, 26 Nov 2007 15:29:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAQFNIgf028576\n\tfor <source@collab.sakaiproject.org>; Mon, 26 Nov 2007 10:23:18 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAQFNI5d028574\n\tfor source@collab.sakaiproject.org; Mon, 26 Nov 2007 10:23:18 -0500\nDate: Mon, 26 Nov 2007 10:23:18 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 26 10:29:33 2007\nX-DSPAM-Confidence: 0.8488\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38784\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-26 10:23:02 -0500 (Mon, 26 Nov 2007)\nNew Revision: 38784\n\nRemoved:\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/sql/mysql/prepare-jcr-migration-copy.sql\nModified:\ncontent/branches/SAK-12105/content-impl-jcr/impl/pom.xml\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRContentService.java\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRStorage.java\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/CHStoJCRMigratorImpl.java\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/sql/mysql/setup-migration-dbtables.sql\ncontent/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF/components-jcr.xml\nLog:\nSAK-12105: Fixed up the migration stuff to create tables automatically, Also cleaned up some logging\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Mon Nov 26 10:02:31 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 26 Nov 2007 10:02:31 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 26 Nov 2007 10:02:31 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby godsend.mail.umich.edu () with ESMTP id lAQF2VVh020497;\n\tMon, 26 Nov 2007 10:02:31 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 474AE001.38D4A.11739 ; \n\t26 Nov 2007 10:02:28 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 162998A321;\n\tMon, 26 Nov 2007 15:02:24 +0000 (GMT)\nMessage-ID: <200711261456.lAQEuDqb028457@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 673\n          for <source@collab.sakaiproject.org>;\n          Mon, 26 Nov 2007 15:02:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AD32B1C3D2\n\tfor <source@collab.sakaiproject.org>; Mon, 26 Nov 2007 15:02:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAQEuDwe028459\n\tfor <source@collab.sakaiproject.org>; Mon, 26 Nov 2007 09:56:13 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAQEuDqb028457\n\tfor source@collab.sakaiproject.org; Mon, 26 Nov 2007 09:56:13 -0500\nDate: Mon, 26 Nov 2007 09:56:13 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [sakai] svn commit: r38783 - in syllabus/branches/sakai_2-4-x/syllabus-app/src: java/org/sakaiproject/tool/syllabus webapp/syllabus\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 26 10:02:31 2007\nX-DSPAM-Confidence: 0.8475\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38783\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-11-26 09:56:12 -0500 (Mon, 26 Nov 2007)\nNew Revision: 38783\n\nModified:\nsyllabus/branches/sakai_2-4-x/syllabus-app/src/java/org/sakaiproject/tool/syllabus/SyllabusTool.java\nsyllabus/branches/sakai_2-4-x/syllabus-app/src/webapp/syllabus/main.jsp\nLog:\nBack out merge of r38086 and r38089 (SAK-11221) into 2-4-x due to SAK-12234 \n\nsvn merge -r38089:38088 https://source.sakaiproject.org/svn/syllabus/branches/sakai_2-4-x\nU    syllabus-app/src/java/org/sakaiproject/tool/syllabus/SyllabusTool.java\nU    syllabus-app/src/webapp/syllabus/main.jsp\n\nsvn merge -r38086:38085 https://source.sakaiproject.org/svn/syllabus/branches/sakai_2-4-x\nG    syllabus-app/src/webapp/syllabus/main.jsp\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gopal.ramasammycook@gmail.com Mon Nov 26 09:56:39 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 26 Nov 2007 09:56:39 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 26 Nov 2007 09:56:39 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby chaos.mail.umich.edu () with ESMTP id lAQEuclL025215;\n\tMon, 26 Nov 2007 09:56:38 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 474ADE9F.E084E.23458 ; \n\t26 Nov 2007 09:56:34 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E17DF62927;\n\tMon, 26 Nov 2007 14:56:28 +0000 (GMT)\nMessage-ID: <200711261450.lAQEoLmv028397@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 826\n          for <source@collab.sakaiproject.org>;\n          Mon, 26 Nov 2007 14:56:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D11E61C3D2\n\tfor <source@collab.sakaiproject.org>; Mon, 26 Nov 2007 14:56:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAQEoLS7028399\n\tfor <source@collab.sakaiproject.org>; Mon, 26 Nov 2007 09:50:21 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAQEoLmv028397\n\tfor source@collab.sakaiproject.org; Mon, 26 Nov 2007 09:50:21 -0500\nDate: Mon, 26 Nov 2007 09:50:21 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f\nTo: source@collab.sakaiproject.org\nFrom: gopal.ramasammycook@gmail.com\nSubject: [sakai] svn commit: r38782 - in sam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui: bean/evaluation listener/evaluation\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 26 09:56:39 2007\nX-DSPAM-Confidence: 0.9796\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38782\n\nAuthor: gopal.ramasammycook@gmail.com\nDate: 2007-11-26 09:50:06 -0500 (Mon, 26 Nov 2007)\nNew Revision: 38782\n\nModified:\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramQuestionScoresBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/evaluation/HistogramScoresBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/HistogramListener.java\nLog:\nSAK-12065  Discrimination Stats\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom lance@indiana.edu Mon Nov 26 09:42:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 26 Nov 2007 09:42:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 26 Nov 2007 09:42:30 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby faithful.mail.umich.edu () with ESMTP id lAQEgTGV001098;\n\tMon, 26 Nov 2007 09:42:29 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 474ADB49.26CF4.12799 ; \n\t26 Nov 2007 09:42:19 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 29F1A5952F;\n\tMon, 26 Nov 2007 14:42:22 +0000 (GMT)\nMessage-ID: <200711261436.lAQEa8ut028318@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 421\n          for <source@collab.sakaiproject.org>;\n          Mon, 26 Nov 2007 14:42:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A4E0D239DA\n\tfor <source@collab.sakaiproject.org>; Mon, 26 Nov 2007 14:42:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAQEa8mk028320\n\tfor <source@collab.sakaiproject.org>; Mon, 26 Nov 2007 09:36:08 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAQEa8ut028318\n\tfor source@collab.sakaiproject.org; Mon, 26 Nov 2007 09:36:08 -0500\nDate: Mon, 26 Nov 2007 09:36:08 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to lance@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: lance@indiana.edu\nSubject: [sakai] svn commit: r38781 - util/trunk/util-util/util/src/java/org/sakaiproject/util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 26 09:42:30 2007\nX-DSPAM-Confidence: 0.6940\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38781\n\nAuthor: lance@indiana.edu\nDate: 2007-11-26 09:36:07 -0500 (Mon, 26 Nov 2007)\nNew Revision: 38781\n\nModified:\nutil/trunk/util-util/util/src/java/org/sakaiproject/util/FormattedText.java\nLog:\nSAK-12147\nhttp://jira.sakaiproject.org/jira/browse/SAK-12147\nRemoval of FormatedText.parseFormatedText(String, Strinbuffer) breaks backward compatibility\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Mon Nov 26 06:25:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 26 Nov 2007 06:25:13 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 26 Nov 2007 06:25:13 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby casino.mail.umich.edu () with ESMTP id lAQBPDd4005659;\n\tMon, 26 Nov 2007 06:25:13 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 474AAD13.16DE.1563 ; \n\t26 Nov 2007 06:25:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 48CBB89AC4;\n\tMon, 26 Nov 2007 11:25:03 +0000 (GMT)\nMessage-ID: <200711261118.lAQBIvRs028021@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 586\n          for <source@collab.sakaiproject.org>;\n          Mon, 26 Nov 2007 11:24:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0B247235FF\n\tfor <source@collab.sakaiproject.org>; Mon, 26 Nov 2007 11:24:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAQBIwFk028023\n\tfor <source@collab.sakaiproject.org>; Mon, 26 Nov 2007 06:18:58 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAQBIvRs028021\n\tfor source@collab.sakaiproject.org; Mon, 26 Nov 2007 06:18:57 -0500\nDate: Mon, 26 Nov 2007 06:18:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38780 - content/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 26 06:25:13 2007\nX-DSPAM-Confidence: 0.9771\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38780\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-11-26 06:18:53 -0500 (Mon, 26 Nov 2007)\nNew Revision: 38780\n\nModified:\ncontent/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF/components.xml\nLog:\nSAK-12105 updated components\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ggolden@umich.edu Sun Nov 25 15:55:31 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 25 Nov 2007 15:55:31 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 25 Nov 2007 15:55:31 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby panther.mail.umich.edu () with ESMTP id lAPKtVwJ032536;\n\tSun, 25 Nov 2007 15:55:31 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4749E13D.7CCCB.10690 ; \n\t25 Nov 2007 15:55:28 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id F091952498;\n\tSun, 25 Nov 2007 20:55:22 +0000 (GMT)\nMessage-ID: <200711252049.lAPKnHi6025943@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 921\n          for <source@collab.sakaiproject.org>;\n          Sun, 25 Nov 2007 20:55:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2153923862\n\tfor <source@collab.sakaiproject.org>; Sun, 25 Nov 2007 20:55:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAPKnH4o025945\n\tfor <source@collab.sakaiproject.org>; Sun, 25 Nov 2007 15:49:17 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAPKnHi6025943\n\tfor source@collab.sakaiproject.org; Sun, 25 Nov 2007 15:49:17 -0500\nDate: Sun, 25 Nov 2007 15:49:17 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ggolden@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ggolden@umich.edu\nSubject: [sakai] svn commit: r38779 - db/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov 25 15:55:31 2007\nX-DSPAM-Confidence: 0.9835\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38779\n\nAuthor: ggolden@umich.edu\nDate: 2007-11-25 15:49:15 -0500 (Sun, 25 Nov 2007)\nNew Revision: 38779\n\nModified:\ndb/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlService.java\nLog:\nSAK-12264 - rolled back change - svn merge -r38776:38775 https://source.sakaiproject.org/svn/db/branches/sakai_2-4-x\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ggolden@umich.edu Sun Nov 25 15:53:29 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 25 Nov 2007 15:53:29 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 25 Nov 2007 15:53:29 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby fan.mail.umich.edu () with ESMTP id lAPKrSvv006588;\n\tSun, 25 Nov 2007 15:53:28 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 4749E0C2.4B851.20828 ; \n\t25 Nov 2007 15:53:25 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8695C52498;\n\tSun, 25 Nov 2007 20:53:37 +0000 (GMT)\nMessage-ID: <200711252047.lAPKl8L6025931@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 290\n          for <source@collab.sakaiproject.org>;\n          Sun, 25 Nov 2007 20:53:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4DAC723862\n\tfor <source@collab.sakaiproject.org>; Sun, 25 Nov 2007 20:53:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAPKl8Hq025933\n\tfor <source@collab.sakaiproject.org>; Sun, 25 Nov 2007 15:47:08 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAPKl8L6025931\n\tfor source@collab.sakaiproject.org; Sun, 25 Nov 2007 15:47:08 -0500\nDate: Sun, 25 Nov 2007 15:47:08 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ggolden@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ggolden@umich.edu\nSubject: [sakai] svn commit: r38778 - db/trunk/db-impl/impl/src/java/org/sakaiproject/db/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov 25 15:53:29 2007\nX-DSPAM-Confidence: 0.9835\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38778\n\nAuthor: ggolden@umich.edu\nDate: 2007-11-25 15:47:06 -0500 (Sun, 25 Nov 2007)\nNew Revision: 38778\n\nModified:\ndb/trunk/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlService.java\nLog:\nSAK-12264 - rolling back change - svn merge -r38775:38774 https://source.sakaiproject.org/svn/db/trunk\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Sun Nov 25 01:56:34 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 25 Nov 2007 01:56:34 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 25 Nov 2007 01:56:34 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby casino.mail.umich.edu () with ESMTP id lAP6uXmd028252;\n\tSun, 25 Nov 2007 01:56:33 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 47491C9B.53636.21289 ; \n\t25 Nov 2007 01:56:30 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2526655126;\n\tSun, 25 Nov 2007 06:40:20 +0000 (GMT)\nMessage-ID: <200711250650.lAP6oI4L012601@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 100\n          for <source@collab.sakaiproject.org>;\n          Sun, 25 Nov 2007 06:40:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2575A297BD\n\tfor <source@collab.sakaiproject.org>; Sun, 25 Nov 2007 06:56:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAP6oIbC012603\n\tfor <source@collab.sakaiproject.org>; Sun, 25 Nov 2007 01:50:19 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAP6oI4L012601\n\tfor source@collab.sakaiproject.org; Sun, 25 Nov 2007 01:50:18 -0500\nDate: Sun, 25 Nov 2007 01:50:18 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r38777 - assignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov 25 01:56:34 2007\nX-DSPAM-Confidence: 0.9775\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38777\n\nAuthor: cwen@iupui.edu\nDate: 2007-11-25 01:50:14 -0500 (Sun, 25 Nov 2007)\nNew Revision: 38777\n\nModified:\nassignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/DbAssignmentService.java\nLog:\nONC-258 => filter out garbled characters after </submission> tag\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ggolden@umich.edu Sat Nov 24 23:24:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 24 Nov 2007 23:24:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 24 Nov 2007 23:24:19 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby sleepers.mail.umich.edu () with ESMTP id lAP4OJQv026972;\n\tSat, 24 Nov 2007 23:24:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 4748F8ED.DD13F.1548 ; \n\t24 Nov 2007 23:24:16 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 64DC96A47B;\n\tSun, 25 Nov 2007 04:24:12 +0000 (GMT)\nMessage-ID: <200711250418.lAP4I8rJ012520@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 284\n          for <source@collab.sakaiproject.org>;\n          Sun, 25 Nov 2007 04:23:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 99AF624F80\n\tfor <source@collab.sakaiproject.org>; Sun, 25 Nov 2007 04:23:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAP4I855012522\n\tfor <source@collab.sakaiproject.org>; Sat, 24 Nov 2007 23:18:08 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAP4I8rJ012520\n\tfor source@collab.sakaiproject.org; Sat, 24 Nov 2007 23:18:08 -0500\nDate: Sat, 24 Nov 2007 23:18:08 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ggolden@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ggolden@umich.edu\nSubject: [sakai] svn commit: r38776 - db/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Nov 24 23:24:19 2007\nX-DSPAM-Confidence: 0.9843\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38776\n\nAuthor: ggolden@umich.edu\nDate: 2007-11-24 23:18:07 -0500 (Sat, 24 Nov 2007)\nNew Revision: 38776\n\nModified:\ndb/branches/sakai_2-4-x/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlService.java\nLog:\nSAK-12264 - support for Date type in SqlService\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ggolden@umich.edu Sat Nov 24 23:00:11 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 24 Nov 2007 23:00:11 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 24 Nov 2007 23:00:11 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby brazil.mail.umich.edu () with ESMTP id lAP40BPP023943;\n\tSat, 24 Nov 2007 23:00:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 4748F346.2511F.8955 ; \n\t24 Nov 2007 23:00:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0312C5DD75;\n\tSun, 25 Nov 2007 04:00:00 +0000 (GMT)\nMessage-ID: <200711250353.lAP3rwYj012495@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 915\n          for <source@collab.sakaiproject.org>;\n          Sun, 25 Nov 2007 03:59:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 23F4E24F6F\n\tfor <source@collab.sakaiproject.org>; Sun, 25 Nov 2007 03:59:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAP3rwkZ012497\n\tfor <source@collab.sakaiproject.org>; Sat, 24 Nov 2007 22:53:58 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAP3rwYj012495\n\tfor source@collab.sakaiproject.org; Sat, 24 Nov 2007 22:53:58 -0500\nDate: Sat, 24 Nov 2007 22:53:58 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ggolden@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ggolden@umich.edu\nSubject: [sakai] svn commit: r38775 - db/trunk/db-impl/impl/src/java/org/sakaiproject/db/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Nov 24 23:00:11 2007\nX-DSPAM-Confidence: 0.8476\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38775\n\nAuthor: ggolden@umich.edu\nDate: 2007-11-24 22:53:56 -0500 (Sat, 24 Nov 2007)\nNew Revision: 38775\n\nModified:\ndb/trunk/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlService.java\nLog:\nSAK-12264 - support for Date type in SqlService\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ggolden@umich.edu Sat Nov 24 21:35:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 24 Nov 2007 21:35:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 24 Nov 2007 21:35:30 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby awakenings.mail.umich.edu () with ESMTP id lAP2ZTbC023801;\n\tSat, 24 Nov 2007 21:35:29 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 4748DF6C.3E07D.31479 ; \n\t24 Nov 2007 21:35:26 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 742306F30F;\n\tSun, 25 Nov 2007 02:35:28 +0000 (GMT)\nMessage-ID: <200711250229.lAP2T7KW012445@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 983\n          for <source@collab.sakaiproject.org>;\n          Sun, 25 Nov 2007 02:35:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id F294524CEC\n\tfor <source@collab.sakaiproject.org>; Sun, 25 Nov 2007 02:34:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAP2T7oO012447\n\tfor <source@collab.sakaiproject.org>; Sat, 24 Nov 2007 21:29:07 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAP2T7KW012445\n\tfor source@collab.sakaiproject.org; Sat, 24 Nov 2007 21:29:07 -0500\nDate: Sat, 24 Nov 2007 21:29:07 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ggolden@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ggolden@umich.edu\nSubject: [sakai] svn commit: r38774 - db/tags/sakai_2-5-0_beta/db-impl/impl/src/java/org/sakaiproject/db/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Nov 24 21:35:30 2007\nX-DSPAM-Confidence: 0.9851\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38774\n\nAuthor: ggolden@umich.edu\nDate: 2007-11-24 21:29:05 -0500 (Sat, 24 Nov 2007)\nNew Revision: 38774\n\nModified:\ndb/tags/sakai_2-5-0_beta/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlService.java\nLog:\nSAK-12264 reversed accidental tag checkin - svn merge -r38773:38772 https://source.sakaiproject.org/svn/db/tags/sakai_2-5-0_beta\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ggolden@umich.edu Sat Nov 24 21:29:01 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 24 Nov 2007 21:29:01 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 24 Nov 2007 21:29:01 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby faithful.mail.umich.edu () with ESMTP id lAP2T0LM003960;\n\tSat, 24 Nov 2007 21:29:00 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 4748DDE2.BD4DA.18012 ; \n\t24 Nov 2007 21:28:53 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0B06262584;\n\tSun, 25 Nov 2007 02:28:52 +0000 (GMT)\nMessage-ID: <200711250222.lAP2Mjow012335@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 365\n          for <source@collab.sakaiproject.org>;\n          Sun, 25 Nov 2007 02:28:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E518F24F0B\n\tfor <source@collab.sakaiproject.org>; Sun, 25 Nov 2007 02:28:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAP2MjeO012337\n\tfor <source@collab.sakaiproject.org>; Sat, 24 Nov 2007 21:22:45 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAP2Mjow012335\n\tfor source@collab.sakaiproject.org; Sat, 24 Nov 2007 21:22:45 -0500\nDate: Sat, 24 Nov 2007 21:22:45 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ggolden@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ggolden@umich.edu\nSubject: [sakai] svn commit: r38773 - db/tags/sakai_2-5-0_beta/db-impl/impl/src/java/org/sakaiproject/db/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Nov 24 21:29:01 2007\nX-DSPAM-Confidence: 0.9859\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38773\n\nAuthor: ggolden@umich.edu\nDate: 2007-11-24 21:22:43 -0500 (Sat, 24 Nov 2007)\nNew Revision: 38773\n\nModified:\ndb/tags/sakai_2-5-0_beta/db-impl/impl/src/java/org/sakaiproject/db/impl/BasicSqlService.java\nLog:\nSAK-12264 - support for Date type in SqlService\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Fri Nov 23 04:27:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 23 Nov 2007 04:27:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 23 Nov 2007 04:27:02 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby score.mail.umich.edu () with ESMTP id lAN9Qx0R026227;\n\tFri, 23 Nov 2007 04:26:59 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 47469CDE.3FC67.14180 ; \n\t23 Nov 2007 04:26:57 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A137886BAF;\n\tFri, 23 Nov 2007 09:26:57 +0000 (GMT)\nMessage-ID: <200711230903.lAN93Iwe009449@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 803\n          for <source@collab.sakaiproject.org>;\n          Fri, 23 Nov 2007 09:09:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DCDB128F3A\n\tfor <source@collab.sakaiproject.org>; Fri, 23 Nov 2007 09:09:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAN93IlP009451\n\tfor <source@collab.sakaiproject.org>; Fri, 23 Nov 2007 04:03:18 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAN93Iwe009449\n\tfor source@collab.sakaiproject.org; Fri, 23 Nov 2007 04:03:18 -0500\nDate: Fri, 23 Nov 2007 04:03:18 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r38697 - site-manage/branches/SAK-12256/site-manage-impl/impl/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 23 04:27:02 2007\nX-DSPAM-Confidence: 0.9800\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38697\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-11-23 04:03:04 -0500 (Fri, 23 Nov 2007)\nNew Revision: 38697\n\nAdded:\nsite-manage/branches/SAK-12256/site-manage-impl/impl/src/bundle/UserNotificationProvider.properties\nLog:\nSAK-11256 include the resource bundle\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom antranig@caret.cam.ac.uk Wed Nov 21 13:31:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 21 Nov 2007 13:31:53 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 21 Nov 2007 13:31:53 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby casino.mail.umich.edu () with ESMTP id lALIVmKL011930;\n\tWed, 21 Nov 2007 13:31:48 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 47447974.99468.5708 ; \n\t21 Nov 2007 13:31:30 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 84BE184F21;\n\tWed, 21 Nov 2007 18:29:15 +0000 (GMT)\nMessage-ID: <200711211825.lALIPNXD005460@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 652\n          for <source@collab.sakaiproject.org>;\n          Wed, 21 Nov 2007 18:29:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1B53326376\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 18:30:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALIPNIH005462\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 13:25:23 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALIPNXD005460\n\tfor source@collab.sakaiproject.org; Wed, 21 Nov 2007 13:25:23 -0500\nDate: Wed, 21 Nov 2007 13:25:23 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: antranig@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 21 13:31:53 2007\nX-DSPAM-Confidence: 0.9844\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38541\n\nAuthor: antranig@caret.cam.ac.uk\nDate: 2007-11-21 13:24:57 -0500 (Wed, 21 Nov 2007)\nNew Revision: 38541\n\nModified:\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/ComponentRecord.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/ComponentManagerCore.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/SkeletalBeanFactory.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/SpringComponentManagerImpl.java\ncomponent/branches/SAK-12166/component-impl/integration-test/src/test/java/org/sakaiproject/component/ConfigurationLoadingTest.java\nLog:\nImplemented \"Bean demotion\" semantics as part of SAK-8315 design\nRefactored core context into \"config context\" plus core - SkeletalBeanFactory resimplified\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Wed Nov 21 12:40:55 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 21 Nov 2007 12:40:55 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 21 Nov 2007 12:40:55 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby jacknife.mail.umich.edu () with ESMTP id lALHesFb003001;\n\tWed, 21 Nov 2007 12:40:54 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 47446DA0.3628.27804 ; \n\t21 Nov 2007 12:40:50 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 99CAB853B1;\n\tWed, 21 Nov 2007 17:40:53 +0000 (GMT)\nMessage-ID: <200711211734.lALHYsH2005434@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 264\n          for <source@collab.sakaiproject.org>;\n          Wed, 21 Nov 2007 17:40:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 82AFB26607\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 17:40:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALHYst1005436\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 12:34:54 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALHYsH2005434\n\tfor source@collab.sakaiproject.org; Wed, 21 Nov 2007 12:34:54 -0500\nDate: Wed, 21 Nov 2007 12:34:54 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38540 - in component/branches/SAK-12134/component-loader: . tomcat5/component-loader-server/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 21 12:40:55 2007\nX-DSPAM-Confidence: 0.9827\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38540\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-21 12:34:48 -0500 (Wed, 21 Nov 2007)\nNew Revision: 38540\n\nModified:\ncomponent/branches/SAK-12134/component-loader/pom.xml\ncomponent/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/pom.xml\nLog:\nAdded Tomcat 5 and 6 activation profiles to automatically target the correct version.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Wed Nov 21 12:29:22 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 21 Nov 2007 12:29:22 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 21 Nov 2007 12:29:22 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby mission.mail.umich.edu () with ESMTP id lALHTLJM023010;\n\tWed, 21 Nov 2007 12:29:21 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 47446AEC.5B545.12724 ; \n\t21 Nov 2007 12:29:19 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 84B067C6CB;\n\tWed, 21 Nov 2007 17:29:21 +0000 (GMT)\nMessage-ID: <200711211723.lALHNJg0005389@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 45\n          for <source@collab.sakaiproject.org>;\n          Wed, 21 Nov 2007 17:29:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CD3591D594\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 17:28:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALHNJlD005391\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 12:23:20 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALHNJg0005389\n\tfor source@collab.sakaiproject.org; Wed, 21 Nov 2007 12:23:19 -0500\nDate: Wed, 21 Nov 2007 12:23:19 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 21 12:29:22 2007\nX-DSPAM-Confidence: 0.9829\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38539\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-21 12:23:06 -0500 (Wed, 21 Nov 2007)\nNew Revision: 38539\n\nAdded:\ncomponent/branches/SAK-12134/component-impl/impl/.classpath\ncomponent/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/src/java/org/sakaiproject/component/loader/tomcat5/\ncomponent/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/src/java/org/sakaiproject/component/loader/tomcat5/server/\nRemoved:\ncomponent/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/src/java/org/sakaiproject/component/loader/server/\nModified:\ncomponent/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/src/java/org/sakaiproject/component/loader/tomcat5/server/SakaiContextConfig.java\ncomponent/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/src/java/org/sakaiproject/component/loader/tomcat5/server/SakaiLoader.java\nLog:\nRefactored into distinct packages\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Wed Nov 21 12:20:03 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 21 Nov 2007 12:20:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 21 Nov 2007 12:20:02 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby score.mail.umich.edu () with ESMTP id lALHK1Ri026747;\n\tWed, 21 Nov 2007 12:20:01 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 474468AD.81D17.12423 ; \n\t21 Nov 2007 12:19:44 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A51A55990B;\n\tWed, 21 Nov 2007 17:19:47 +0000 (GMT)\nMessage-ID: <200711211713.lALHDggx005370@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 51\n          for <source@collab.sakaiproject.org>;\n          Wed, 21 Nov 2007 17:19:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 31B0823B18\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 17:19:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALHDgpD005372\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 12:13:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALHDggx005370\n\tfor source@collab.sakaiproject.org; Wed, 21 Nov 2007 12:13:42 -0500\nDate: Wed, 21 Nov 2007 12:13:42 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 21 12:20:02 2007\nX-DSPAM-Confidence: 0.9813\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38538\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-21 12:13:13 -0500 (Wed, 21 Nov 2007)\nNew Revision: 38538\n\nAdded:\ncomponent/branches/SAK-12134/component-loader/tomcat6/component-loader-server/impl/src/java/org/sakaiproject/component/loader/tomcat6/\ncomponent/branches/SAK-12134/component-loader/tomcat6/component-loader-server/impl/src/java/org/sakaiproject/component/loader/tomcat6/server/\nRemoved:\ncomponent/branches/SAK-12134/component-loader/tomcat6/component-loader-server/impl/src/java/org/sakaiproject/component/loader/server/\nModified:\ncomponent/branches/SAK-12134/component-api/api/.classpath\ncomponent/branches/SAK-12134/component-api/component/.classpath\ncomponent/branches/SAK-12134/component-impl/pack/.classpath\ncomponent/branches/SAK-12134/component-loader/component-loader-common/impl/.classpath\ncomponent/branches/SAK-12134/component-loader/component-loader-common/impl/pom.xml\ncomponent/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/.classpath\ncomponent/branches/SAK-12134/component-loader/tomcat6/component-loader-server/impl/.classpath\ncomponent/branches/SAK-12134/component-loader/tomcat6/component-loader-server/impl/pom.xml\ncomponent/branches/SAK-12134/component-loader/tomcat6/component-loader-server/impl/src/java/org/sakaiproject/component/loader/tomcat6/server/SakaiContextConfig.java\ncomponent/branches/SAK-12134/component-loader/tomcat6/component-loader-server/impl/src/java/org/sakaiproject/component/loader/tomcat6/server/SakaiLoader.java\nLog:\nCreated tomcat 6 loader\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom antranig@caret.cam.ac.uk Wed Nov 21 12:16:38 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 21 Nov 2007 12:16:38 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 21 Nov 2007 12:16:38 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby casino.mail.umich.edu () with ESMTP id lALHGbm3029156;\n\tWed, 21 Nov 2007 12:16:37 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 474467ED.E0064.26267 ; \n\t21 Nov 2007 12:16:32 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A63D785283;\n\tWed, 21 Nov 2007 17:16:33 +0000 (GMT)\nMessage-ID: <200711211710.lALHAYE8005358@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 579\n          for <source@collab.sakaiproject.org>;\n          Wed, 21 Nov 2007 17:16:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 60B6023B18\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 17:16:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALHAZHU005360\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 12:10:35 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALHAYE8005358\n\tfor source@collab.sakaiproject.org; Wed, 21 Nov 2007 12:10:34 -0500\nDate: Wed, 21 Nov 2007 12:10:34 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: antranig@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 21 12:16:38 2007\nX-DSPAM-Confidence: 0.9860\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38537\n\nAuthor: antranig@caret.cam.ac.uk\nDate: 2007-11-21 12:10:06 -0500 (Wed, 21 Nov 2007)\nNew Revision: 38537\n\nModified:\ncomponent/branches/SAK-12166/component-api/component/src/config/org/sakaiproject/config/sakai-configuration.xml\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/SkeletalBeanFactory.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/SpringComponentManagerImpl.java\ncomponent/branches/SAK-12166/component-impl/integration-test/pom.xml\ncomponent/branches/SAK-12166/component-impl/integration-test/src/test/java/org/sakaiproject/component/ConfigurationLoadingTest.java\nLog:\nCorrected handling of override ordering and factory beans\nAll integration tests now run, with the exception of \"alias\" test (one test changed semantics)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Wed Nov 21 12:07:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 21 Nov 2007 12:07:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 21 Nov 2007 12:07:17 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby awakenings.mail.umich.edu () with ESMTP id lALH7GIw014494;\n\tWed, 21 Nov 2007 12:07:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 474465BE.D3634.26463 ; \n\t21 Nov 2007 12:07:13 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9942885092;\n\tWed, 21 Nov 2007 17:07:14 +0000 (GMT)\nMessage-ID: <200711211701.lALH14Bj005343@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 25\n          for <source@collab.sakaiproject.org>;\n          Wed, 21 Nov 2007 17:06:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1A82A23B0D\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 17:06:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALH14ax005345\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 12:01:04 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALH14Bj005343\n\tfor source@collab.sakaiproject.org; Wed, 21 Nov 2007 12:01:04 -0500\nDate: Wed, 21 Nov 2007 12:01:04 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 21 12:07:17 2007\nX-DSPAM-Confidence: 0.8484\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38536\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-21 12:00:20 -0500 (Wed, 21 Nov 2007)\nNew Revision: 38536\n\nAdded:\ncomponent/branches/SAK-12134/component-api/api/.classpath\ncomponent/branches/SAK-12134/component-api/api/.project\ncomponent/branches/SAK-12134/component-api/api/.settings/\ncomponent/branches/SAK-12134/component-api/api/.settings/org.eclipse.jdt.core.prefs\ncomponent/branches/SAK-12134/component-api/component/.classpath\ncomponent/branches/SAK-12134/component-api/component/.project\ncomponent/branches/SAK-12134/component-api/component/.settings/\ncomponent/branches/SAK-12134/component-api/component/.settings/org.eclipse.jdt.core.prefs\ncomponent/branches/SAK-12134/component-impl/impl/.project\ncomponent/branches/SAK-12134/component-impl/impl/.settings/\ncomponent/branches/SAK-12134/component-impl/impl/.settings/org.eclipse.jdt.core.prefs\ncomponent/branches/SAK-12134/component-impl/pack/.classpath\ncomponent/branches/SAK-12134/component-impl/pack/.project\ncomponent/branches/SAK-12134/component-impl/pack/.settings/\ncomponent/branches/SAK-12134/component-impl/pack/.settings/org.eclipse.jdt.core.prefs\ncomponent/branches/SAK-12134/component-loader/component-loader-common/\ncomponent/branches/SAK-12134/component-loader/component-loader-common/impl/\ncomponent/branches/SAK-12134/component-loader/tomcat5/pom.xml\ncomponent/branches/SAK-12134/component-loader/tomcat6/pom.xml\nRemoved:\ncomponent/branches/SAK-12134/component-loader/component-loader-common/impl/\ncomponent/branches/SAK-12134/component-loader/tomcat5/component-loader-common/\ncomponent/branches/SAK-12134/component-loader/tomcat6/component-loader-common/\nModified:\ncomponent/branches/SAK-12134/component-loader/component-loader-common/impl/.project\ncomponent/branches/SAK-12134/component-loader/component-loader-common/impl/pom.xml\ncomponent/branches/SAK-12134/component-loader/pom.xml\ncomponent/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/.classpath\ncomponent/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/.project\ncomponent/branches/SAK-12134/component-loader/tomcat6/component-loader-server/impl/.classpath\ncomponent/branches/SAK-12134/component-loader/tomcat6/component-loader-server/impl/.project\nLog:\nReorganized to get back share common lib\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Wed Nov 21 11:59:21 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 21 Nov 2007 11:59:21 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 21 Nov 2007 11:59:21 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby sleepers.mail.umich.edu () with ESMTP id lALGxKwm025549;\n\tWed, 21 Nov 2007 11:59:20 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 474463E0.5926B.24332 ; \n\t21 Nov 2007 11:59:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 79A8E852EB;\n\tWed, 21 Nov 2007 16:59:04 +0000 (GMT)\nMessage-ID: <200711211653.lALGr0MF005323@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 50\n          for <source@collab.sakaiproject.org>;\n          Wed, 21 Nov 2007 16:58:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id F3BD823AAC\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 16:58:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALGr0PR005325\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 11:53:00 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALGr0MF005323\n\tfor source@collab.sakaiproject.org; Wed, 21 Nov 2007 11:53:00 -0500\nDate: Wed, 21 Nov 2007 11:53:00 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 21 11:59:21 2007\nX-DSPAM-Confidence: 0.8465\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38535\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-21 11:52:42 -0500 (Wed, 21 Nov 2007)\nNew Revision: 38535\n\nAdded:\ncomponent/branches/SAK-12134/component-loader/tomcat6/component-loader-common/\ncomponent/branches/SAK-12134/component-loader/tomcat6/component-loader-server/\nModified:\ncomponent/branches/SAK-12134/component-loader/pom.xml\ncomponent/branches/SAK-12134/component-loader/tomcat5/component-loader-common/impl/.classpath\ncomponent/branches/SAK-12134/component-loader/tomcat5/component-loader-common/impl/.project\ncomponent/branches/SAK-12134/component-loader/tomcat5/component-loader-common/impl/pom.xml\ncomponent/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/.classpath\ncomponent/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/.project\ncomponent/branches/SAK-12134/component-loader/tomcat5/component-loader-server/impl/pom.xml\ncomponent/branches/SAK-12134/component-loader/tomcat6/component-loader-common/impl/.classpath\ncomponent/branches/SAK-12134/component-loader/tomcat6/component-loader-common/impl/.project\ncomponent/branches/SAK-12134/component-loader/tomcat6/component-loader-common/impl/pom.xml\ncomponent/branches/SAK-12134/component-loader/tomcat6/component-loader-server/impl/.classpath\ncomponent/branches/SAK-12134/component-loader/tomcat6/component-loader-server/impl/.project\ncomponent/branches/SAK-12134/component-loader/tomcat6/component-loader-server/impl/pom.xml\nLog:\nTest New structure forced to commit\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Wed Nov 21 11:45:20 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 21 Nov 2007 11:45:20 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 21 Nov 2007 11:45:20 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby fan.mail.umich.edu () with ESMTP id lALGjJ4L014399;\n\tWed, 21 Nov 2007 11:45:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 4744609A.B6AB.8095 ; \n\t21 Nov 2007 11:45:16 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id ED20384FBD;\n\tWed, 21 Nov 2007 16:45:14 +0000 (GMT)\nMessage-ID: <200711211639.lALGdIME005311@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 64\n          for <source@collab.sakaiproject.org>;\n          Wed, 21 Nov 2007 16:44:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9E79B265A3\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 16:44:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALGdJZp005313\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 11:39:19 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALGdIME005311\n\tfor source@collab.sakaiproject.org; Wed, 21 Nov 2007 11:39:18 -0500\nDate: Wed, 21 Nov 2007 11:39:18 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38534 - in component/branches/SAK-12134/component-loader: . tomcat5\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 21 11:45:20 2007\nX-DSPAM-Confidence: 0.9803\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38534\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-21 11:39:11 -0500 (Wed, 21 Nov 2007)\nNew Revision: 38534\n\nAdded:\ncomponent/branches/SAK-12134/component-loader/tomcat5/\ncomponent/branches/SAK-12134/component-loader/tomcat5/component-loader-common/\ncomponent/branches/SAK-12134/component-loader/tomcat5/component-loader-server/\ncomponent/branches/SAK-12134/component-loader/tomcat6/\nRemoved:\ncomponent/branches/SAK-12134/component-loader/component-loader-common-tc5/\ncomponent/branches/SAK-12134/component-loader/component-loader-server/\nLog:\nReorg for tomcat6 builds\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Wed Nov 21 11:26:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 21 Nov 2007 11:26:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 21 Nov 2007 11:26:30 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby panther.mail.umich.edu () with ESMTP id lALGQTqB000479;\n\tWed, 21 Nov 2007 11:26:29 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 47445C2F.37DCC.30516 ; \n\t21 Nov 2007 11:26:25 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EFDC68512F;\n\tWed, 21 Nov 2007 16:26:17 +0000 (GMT)\nMessage-ID: <200711211620.lALGKJaa005297@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 242\n          for <source@collab.sakaiproject.org>;\n          Wed, 21 Nov 2007 16:25:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0DB1426593\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 16:25:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALGKJTp005299\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 11:20:19 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALGKJaa005297\n\tfor source@collab.sakaiproject.org; Wed, 21 Nov 2007 11:20:19 -0500\nDate: Wed, 21 Nov 2007 11:20:19 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 21 11:26:30 2007\nX-DSPAM-Confidence: 0.9846\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38533\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-11-21 11:19:32 -0500 (Wed, 21 Nov 2007)\nNew Revision: 38533\n\nAdded:\nsite-manage/branches/SAK-12256/site-manage-api/api/src/java/org/sakaiproject/sitemanage/api/UserNotificationProvider.java\nsite-manage/branches/SAK-12256/site-manage-impl/impl/src/java/org/sakaiproject/sitemanage/impl/UserNotificationProviderImpl.java\nModified:\nsite-manage/branches/SAK-12256/site-manage-api/.classpath\nsite-manage/branches/SAK-12256/site-manage-api/api/pom.xml\nsite-manage/branches/SAK-12256/site-manage-impl/.classpath\nsite-manage/branches/SAK-12256/site-manage-impl/impl/pom.xml\nsite-manage/branches/SAK-12256/site-manage-impl/pack/src/webapp/WEB-INF/components.xml\nsite-manage/branches/SAK-12256/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nLog:\nSAK-12256 first pass need need to fix the resource messages though\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Wed Nov 21 11:00:16 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 21 Nov 2007 11:00:16 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 21 Nov 2007 11:00:16 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby brazil.mail.umich.edu () with ESMTP id lALG0FSl014809;\n\tWed, 21 Nov 2007 11:00:15 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 4744560A.7FBDF.32622 ; \n\t21 Nov 2007 11:00:13 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 54B9B84B91;\n\tWed, 21 Nov 2007 16:00:05 +0000 (GMT)\nMessage-ID: <200711211554.lALFsCTn005272@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 722\n          for <source@collab.sakaiproject.org>;\n          Wed, 21 Nov 2007 15:59:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 771BB26597\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 15:59:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALFsCii005274\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 10:54:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALFsCTn005272\n\tfor source@collab.sakaiproject.org; Wed, 21 Nov 2007 10:54:12 -0500\nDate: Wed, 21 Nov 2007 10:54:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38532 - in component/branches/SAK-12134/component-loader: . component-loader-server/impl/src/java/org/sakaiproject/component/loader/server\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 21 11:00:16 2007\nX-DSPAM-Confidence: 0.9834\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38532\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-21 10:54:03 -0500 (Wed, 21 Nov 2007)\nNew Revision: 38532\n\nAdded:\ncomponent/branches/SAK-12134/component-loader/component-loader-common-tc5/\nRemoved:\ncomponent/branches/SAK-12134/component-loader/component-loader-common/\nModified:\ncomponent/branches/SAK-12134/component-loader/component-loader-server/impl/src/java/org/sakaiproject/component/loader/server/SakaiLoader.java\nLog:\nPreparing to tomcat 6 versions.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Nov 21 10:19:57 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 21 Nov 2007 10:19:57 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 21 Nov 2007 10:19:57 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby panther.mail.umich.edu () with ESMTP id lALFJujG027084;\n\tWed, 21 Nov 2007 10:19:56 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 47444C96.8D87A.7621 ; \n\t21 Nov 2007 10:19:53 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B6B6184FF4;\n\tWed, 21 Nov 2007 15:19:48 +0000 (GMT)\nMessage-ID: <200711211513.lALFDrBl005258@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 927\n          for <source@collab.sakaiproject.org>;\n          Wed, 21 Nov 2007 15:19:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 57B2D2638C\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 15:19:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALFDrZj005260\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 10:13:53 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALFDrBl005258\n\tfor source@collab.sakaiproject.org; Wed, 21 Nov 2007 10:13:53 -0500\nDate: Wed, 21 Nov 2007 10:13:53 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38531 - content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 21 10:19:57 2007\nX-DSPAM-Confidence: 0.9886\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38531\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-21 10:13:49 -0500 (Wed, 21 Nov 2007)\nNew Revision: 38531\n\nModified:\ncontent/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java\nLog:\nSAK-12105: Fixed up the test to emulate requests on large scale collection count so that the legacy performance is tested better\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Nov 21 10:04:08 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 21 Nov 2007 10:04:08 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 21 Nov 2007 10:04:08 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby casino.mail.umich.edu () with ESMTP id lALF47Hc006453;\n\tWed, 21 Nov 2007 10:04:07 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 474448E1.8C071.10741 ; \n\t21 Nov 2007 10:04:04 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 60987833DE;\n\tWed, 21 Nov 2007 15:03:58 +0000 (GMT)\nMessage-ID: <200711211458.lALEw5Xv005237@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 502\n          for <source@collab.sakaiproject.org>;\n          Wed, 21 Nov 2007 15:03:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7A76520085\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 15:03:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALEw5w2005239\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 09:58:05 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALEw5Xv005237\n\tfor source@collab.sakaiproject.org; Wed, 21 Nov 2007 09:58:05 -0500\nDate: Wed, 21 Nov 2007 09:58:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38530 - content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 21 10:04:08 2007\nX-DSPAM-Confidence: 0.8489\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38530\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-21 09:58:00 -0500 (Wed, 21 Nov 2007)\nNew Revision: 38530\n\nModified:\ncontent/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java\nLog:\nSAK-12105: Fixed up the test to emulate requests so that the legacy performance is tested better\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Wed Nov 21 09:16:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 21 Nov 2007 09:16:50 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 21 Nov 2007 09:16:50 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby godsend.mail.umich.edu () with ESMTP id lALEGnJG031478;\n\tWed, 21 Nov 2007 09:16:49 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 47443DCA.BD7A3.8540 ; \n\t21 Nov 2007 09:16:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0E34C84ED1;\n\tWed, 21 Nov 2007 14:13:41 +0000 (GMT)\nMessage-ID: <200711211410.lALEApHN005122@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 148\n          for <source@collab.sakaiproject.org>;\n          Wed, 21 Nov 2007 14:13:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 03CC4238CE\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 14:16:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALEApbC005124\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 09:10:51 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALEApHN005122\n\tfor source@collab.sakaiproject.org; Wed, 21 Nov 2007 09:10:51 -0500\nDate: Wed, 21 Nov 2007 09:10:51 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38529 - site-manage/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 21 09:16:50 2007\nX-DSPAM-Confidence: 0.8465\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38529\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-21 09:10:50 -0500 (Wed, 21 Nov 2007)\nNew Revision: 38529\n\nAdded:\nsite-manage/branches/SAK-12256/\nLog:\nNew branch for SAK-12256\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Wed Nov 21 09:14:35 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 21 Nov 2007 09:14:35 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 21 Nov 2007 09:14:35 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby panther.mail.umich.edu () with ESMTP id lALEEY6v025202;\n\tWed, 21 Nov 2007 09:14:34 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 47443D44.AD7F5.9180 ; \n\t21 Nov 2007 09:14:31 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5F59384ECD;\n\tWed, 21 Nov 2007 14:11:29 +0000 (GMT)\nMessage-ID: <200711211408.lALE8Tk0005087@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 86\n          for <source@collab.sakaiproject.org>;\n          Wed, 21 Nov 2007 14:11:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0B68A238CE\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 14:14:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALE8TDv005089\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 09:08:29 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALE8Tk0005087\n\tfor source@collab.sakaiproject.org; Wed, 21 Nov 2007 09:08:29 -0500\nDate: Wed, 21 Nov 2007 09:08:29 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38528 - sakai-mock/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 21 09:14:35 2007\nX-DSPAM-Confidence: 0.9835\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38528\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-21 09:08:28 -0500 (Wed, 21 Nov 2007)\nNew Revision: 38528\n\nAdded:\nsakai-mock/branches/SAK-10868/\nLog:\nNew branch of sakai-mock for SAK-10868\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Wed Nov 21 09:12:07 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 21 Nov 2007 09:12:07 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 21 Nov 2007 09:12:07 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby sleepers.mail.umich.edu () with ESMTP id lALEC7if015634;\n\tWed, 21 Nov 2007 09:12:07 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 47443CB2.91BE7.7473 ; \n\t21 Nov 2007 09:12:05 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9C1B47092D;\n\tWed, 21 Nov 2007 14:09:01 +0000 (GMT)\nMessage-ID: <200711211406.lALE6A01005060@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 775\n          for <source@collab.sakaiproject.org>;\n          Wed, 21 Nov 2007 14:08:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3C588239DA\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 14:11:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALE6B1C005062\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 09:06:11 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALE6A01005060\n\tfor source@collab.sakaiproject.org; Wed, 21 Nov 2007 09:06:10 -0500\nDate: Wed, 21 Nov 2007 09:06:10 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38527 - user/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 21 09:12:07 2007\nX-DSPAM-Confidence: 0.8474\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38527\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-21 09:06:10 -0500 (Wed, 21 Nov 2007)\nNew Revision: 38527\n\nAdded:\nuser/branches/SAK-10868/\nLog:\nNew branch of /usr/branches/SAK-10868 for David Horwitz\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Wed Nov 21 07:54:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 21 Nov 2007 07:54:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 21 Nov 2007 07:54:02 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby awakenings.mail.umich.edu () with ESMTP id lALCs1e9001464;\n\tWed, 21 Nov 2007 07:54:01 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 47442A5F.E7B8F.5809 ; \n\t21 Nov 2007 07:53:56 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 266C770F7C;\n\tWed, 21 Nov 2007 12:53:56 +0000 (GMT)\nMessage-ID: <200711211247.lALCljvL004954@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 854\n          for <source@collab.sakaiproject.org>;\n          Wed, 21 Nov 2007 12:53:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 580F3261A1\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 12:53:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALCljYX004956\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 07:47:45 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALCljvL004954\n\tfor source@collab.sakaiproject.org; Wed, 21 Nov 2007 07:47:45 -0500\nDate: Wed, 21 Nov 2007 07:47:45 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 21 07:54:02 2007\nX-DSPAM-Confidence: 0.8433\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38526\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-21 07:47:29 -0500 (Wed, 21 Nov 2007)\nNew Revision: 38526\n\nModified:\nrwiki/trunk/rwiki-impl/.classpath\nrwiki/trunk/rwiki-impl/impl/pom.xml\nrwiki/trunk/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/RWikiObjectServiceImpl.java\nrwiki/trunk/rwiki-impl/pack/src/webapp/WEB-INF/coreServiceComponents.xml\nLog:\nSAK-10955\nApplied Patch, thank you Beth\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gopal.ramasammycook@gmail.com Wed Nov 21 07:34:15 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 21 Nov 2007 07:34:15 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 21 Nov 2007 07:34:15 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby chaos.mail.umich.edu () with ESMTP id lALCYFav014714;\n\tWed, 21 Nov 2007 07:34:15 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 474425B7.4597A.30077 ; \n\t21 Nov 2007 07:34:02 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 33B5D84DDB;\n\tWed, 21 Nov 2007 12:34:09 +0000 (GMT)\nMessage-ID: <200711211228.lALCS4FC004929@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 499\n          for <source@collab.sakaiproject.org>;\n          Wed, 21 Nov 2007 12:33:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9A5E7261D9\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 12:33:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALCS4uN004931\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 07:28:04 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALCS4FC004929\n\tfor source@collab.sakaiproject.org; Wed, 21 Nov 2007 07:28:04 -0500\nDate: Wed, 21 Nov 2007 07:28:04 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f\nTo: source@collab.sakaiproject.org\nFrom: gopal.ramasammycook@gmail.com\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 21 07:34:15 2007\nX-DSPAM-Confidence: 0.8469\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38525\n\nAuthor: gopal.ramasammycook@gmail.com\nDate: 2007-11-21 07:26:56 -0500 (Wed, 21 Nov 2007)\nNew Revision: 38525\n\nModified:\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/AssessmentSettingsBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/delivery/LoginServlet.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/integrated/AuthzQueriesFacade.java\nLog:\nSAK-12065  Non-portal/site access to assessments.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Wed Nov 21 07:07:44 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 21 Nov 2007 07:07:44 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 21 Nov 2007 07:07:44 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby panther.mail.umich.edu () with ESMTP id lALC7iTs008262;\n\tWed, 21 Nov 2007 07:07:44 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 47441F89.63EF1.18586 ; \n\t21 Nov 2007 07:07:41 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 59D167054D;\n\tWed, 21 Nov 2007 12:07:46 +0000 (GMT)\nMessage-ID: <200711211140.lALBeM5m004905@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 904\n          for <source@collab.sakaiproject.org>;\n          Wed, 21 Nov 2007 12:07:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2F79C261D3\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 11:45:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALBeMjA004907\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 06:40:22 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALBeM5m004905\n\tfor source@collab.sakaiproject.org; Wed, 21 Nov 2007 06:40:22 -0500\nDate: Wed, 21 Nov 2007 06:40:22 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38524 - master/trunk\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 21 07:07:44 2007\nX-DSPAM-Confidence: 0.9809\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38524\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-21 06:40:17 -0500 (Wed, 21 Nov 2007)\nNew Revision: 38524\n\nModified:\nmaster/trunk/pom.xml\nLog:\nhttp://bugs.sakaiproject.org/jira/browse/SAK-10430\nFixed\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Wed Nov 21 05:48:24 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 21 Nov 2007 05:48:24 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 21 Nov 2007 05:48:24 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby jacknife.mail.umich.edu () with ESMTP id lALAmMpd020564;\n\tWed, 21 Nov 2007 05:48:22 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 47440CEA.E4990.29801 ; \n\t21 Nov 2007 05:48:19 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 16E2A84BA9;\n\tWed, 21 Nov 2007 10:47:54 +0000 (GMT)\nMessage-ID: <200711211042.lALAg1GM004844@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 422\n          for <source@collab.sakaiproject.org>;\n          Wed, 21 Nov 2007 10:47:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 72FB123991\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 10:47:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lALAg12c004846\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 05:42:01 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lALAg1GM004844\n\tfor source@collab.sakaiproject.org; Wed, 21 Nov 2007 05:42:01 -0500\nDate: Wed, 21 Nov 2007 05:42:01 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r38523 - polls/trunk/tool/src/java/org/sakaiproject/poll/tool/params\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 21 05:48:24 2007\nX-DSPAM-Confidence: 0.9814\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38523\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-11-21 05:41:48 -0500 (Wed, 21 Nov 2007)\nNew Revision: 38523\n\nModified:\npolls/trunk/tool/src/java/org/sakaiproject/poll/tool/params/PollToolBean.java\nLog:\nSAK-11882 now removes trainling <p>$nbsp;</p>'s too\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gopal.ramasammycook@gmail.com Wed Nov 21 02:56:22 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 21 Nov 2007 02:56:21 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 21 Nov 2007 02:56:21 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby mission.mail.umich.edu () with ESMTP id lAL7uKTI028479;\n\tWed, 21 Nov 2007 02:56:20 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4743E49F.272AA.22997 ; \n\t21 Nov 2007 02:56:17 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id F0CFF84966;\n\tWed, 21 Nov 2007 07:56:20 +0000 (GMT)\nMessage-ID: <200711210750.lAL7oMdP004293@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 747\n          for <source@collab.sakaiproject.org>;\n          Wed, 21 Nov 2007 07:55:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 865972618A\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 07:55:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAL7oNHu004295\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 02:50:23 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAL7oMdP004293\n\tfor source@collab.sakaiproject.org; Wed, 21 Nov 2007 02:50:22 -0500\nDate: Wed, 21 Nov 2007 02:50:22 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f\nTo: source@collab.sakaiproject.org\nFrom: gopal.ramasammycook@gmail.com\nSubject: [sakai] svn commit: r38521 - sam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 21 02:56:21 2007\nX-DSPAM-Confidence: 0.9835\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38521\n\nAuthor: gopal.ramasammycook@gmail.com\nDate: 2007-11-21 02:49:44 -0500 (Wed, 21 Nov 2007)\nNew Revision: 38521\n\nModified:\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java\nLog:\nSAK-12065  Tooltip fix \n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom antranig@caret.cam.ac.uk Tue Nov 20 23:14:05 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 23:14:05 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 23:14:05 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby casino.mail.umich.edu () with ESMTP id lAL4E49A027273;\n\tTue, 20 Nov 2007 23:14:04 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 4743B084.980EF.7077 ; \n\t20 Nov 2007 23:13:59 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0DF7D8452F;\n\tWed, 21 Nov 2007 04:13:54 +0000 (GMT)\nMessage-ID: <200711210407.lAL47rkg004145@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 887\n          for <source@collab.sakaiproject.org>;\n          Wed, 21 Nov 2007 04:13:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 487DC25E82\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 04:13:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAL47rbM004147\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 23:07:53 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAL47rkg004145\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 23:07:53 -0500\nDate: Tue, 20 Nov 2007 23:07:53 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: antranig@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 23:14:05 2007\nX-DSPAM-Confidence: 0.8483\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38520\n\nAuthor: antranig@caret.cam.ac.uk\nDate: 2007-11-20 23:07:09 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38520\n\nRemoved:\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/util/ComponentsLoader.java\nModified:\ncomponent/branches/SAK-12166/component-api/component/pom.xml\ncomponent/branches/SAK-12166/component-api/component/src/config/org/sakaiproject/config/sakai-configuration.xml\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/ComponentManagerCore.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/SkeletalBeanFactory.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/SpringComponentManagerImpl.java\ncomponent/branches/SAK-12166/component-impl/impl/pom.xml\ncomponent/branches/SAK-12166/component-impl/impl/src/java/org/sakaiproject/component/impl/BasicConfigurationService.java\ncomponent/branches/SAK-12166/component-impl/integration-test/pom.xml\ncomponent/branches/SAK-12166/component-impl/pack/pom.xml\ncomponent/branches/SAK-12166/component-impl/pack/src/webapp/WEB-INF/components.xml\nLog:\nWorking version using SAK-8315 configuration scheme. \nSakai starts up correctly (minus meta-obj issue SAK-12254)\nNew property \"sakai.component.createproxies\" enables proxy creation to be disabled\nMoved up to pom version SNAPSHOT\nintegration test has not yet been tried, <alias> probably not working\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom arwhyte@umich.edu Tue Nov 20 21:44:06 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 21:44:06 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 21:44:06 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby fan.mail.umich.edu () with ESMTP id lAL2i6Tx011454;\n\tTue, 20 Nov 2007 21:44:06 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 47439B6B.24EC6.6224 ; \n\t20 Nov 2007 21:43:58 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 059BE82D2E;\n\tWed, 21 Nov 2007 02:44:04 +0000 (GMT)\nMessage-ID: <200711210238.lAL2c46b003989@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 807\n          for <source@collab.sakaiproject.org>;\n          Wed, 21 Nov 2007 02:43:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 41D0E256DB\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 02:43:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAL2c4RR003991\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 21:38:04 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAL2c46b003989\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 21:38:04 -0500\nDate: Tue, 20 Nov 2007 21:38:04 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: arwhyte@umich.edu\nSubject: [sakai] svn commit: r38519 - reference/tags/sakai_2-4-1/docs/releaseweb\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 21:44:06 2007\nX-DSPAM-Confidence: 0.8440\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38519\n\nAuthor: arwhyte@umich.edu\nDate: 2007-11-20 21:38:03 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38519\n\nModified:\nreference/tags/sakai_2-4-1/docs/releaseweb/index.html\nLog:\nMissing <p></p>\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom arwhyte@umich.edu Tue Nov 20 21:40:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 21:40:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 21:40:17 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby sleepers.mail.umich.edu () with ESMTP id lAL2eGZL025583;\n\tTue, 20 Nov 2007 21:40:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 47439A8B.8EE3D.25127 ; \n\t20 Nov 2007 21:40:14 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9D7E3845A0;\n\tWed, 21 Nov 2007 02:40:22 +0000 (GMT)\nMessage-ID: <200711210234.lAL2YK5v003975@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 728\n          for <source@collab.sakaiproject.org>;\n          Wed, 21 Nov 2007 02:40:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B4F08256DB\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 02:39:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAL2YKtS003977\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 21:34:20 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAL2YK5v003975\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 21:34:20 -0500\nDate: Tue, 20 Nov 2007 21:34:20 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: arwhyte@umich.edu\nSubject: [sakai] svn commit: r38518 - reference/tags/sakai_2-4-1/docs/releaseweb\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 21:40:17 2007\nX-DSPAM-Confidence: 0.8436\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38518\n\nAuthor: arwhyte@umich.edu\nDate: 2007-11-20 21:34:18 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38518\n\nModified:\nreference/tags/sakai_2-4-1/docs/releaseweb/index.html\nLog:\nAdd line break.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom arwhyte@umich.edu Tue Nov 20 21:37:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 21:37:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 21:37:30 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby score.mail.umich.edu () with ESMTP id lAL2bTF3016911;\n\tTue, 20 Nov 2007 21:37:29 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 474399E4.9FC47.21542 ; \n\t20 Nov 2007 21:37:27 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 383BB84547;\n\tWed, 21 Nov 2007 02:37:34 +0000 (GMT)\nMessage-ID: <200711210231.lAL2VRnk003934@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 494\n          for <source@collab.sakaiproject.org>;\n          Wed, 21 Nov 2007 02:37:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B2496256DD\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 02:37:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAL2VRPH003936\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 21:31:27 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAL2VRnk003934\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 21:31:27 -0500\nDate: Tue, 20 Nov 2007 21:31:27 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: arwhyte@umich.edu\nSubject: [sakai] svn commit: r38517 - reference/tags/sakai_2-4-1/docs/releaseweb\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 21:37:30 2007\nX-DSPAM-Confidence: 0.9842\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38517\n\nAuthor: arwhyte@umich.edu\nDate: 2007-11-20 21:31:26 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38517\n\nModified:\nreference/tags/sakai_2-4-1/docs/releaseweb/index.html\nLog:\nAdded additional language clarifying schema changes relative to the 2-4-x branch.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Tue Nov 20 19:42:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 19:42:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 19:42:25 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby chaos.mail.umich.edu () with ESMTP id lAL0gOfx023558;\n\tTue, 20 Nov 2007 19:42:24 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 47437EE8.ACF3A.6760 ; \n\t20 Nov 2007 19:42:19 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 50C8872170;\n\tWed, 21 Nov 2007 00:30:21 +0000 (GMT)\nMessage-ID: <200711210036.lAL0aK5F003759@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 260\n          for <source@collab.sakaiproject.org>;\n          Wed, 21 Nov 2007 00:30:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 388BA2581A\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 00:41:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAL0aLEd003761\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 19:36:21 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAL0aK5F003759\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 19:36:20 -0500\nDate: Tue, 20 Nov 2007 19:36:20 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38515 - authz/trunk/authz-impl/impl/src/java/org/sakaiproject/authz/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 19:42:25 2007\nX-DSPAM-Confidence: 0.9755\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38515\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-20 19:36:15 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38515\n\nModified:\nauthz/trunk/authz-impl/impl/src/java/org/sakaiproject/authz/impl/BaseAuthzGroup.java\nauthz/trunk/authz-impl/impl/src/java/org/sakaiproject/authz/impl/BaseAuthzGroupService.java\nauthz/trunk/authz-impl/impl/src/java/org/sakaiproject/authz/impl/DbAuthzGroupService.java\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-12149\nFixed\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Tue Nov 20 19:14:38 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 19:14:38 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 19:14:38 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby faithful.mail.umich.edu () with ESMTP id lAL0Ebkl012016;\n\tTue, 20 Nov 2007 19:14:37 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 47437865.388AA.12440 ; \n\t20 Nov 2007 19:14:32 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 236E684404;\n\tWed, 21 Nov 2007 00:02:06 +0000 (GMT)\nMessage-ID: <200711202358.lAKNwfug003712@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 483\n          for <source@collab.sakaiproject.org>;\n          Wed, 21 Nov 2007 00:01:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BA95325812\n\tfor <source@collab.sakaiproject.org>; Wed, 21 Nov 2007 00:04:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKNwfHh003714\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 18:58:41 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKNwfug003712\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 18:58:41 -0500\nDate: Tue, 20 Nov 2007 18:58:41 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38514 - entity/trunk/entity-impl/impl/src/java/org/sakaiproject/entity/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 19:14:38 2007\nX-DSPAM-Confidence: 0.9774\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38514\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-20 18:58:36 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38514\n\nModified:\nentity/trunk/entity-impl/impl/src/java/org/sakaiproject/entity/impl/EntityManagerComponent.java\nentity/trunk/entity-impl/impl/src/java/org/sakaiproject/entity/impl/ReferenceComponent.java\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-12151\nFixed\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Tue Nov 20 18:14:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 18:14:42 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 18:14:42 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby fan.mail.umich.edu () with ESMTP id lAKNEfFJ027339;\n\tTue, 20 Nov 2007 18:14:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 47436A5A.38FF6.27635 ; \n\t20 Nov 2007 18:14:37 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A4B39841D8;\n\tTue, 20 Nov 2007 23:13:24 +0000 (GMT)\nMessage-ID: <200711202308.lAKN8aJp003616@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 246\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 23:13:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6982F253A3\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 23:14:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKN8a3v003618\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 18:08:36 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKN8aJp003616\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 18:08:36 -0500\nDate: Tue, 20 Nov 2007 18:08:36 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 18:14:42 2007\nX-DSPAM-Confidence: 0.7560\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38513\n\nAuthor: ray@media.berkeley.edu\nDate: 2007-11-20 18:08:25 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38513\n\nModified:\ncomponent/branches/SAK-8315/component-api/component/src/config/org/sakaiproject/config/sakai-configuration.xml\ncomponent/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/util/SakaiProperties.java\ncomponent/branches/SAK-8315/component-impl/integration-test/src/test/java/org/sakaiproject/component/ConfigurationLoadingTest.java\ncomponent/branches/SAK-8315/pom.xml\nLog:\nAdd comments; reduce noisy logging\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ktsao@stanford.edu Tue Nov 20 17:50:15 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 17:50:15 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 17:50:15 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby chaos.mail.umich.edu () with ESMTP id lAKMoEjj011019;\n\tTue, 20 Nov 2007 17:50:14 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4743649F.13B12.21845 ; \n\t20 Nov 2007 17:50:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 40F4884195;\n\tTue, 20 Nov 2007 22:49:07 +0000 (GMT)\nMessage-ID: <200711202243.lAKMhbqq003574@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 717\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 22:48:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 30AB4255F1\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 22:49:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKMhbKv003576\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 17:43:37 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKMhbqq003574\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 17:43:37 -0500\nDate: Tue, 20 Nov 2007 17:43:37 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ktsao@stanford.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ktsao@stanford.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 17:50:15 2007\nX-DSPAM-Confidence: 0.9809\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38512\n\nAuthor: ktsao@stanford.edu\nDate: 2007-11-20 17:43:28 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38512\n\nModified:\nsam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/delivery/ShowAttachmentMediaServlet.java\nsam/trunk/samigo-app/src/webapp/jsf/delivery/assessment_attachment.jsp\nsam/trunk/samigo-app/src/webapp/jsf/delivery/item/attachment.jsp\nsam/trunk/samigo-app/src/webapp/jsf/delivery/part_attachment.jsp\nLog:\nSAK-12132\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Tue Nov 20 16:20:00 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 16:20:00 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 16:20:00 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby faithful.mail.umich.edu () with ESMTP id lAKLJx0O015199;\n\tTue, 20 Nov 2007 16:19:59 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 47434F75.2E117.23299 ; \n\t20 Nov 2007 16:19:52 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 26ABF839EE;\n\tTue, 20 Nov 2007 21:18:49 +0000 (GMT)\nMessage-ID: <200711202113.lAKLDiIL003436@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 419\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 21:18:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9A33121850\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 21:19:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKLDiR9003438\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 16:13:44 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKLDiIL003436\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 16:13:44 -0500\nDate: Tue, 20 Nov 2007 16:13:44 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38511 - content/branches/SAK-12105/content-jcr-migration-api\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 16:20:00 2007\nX-DSPAM-Confidence: 0.9814\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38511\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-11-20 16:13:43 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38511\n\nModified:\ncontent/branches/SAK-12105/content-jcr-migration-api/pom.xml\nLog:\nSAK-12105 Updated pom for SNAPSHOT\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Tue Nov 20 16:15:03 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 16:15:03 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 16:15:03 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby flawless.mail.umich.edu () with ESMTP id lAKLF23d011606;\n\tTue, 20 Nov 2007 16:15:02 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 47434E4A.91AF2.10944 ; \n\t20 Nov 2007 16:14:53 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 33C5D772AB;\n\tTue, 20 Nov 2007 21:14:52 +0000 (GMT)\nMessage-ID: <200711202108.lAKL8pLp003325@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 613\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 21:14:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4AB4B21850\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 21:14:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKL8pJe003327\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 16:08:51 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKL8pLp003325\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 16:08:51 -0500\nDate: Tue, 20 Nov 2007 16:08:51 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 16:15:03 2007\nX-DSPAM-Confidence: 0.8478\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38510\n\nAuthor: zqian@umich.edu\nDate: 2007-11-20 16:08:48 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38510\n\nModified:\nassignment/trunk/assignment-bundles/assignment.properties\nassignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nassignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm\nassignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm\nLog:\nfix to SAK-12227:Drafts should not be gradable before a due date\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Tue Nov 20 16:13:24 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 16:13:24 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 16:13:24 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby flawless.mail.umich.edu () with ESMTP id lAKLDMTE010334;\n\tTue, 20 Nov 2007 16:13:22 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 47434DEA.205AF.31816 ; \n\t20 Nov 2007 16:13:17 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 795A4772AB;\n\tTue, 20 Nov 2007 21:12:57 +0000 (GMT)\nMessage-ID: <200711202107.lAKL7G6N003289@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 55\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 21:12:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4661E21850\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 21:12:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKL7GX0003291\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 16:07:16 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKL7G6N003289\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 16:07:16 -0500\nDate: Tue, 20 Nov 2007 16:07:16 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 16:13:24 2007\nX-DSPAM-Confidence: 0.9837\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38509\n\nAuthor: cwen@iupui.edu\nDate: 2007-11-20 16:07:14 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38509\n\nAdded:\noncourse/trunk/src/jobscheduler/scheduler-component-shared/src/java/org/sakaiproject/component/app/scheduler/jobs/RemoveSISFinalGradeToolJob.java\nModified:\noncourse/trunk/src/jobscheduler/scheduler-component/src/webapp/WEB-INF/components.xml\nLog:\nadd RemoveSISFinalGradeToolJob - took 52 minutes on my local against stg to remove SIS FG tool from those 3035 sites.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom antranig@caret.cam.ac.uk Tue Nov 20 14:31:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 14:31:37 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 14:31:37 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby score.mail.umich.edu () with ESMTP id lAKJVaGf019708;\n\tTue, 20 Nov 2007 14:31:36 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 47433612.E0496.31904 ; \n\t20 Nov 2007 14:31:33 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E675C819F9;\n\tTue, 20 Nov 2007 19:31:35 +0000 (GMT)\nMessage-ID: <200711201925.lAKJPhUD003108@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 708\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 19:31:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2E64E23875\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 19:31:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKJPh1d003110\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 14:25:43 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKJPhUD003108\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 14:25:43 -0500\nDate: Tue, 20 Nov 2007 14:25:43 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: antranig@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 14:31:37 2007\nX-DSPAM-Confidence: 0.8423\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38508\n\nAuthor: antranig@caret.cam.ac.uk\nDate: 2007-11-20 14:25:24 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38508\n\nModified:\ncomponent/branches/SAK-12166/component-api/api/pom.xml\ncomponent/branches/SAK-12166/component-api/component/src/config/org/sakaiproject/config/sakai-configuration.xml\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/SpringComponentManagerImpl.java\nLog:\nBulk of branch code integrated. \"Lookahead\" logic is left to write.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Tue Nov 20 14:27:28 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 14:27:28 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 14:27:28 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby sleepers.mail.umich.edu () with ESMTP id lAKJRSpR010631;\n\tTue, 20 Nov 2007 14:27:28 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 47433513.E6752.25156 ; \n\t20 Nov 2007 14:27:18 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A05C884031;\n\tTue, 20 Nov 2007 19:27:17 +0000 (GMT)\nMessage-ID: <200711201920.lAKJK8Fu003096@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 602\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 19:25:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5EA362383D\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 19:25:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKJK8Hi003098\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 14:20:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKJK8Fu003096\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 14:20:08 -0500\nDate: Tue, 20 Nov 2007 14:20:08 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38507 - assignment/trunk\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 14:27:28 2007\nX-DSPAM-Confidence: 0.9877\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38507\n\nAuthor: zqian@umich.edu\nDate: 2007-11-20 14:20:04 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38507\n\nAdded:\nassignment/trunk/runconversion_readme.txt\nModified:\nassignment/trunk/runconversion-2.4.x.sh\nassignment/trunk/runconversion.sh\nLog:\nfix 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\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Tue Nov 20 14:27:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 14:27:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 14:27:19 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby faithful.mail.umich.edu () with ESMTP id lAKJRImC006724;\n\tTue, 20 Nov 2007 14:27:18 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 4743350D.7C166.9678 ; \n\t20 Nov 2007 14:27:12 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EA28B84028;\n\tTue, 20 Nov 2007 19:27:13 +0000 (GMT)\nMessage-ID: <200711201903.lAKJ3gFG003073@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 364\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 19:09:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 44D211D60E\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 19:09:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKJ3g1x003075\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 14:03:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKJ3gFG003073\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 14:03:42 -0500\nDate: Tue, 20 Nov 2007 14:03:42 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38506 - reference/trunk/docs/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 14:27:19 2007\nX-DSPAM-Confidence: 0.9836\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38506\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-20 14:03:40 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38506\n\nModified:\nreference/trunk/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\nLog:\nSAK-11908\nAlso need oracle conversion to add BINARY_ENTITY column to content_resource_delete\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Tue Nov 20 14:03:31 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 14:03:31 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 14:03:31 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby sleepers.mail.umich.edu () with ESMTP id lAKJ3S1Z026329;\n\tTue, 20 Nov 2007 14:03:30 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 47432F78.B9532.3281 ; \n\t20 Nov 2007 14:03:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 07E9677EB6;\n\tTue, 20 Nov 2007 19:03:19 +0000 (GMT)\nMessage-ID: <200711201857.lAKIvGtB003042@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 948\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 19:02:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2A58E1D60E\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 19:02:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKIvGTJ003044\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 13:57:16 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKIvGtB003042\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 13:57:16 -0500\nDate: Tue, 20 Nov 2007 13:57:16 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38505 - reference/trunk/docs/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 14:03:31 2007\nX-DSPAM-Confidence: 0.9808\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38505\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-20 13:57:15 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38505\n\nModified:\nreference/trunk/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql\nLog:\nSAK-11908 \nOne new column (BINARY_ENTITY) was overlooked when adding columns to the content_resource_delete table\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom antranig@caret.cam.ac.uk Tue Nov 20 13:44:39 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 13:44:39 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 13:44:39 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby flawless.mail.umich.edu () with ESMTP id lAKIicBQ009135;\n\tTue, 20 Nov 2007 13:44:38 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 47432B0F.7BC84.14771 ; \n\t20 Nov 2007 13:44:34 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id ADE638400E;\n\tTue, 20 Nov 2007 18:41:28 +0000 (GMT)\nMessage-ID: <200711201838.lAKIcdpM003023@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 116\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 18:41:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 983C22382D\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 18:44:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKIcd1o003025\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 13:38:39 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKIcdpM003023\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 13:38:39 -0500\nDate: Tue, 20 Nov 2007 13:38:39 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: antranig@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 13:44:39 2007\nX-DSPAM-Confidence: 0.9841\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38504\n\nAuthor: antranig@caret.cam.ac.uk\nDate: 2007-11-20 13:36:52 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38504\n\nAdded:\ncomponent/branches/SAK-12166/component-impl/integration-test/\ncomponent/branches/SAK-12166/component-impl/integration-test/pom.xml\ncomponent/branches/SAK-12166/component-impl/integration-test/src/\ncomponent/branches/SAK-12166/component-impl/integration-test/src/java/\ncomponent/branches/SAK-12166/component-impl/integration-test/src/java/org/\ncomponent/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/\ncomponent/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/component/\ncomponent/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/component/test/\ncomponent/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/component/test/ITestComponent.java\ncomponent/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/component/test/ITestProvider.java\ncomponent/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/component/test/TestComponent.java\ncomponent/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/component/test/TestProvider1.java\ncomponent/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/component/test/TestProvider2.java\ncomponent/branches/SAK-12166/component-impl/integration-test/src/test/\ncomponent/branches/SAK-12166/component-impl/integration-test/src/test/java/\ncomponent/branches/SAK-12166/component-impl/integration-test/src/test/java/org/\ncomponent/branches/SAK-12166/component-impl/integration-test/src/test/java/org/sakaiproject/\ncomponent/branches/SAK-12166/component-impl/integration-test/src/test/java/org/sakaiproject/component/\ncomponent/branches/SAK-12166/component-impl/integration-test/src/test/java/org/sakaiproject/component/ConfigurationLoadingTest.java\ncomponent/branches/SAK-12166/component-impl/integration-test/src/test/resources/\ncomponent/branches/SAK-12166/component-impl/integration-test/src/test/resources/log4j.properties\ncomponent/branches/SAK-12166/component-impl/integration-test/src/test/resources/sakai-configuration.xml\ncomponent/branches/SAK-12166/component-impl/integration-test/src/test/resources/sakai.properties\ncomponent/branches/SAK-12166/component-impl/integration-test/src/test/resources/some-peculiar.properties\ncomponent/branches/SAK-12166/component-impl/integration-test/src/webapp/\ncomponent/branches/SAK-12166/component-impl/integration-test/src/webapp/WEB-INF/\ncomponent/branches/SAK-12166/component-impl/integration-test/src/webapp/WEB-INF/components.xml\ncomponent/branches/SAK-12166/component-impl/integration-test/xdocs/\ncomponent/branches/SAK-12166/component-impl/integration-test/xdocs/README.txt\nRemoved:\ncomponent/branches/SAK-12166/component-impl/impl/src/java/org/sakaiproject/component/impl/ConfigurationServiceTest.java\ncomponent/branches/SAK-12166/component-impl/integration-test/pom.xml\ncomponent/branches/SAK-12166/component-impl/integration-test/src/\ncomponent/branches/SAK-12166/component-impl/integration-test/src/java/\ncomponent/branches/SAK-12166/component-impl/integration-test/src/java/org/\ncomponent/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/\ncomponent/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/component/\ncomponent/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/component/test/\ncomponent/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/component/test/ITestComponent.java\ncomponent/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/component/test/ITestProvider.java\ncomponent/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/component/test/TestComponent.java\ncomponent/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/component/test/TestProvider1.java\ncomponent/branches/SAK-12166/component-impl/integration-test/src/java/org/sakaiproject/component/test/TestProvider2.java\ncomponent/branches/SAK-12166/component-impl/integration-test/src/test/\ncomponent/branches/SAK-12166/component-impl/integration-test/src/test/java/\ncomponent/branches/SAK-12166/component-impl/integration-test/src/test/java/org/\ncomponent/branches/SAK-12166/component-impl/integration-test/src/test/java/org/sakaiproject/\ncomponent/branches/SAK-12166/component-impl/integration-test/src/test/java/org/sakaiproject/component/\ncomponent/branches/SAK-12166/component-impl/integration-test/src/test/java/org/sakaiproject/component/ConfigurationLoadingTest.java\ncomponent/branches/SAK-12166/component-impl/integration-test/src/test/resources/\ncomponent/branches/SAK-12166/component-impl/integration-test/src/test/resources/log4j.properties\ncomponent/branches/SAK-12166/component-impl/integration-test/src/test/resources/sakai-configuration.xml\ncomponent/branches/SAK-12166/component-impl/integration-test/src/test/resources/sakai.properties\ncomponent/branches/SAK-12166/component-impl/integration-test/src/test/resources/some-peculiar.properties\ncomponent/branches/SAK-12166/component-impl/integration-test/src/webapp/\ncomponent/branches/SAK-12166/component-impl/integration-test/src/webapp/WEB-INF/\ncomponent/branches/SAK-12166/component-impl/integration-test/src/webapp/WEB-INF/components.xml\ncomponent/branches/SAK-12166/component-impl/integration-test/xdocs/\ncomponent/branches/SAK-12166/component-impl/integration-test/xdocs/README.txt\nModified:\ncomponent/branches/SAK-12166/component-impl/impl/pom.xml\ncomponent/branches/SAK-12166/component-impl/impl/src/java/org/sakaiproject/component/impl/BasicConfigurationService.java\ncomponent/branches/SAK-12166/component-impl/pack/src/webapp/WEB-INF/components.xml\nLog:\nCommit following merge with SAK-8315 branch. It builds, will probably do nothing useful.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom antranig@caret.cam.ac.uk Tue Nov 20 13:42:11 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 13:42:11 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 13:42:11 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby sleepers.mail.umich.edu () with ESMTP id lAKIgAm0010979;\n\tTue, 20 Nov 2007 13:42:10 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 47432A7A.42B27.21444 ; \n\t20 Nov 2007 13:42:06 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1053E84005;\n\tTue, 20 Nov 2007 18:39:01 +0000 (GMT)\nMessage-ID: <200711201836.lAKIaCmQ002997@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 156\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 18:38:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D750D2382D\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 18:41:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKIaC40002999\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 13:36:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKIaCmQ002997\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 13:36:12 -0500\nDate: Tue, 20 Nov 2007 13:36:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: antranig@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 13:42:11 2007\nX-DSPAM-Confidence: 0.9810\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38502\n\nAuthor: antranig@caret.cam.ac.uk\nDate: 2007-11-20 13:35:30 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38502\n\nAdded:\ncomponent/branches/SAK-12166/component-api/component/src/config/org/sakaiproject/config/sakai-configuration.xml\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/BeanFactoryPostProcessorCreator.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/DynamicDefaultSakaiProperties.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/ReversiblePropertyOverrideConfigurer.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/SakaiPropertiesFactory.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/SakaiPropertyPromoter.java\nRemoved:\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/api/ComponentsLoader.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/SpringCompMgr.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/util/ComponentMap.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/util/NoisierDefaultListableBeanFactory.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/util/PropertyOverrideConfigurer.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/springframework/\nModified:\ncomponent/branches/SAK-12166/component-api/component/pom.xml\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/api/ComponentManager.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/cover/ComponentManager.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/util/ComponentsLoader.java\nLog:\nCommit following merge with SAK-8315 branch. It builds, will probably do nothing useful.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ssmail@indiana.edu Tue Nov 20 13:33:21 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 13:33:21 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 13:33:21 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby jacknife.mail.umich.edu () with ESMTP id lAKIXJel015325;\n\tTue, 20 Nov 2007 13:33:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 47432868.47B5C.25993 ; \n\t20 Nov 2007 13:33:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4D87683FF3;\n\tTue, 20 Nov 2007 18:30:10 +0000 (GMT)\nMessage-ID: <200711201827.lAKIRNju002974@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 540\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 18:29:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 98BA824FDC\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 18:32:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKIRNSd002976\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 13:27:23 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKIRNju002974\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 13:27:23 -0500\nDate: Tue, 20 Nov 2007 13:27:23 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ssmail@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ssmail@indiana.edu\nSubject: [sakai] svn commit: r38501 - citations/trunk/citations-tool/tool/src/java/org/sakaiproject/citation/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 13:33:21 2007\nX-DSPAM-Confidence: 0.7557\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38501\n\nAuthor: ssmail@indiana.edu\nDate: 2007-11-20 13:27:22 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38501\n\nModified:\ncitations/trunk/citations-tool/tool/src/java/org/sakaiproject/citation/tool/CitationHelperAction.java\nLog:\nSAK-12248: Added a catch block for Exception in doBeginSearch() - an alert is displayed and the page is properly re-rendered\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Tue Nov 20 13:23:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 13:23:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 13:23:19 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby casino.mail.umich.edu () with ESMTP id lAKINIM4005488;\n\tTue, 20 Nov 2007 13:23:18 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 47432610.5ED3.18181 ; \n\t20 Nov 2007 13:23:14 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2C51283FDB;\n\tTue, 20 Nov 2007 18:20:11 +0000 (GMT)\nMessage-ID: <200711201816.lAKIGx6X002962@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 877\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 18:19:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 15F2B2383D\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 18:22:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKIGxei002964\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 13:16:59 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKIGx6X002962\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 13:16:59 -0500\nDate: Tue, 20 Nov 2007 13:16:59 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38500 - site/trunk/site-impl/impl/src/java/org/sakaiproject/site/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 13:23:19 2007\nX-DSPAM-Confidence: 0.8397\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38500\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-20 13:16:50 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38500\n\nModified:\nsite/trunk/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseGroup.java\nsite/trunk/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSite.java\nsite/trunk/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSitePage.java\nsite/trunk/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSiteService.java\nsite/trunk/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseToolConfiguration.java\nsite/trunk/site-impl/impl/src/java/org/sakaiproject/site/impl/DbSiteService.java\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-12152\nFixed\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Tue Nov 20 13:19:12 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 13:19:12 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 13:19:12 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby mission.mail.umich.edu () with ESMTP id lAKIJBIF019431;\n\tTue, 20 Nov 2007 13:19:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 47432516.7C117.25210 ; \n\t20 Nov 2007 13:19:07 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2E2B07ACFD;\n\tTue, 20 Nov 2007 18:15:35 +0000 (GMT)\nMessage-ID: <200711201806.lAKI65T3002939@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 796\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 18:10:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1B95C23825\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 18:11:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKI65Sv002941\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 13:06:05 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKI65T3002939\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 13:06:05 -0500\nDate: Tue, 20 Nov 2007 13:06:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38499 - content/trunk sakai/trunk site/trunk site-manage/trunk tool/trunk user/trunk web/trunk\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 13:19:12 2007\nX-DSPAM-Confidence: 0.8415\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38499\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-20 13:05:49 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38499\n\nModified:\ncontent/trunk/pom.xml\nsakai/trunk/pom.xml\nsite-manage/trunk/pom.xml\nsite/trunk/pom.xml\ntool/trunk/pom.xml\nuser/trunk/pom.xml\nweb/trunk/pom.xml\nLog:\nRenamed kernel to framework\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Tue Nov 20 13:18:12 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 13:18:12 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 13:18:12 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby casino.mail.umich.edu () with ESMTP id lAKIIBuQ002362;\n\tTue, 20 Nov 2007 13:18:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 474324DC.71048.10453 ; \n\t20 Nov 2007 13:18:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9A09883DE7;\n\tTue, 20 Nov 2007 18:14:34 +0000 (GMT)\nMessage-ID: <200711201754.lAKHshOl002894@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 854\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 18:00:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2488523817\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 18:00:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKHshSp002896\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 12:54:43 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKHshOl002894\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 12:54:43 -0500\nDate: Tue, 20 Nov 2007 12:54:43 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38498 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 13:18:12 2007\nX-DSPAM-Confidence: 0.8486\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38498\n\nAuthor: zqian@umich.edu\nDate: 2007-11-20 12:54:42 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38498\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerge the fix to SAK-12164 into post-2-4 branch: svn merge -r 38120:38121 https://source.sakaiproject.org/svn/assignment/trunk/\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Tue Nov 20 11:29:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 11:29:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 11:29:02 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby flawless.mail.umich.edu () with ESMTP id lAKGT0aV017675;\n\tTue, 20 Nov 2007 11:29:00 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 47430B41.869A6.21153 ; \n\t20 Nov 2007 11:28:55 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4CCFF83950;\n\tTue, 20 Nov 2007 16:28:48 +0000 (GMT)\nMessage-ID: <200711201622.lAKGMt9m002709@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 25\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 16:28:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D0CD62375A\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 16:28:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKGMtU0002711\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 11:22:55 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKGMt9m002709\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 11:22:55 -0500\nDate: Tue, 20 Nov 2007 11:22:55 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38492 - util/trunk/util-impl/impl/src/java/org/sakaiproject/time/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 11:29:02 2007\nX-DSPAM-Confidence: 0.8401\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38492\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-20 11:22:50 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38492\n\nModified:\nutil/trunk/util-impl/impl/src/java/org/sakaiproject/time/impl/BasicTimeService.java\nutil/trunk/util-impl/impl/src/java/org/sakaiproject/time/impl/MyTime.java\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-12153\nFixed\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Tue Nov 20 11:19:56 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 11:19:56 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 11:19:56 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby faithful.mail.umich.edu () with ESMTP id lAKGJtXw012466;\n\tTue, 20 Nov 2007 11:19:55 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 47430908.8430D.31403 ; \n\t20 Nov 2007 11:19:27 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6AE1383A6D;\n\tTue, 20 Nov 2007 16:19:19 +0000 (GMT)\nMessage-ID: <200711201613.lAKGDXPM002671@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 360\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 16:19:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4C59E23750\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 16:19:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKGDX7U002673\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 11:13:33 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKGDXPM002671\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 11:13:33 -0500\nDate: Tue, 20 Nov 2007 11:13:33 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 11:19:56 2007\nX-DSPAM-Confidence: 0.9843\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38491\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-20 11:12:58 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38491\n\nAdded:\ncontent/branches/SAK-12105/readme.txt\ncontent/branches/SAK-12105/runconversion.sh\ncontent/branches/SAK-12105/upgradeschema-mysql.config\ncontent/branches/SAK-12105/upgradeschema-oracle.config\nModified:\ncontent/branches/SAK-12105/content-impl-jcr/impl/\ncontent/branches/SAK-12105/content-impl-jcr/impl/pom.xml\ncontent/branches/SAK-12105/content-impl-jcr/pack/pom.xml\ncontent/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF/components.xml\ncontent/branches/SAK-12105/content-impl-providers/impl/\ncontent/branches/SAK-12105/content-impl-providers/impl/pom.xml\ncontent/branches/SAK-12105/content-impl-providers/pack/\ncontent/branches/SAK-12105/content-impl-providers/pack/pom.xml\ncontent/branches/SAK-12105/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\ncontent/branches/SAK-12105/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java\ncontent/branches/SAK-12105/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/upgradeschema.config\ncontent/branches/SAK-12105/content-impl/impl/src/java/org/sakaiproject/content/types/FolderType.java\ncontent/branches/SAK-12105/contentmultiplex-impl/impl/\ncontent/branches/SAK-12105/contentmultiplex-impl/impl/pom.xml\ncontent/branches/SAK-12105/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/ContentHostingMultiplexService.java\nLog:\nSAK-12105: merged trunk changes into branch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Tue Nov 20 11:17:45 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 11:17:45 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 11:17:45 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby score.mail.umich.edu () with ESMTP id lAKGHg22016993;\n\tTue, 20 Nov 2007 11:17:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 47430894.7DA39.7162 ; \n\t20 Nov 2007 11:17:34 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 11DA583D35;\n\tTue, 20 Nov 2007 16:17:24 +0000 (GMT)\nMessage-ID: <200711201611.lAKGBbLc002659@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 290\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 16:17:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BC82623750\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 16:17:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKGBbLG002661\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 11:11:37 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKGBbLc002659\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 11:11:37 -0500\nDate: Tue, 20 Nov 2007 11:11:37 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38490 - in assignment/trunk: . assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 11:17:45 2007\nX-DSPAM-Confidence: 0.9881\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38490\n\nAuthor: zqian@umich.edu\nDate: 2007-11-20 11:11:22 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38490\n\nModified:\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/upgradeschema.config\nassignment/trunk/upgradeschema_mysql.config\nassignment/trunk/upgradeschema_oracle.config\nLog:\nfix 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\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Tue Nov 20 11:14:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 11:14:43 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 11:14:43 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby score.mail.umich.edu () with ESMTP id lAKGEfCl014882;\n\tTue, 20 Nov 2007 11:14:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 474307E3.3134F.10648 ; \n\t20 Nov 2007 11:14:35 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CFC1683D31;\n\tTue, 20 Nov 2007 16:14:26 +0000 (GMT)\nMessage-ID: <200711201608.lAKG8cu4002647@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 249\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 16:14:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5EF2E2376B\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 16:14:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKG8cO2002649\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 11:08:38 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKG8cu4002647\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 11:08:38 -0500\nDate: Tue, 20 Nov 2007 11:08:38 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38489 - content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 11:14:43 2007\nX-DSPAM-Confidence: 0.9798\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38489\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-20 11:08:34 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38489\n\nModified:\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/DropboxContextObserver.java\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-12247\nFixed\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Tue Nov 20 10:47:48 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 10:47:48 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 10:47:48 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby godsend.mail.umich.edu () with ESMTP id lAKFllQm006973;\n\tTue, 20 Nov 2007 10:47:47 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 4743018E.D13C8.22816 ; \n\t20 Nov 2007 10:47:34 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7AED183AEF;\n\tTue, 20 Nov 2007 15:47:24 +0000 (GMT)\nMessage-ID: <200711201541.lAKFfYCv002580@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 772\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 15:47:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CB60C215BF\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 15:47:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKFfY6C002582\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 10:41:34 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKFfYCv002580\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 10:41:34 -0500\nDate: Tue, 20 Nov 2007 10:41:34 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38488 - content/branches/SAK-12105/contentmultiplex-impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 10:47:48 2007\nX-DSPAM-Confidence: 0.9779\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38488\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-20 10:41:30 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38488\n\nModified:\ncontent/branches/SAK-12105/contentmultiplex-impl/.classpath\nLog:\nSAK-12105: Merged trunk into the branch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov 20 10:38:32 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 10:38:32 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 10:38:32 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby awakenings.mail.umich.edu () with ESMTP id lAKFcGJk002893;\n\tTue, 20 Nov 2007 10:38:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4742FF5B.49537.5717 ; \n\t20 Nov 2007 10:38:10 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 34BBF83BB2;\n\tTue, 20 Nov 2007 15:37:58 +0000 (GMT)\nMessage-ID: <200711201532.lAKFWA4b002566@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 971\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 15:37:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 551B2215BF\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 15:37:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKFWAEG002568\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 10:32:10 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKFWA4b002566\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 10:32:10 -0500\nDate: Tue, 20 Nov 2007 10:32:10 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38487 - osp/branches/sakai_2-5-x/xsltcharon/xsltcharon-portal/xsl-portal/src/java/org/sakaiproject/portal/xsltcharon/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 10:38:32 2007\nX-DSPAM-Confidence: 0.7608\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38487\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-20 10:32:08 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38487\n\nModified:\nosp/branches/sakai_2-5-x/xsltcharon/xsltcharon-portal/xsl-portal/src/java/org/sakaiproject/portal/xsltcharon/impl/XsltRenderContext.java\nLog:\nsvn merge -r 38434:38435 https://source.sakaiproject.org/svn/osp/trunk\nU    xsltcharon/xsltcharon-portal/xsl-portal/src/java/org/sakaiproject/portal/xsltcharon/impl/XsltRenderContext.java\nsillybunny:~/java/2-5/sakai_2-5-x/osp mmmay$ svn log -r 38434:38435 https://source.sakaiproject.org/svn/osp/trunk\n------------------------------------------------------------------------\nr38435 | john.ellis@rsmart.com | 2007-11-19 18:54:53 -0500 (Mon, 19 Nov 2007) | 4 lines\n\nSAK-12238\nadded code to check for null items in a list of configurations\n\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gopal.ramasammycook@gmail.com Tue Nov 20 10:37:23 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 10:37:23 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 10:37:23 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby sleepers.mail.umich.edu () with ESMTP id lAKFbM7h012358;\n\tTue, 20 Nov 2007 10:37:22 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 4742FF24.E10FB.6417 ; \n\t20 Nov 2007 10:37:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8903C83B69;\n\tTue, 20 Nov 2007 15:37:09 +0000 (GMT)\nMessage-ID: <200711201531.lAKFVIPk002554@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 728\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 15:36:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 87302236E7\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 15:36:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKFVIaY002556\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 10:31:18 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKFVIPk002554\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 10:31:18 -0500\nDate: Tue, 20 Nov 2007 10:31:18 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f\nTo: source@collab.sakaiproject.org\nFrom: gopal.ramasammycook@gmail.com\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 10:37:23 2007\nX-DSPAM-Confidence: 0.9789\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38486\n\nAuthor: gopal.ramasammycook@gmail.com\nDate: 2007-11-20 10:30:34 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38486\n\nModified:\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/AssessmentSettingsBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/PublishedAssessmentSettingsBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/HistogramListener.java\nsam/branches/SAK-12065/samigo-app/src/webapp/jsf/author/authorIndex.jsp\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacade.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java\nLog:\nSAK-12065 Tooltip fix in author index page for group release.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Tue Nov 20 10:36:41 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 10:36:41 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 10:36:41 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby fan.mail.umich.edu () with ESMTP id lAKFaeM7007416;\n\tTue, 20 Nov 2007 10:36:40 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 4742FEDE.5D481.14509 ; \n\t20 Nov 2007 10:36:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 13FA883B48;\n\tTue, 20 Nov 2007 15:36:00 +0000 (GMT)\nMessage-ID: <200711201530.lAKFUCjI002542@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 219\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 15:35:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1B6CE215BF\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 15:35:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKFUCdQ002544\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 10:30:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKFUCjI002542\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 10:30:12 -0500\nDate: Tue, 20 Nov 2007 10:30:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38485 - content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 10:36:41 2007\nX-DSPAM-Confidence: 0.9862\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38485\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-20 10:30:07 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38485\n\nModified:\ncontent/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java\nLog:\nSAK-12105: Fixed up the test to no use the root folder for creating test content (this seems to not work reliably for legacy CHS)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov 20 10:35:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 10:35:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 10:35:19 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby score.mail.umich.edu () with ESMTP id lAKFZIQJ020750;\n\tTue, 20 Nov 2007 10:35:18 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 4742FEA2.A0F5B.22904 ; \n\t20 Nov 2007 10:35:12 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 47F848261D;\n\tTue, 20 Nov 2007 15:35:00 +0000 (GMT)\nMessage-ID: <200711201529.lAKFTB3R002530@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 969\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 15:34:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C7E5E215BF\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 15:34:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKFTBGL002532\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 10:29:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKFTB3R002530\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 10:29:11 -0500\nDate: Tue, 20 Nov 2007 10:29:11 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38484 - db/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 10:35:19 2007\nX-DSPAM-Confidence: 0.7617\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38484\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-20 10:29:10 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38484\n\nModified:\ndb/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionDriver.java\nLog:\nsvn merge -r 38478:38479 https://source.sakaiproject.org/svn/db/trunk\nU    db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionDriver.java\nsillybunny:~/java/2-5/sakai_2-5-x/db mmmay$ svn log -r 38478:38479 https://source.sakaiproject.org/svn/db/trunk\n------------------------------------------------------------------------\nr38479 | jimeng@umich.edu | 2007-11-20 09:59:18 -0500 (Tue, 20 Nov 2007) | 3 lines\n\nSAK-12209\nRemoved log messages showing the parameters for creating new columns when running the conversion utility.\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov 20 10:33:44 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 10:33:44 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 10:33:44 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby fan.mail.umich.edu () with ESMTP id lAKFXh4X005828;\n\tTue, 20 Nov 2007 10:33:43 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 4742FE41.36D4B.16132 ; \n\t20 Nov 2007 10:33:27 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 53A088261D;\n\tTue, 20 Nov 2007 15:33:13 +0000 (GMT)\nMessage-ID: <200711201527.lAKFRSxt002518@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 522\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 15:32:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 98E0F25260\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 15:33:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKFRSip002520\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 10:27:28 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKFRSxt002518\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 10:27:28 -0500\nDate: Tue, 20 Nov 2007 10:27:28 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38483 - content/branches/sakai_2-5-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 10:33:44 2007\nX-DSPAM-Confidence: 0.9944\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38483\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-20 10:27:26 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38483\n\nAdded:\ncontent/branches/sakai_2-5-x/readme.txt\nModified:\ncontent/branches/sakai_2-5-x/upgradeschema-oracle.config\nLog:\nsvn merge -r 38424:38426 https://source.sakaiproject.org/svn/content/trunk\nU    upgradeschema-oracle.config\nA    readme.txt\nsillybunny:~/java/2-5/sakai_2-5-x/content mmmay$ svn log -r 38424:38426 https://source.sakaiproject.org/svn/content/trunk\n------------------------------------------------------------------------\nr38424 | jimeng@umich.edu | 2007-11-19 15:43:47 -0500 (Mon, 19 Nov 2007) | 5 lines\n\nSAK-12235\nAdded indexes to register tables in the mysql conversion config for content.\nCopies the mysql config and modified it for oracle.\nProvided a runconversion.sh shellscript file at the root of the content directory.\n\n------------------------------------------------------------------------\nr38425 | jimeng@umich.edu | 2007-11-19 15:57:36 -0500 (Mon, 19 Nov 2007) | 3 lines\n\nSAK-12235\nChanged query to verify existence of required (new) columns for oracle\n\n------------------------------------------------------------------------\nr38426 | jimeng@umich.edu | 2007-11-19 16:13:41 -0500 (Mon, 19 Nov 2007) | 3 lines\n\nSAK-12235\nAdded readme file for conversion script\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov 20 10:32:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 10:32:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 10:32:30 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby panther.mail.umich.edu () with ESMTP id lAKFWT6V001513;\n\tTue, 20 Nov 2007 10:32:29 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 4742FDFF.91AB8.12309 ; \n\t20 Nov 2007 10:32:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 08BAE82619;\n\tTue, 20 Nov 2007 15:31:52 +0000 (GMT)\nMessage-ID: <200711201526.lAKFQC2S002506@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 827\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 15:31:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BD05E25260\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 15:31:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKFQCNG002508\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 10:26:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKFQC2S002506\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 10:26:12 -0500\nDate: Tue, 20 Nov 2007 10:26:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38482 - in content/branches/sakai_2-5-x: . content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 10:32:30 2007\nX-DSPAM-Confidence: 0.7011\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38482\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-20 10:26:07 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38482\n\nAdded:\ncontent/branches/sakai_2-5-x/runconversion.sh\ncontent/branches/sakai_2-5-x/upgradeschema-mysql.config\ncontent/branches/sakai_2-5-x/upgradeschema-oracle.config\nModified:\ncontent/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/upgradeschema.config\nLog:\nvn merge -r 38423:38424 https://source.sakaiproject.org/svn/content/trunk\nA    upgradeschema-mysql.config\nA    upgradeschema-oracle.config\nA    runconversion.sh\nU    content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/upgradeschema.config\nsillybunny:~/java/2-5/sakai_2-5-x/content mmmay$ svn log -r 38423:38424 https://source.sakaiproject.org/svn/content/trunk\n------------------------------------------------------------------------\nr38424 | jimeng@umich.edu | 2007-11-19 15:43:47 -0500 (Mon, 19 Nov 2007) | 5 lines\n\nSAK-12235\nAdded indexes to register tables in the mysql conversion config for content.\nCopies the mysql config and modified it for oracle.\nProvided a runconversion.sh shellscript file at the root of the content directory.\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Tue Nov 20 10:32:05 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 10:32:05 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 10:32:05 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby fan.mail.umich.edu () with ESMTP id lAKFW3vU004602;\n\tTue, 20 Nov 2007 10:32:03 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4742FDDF.A144C.12150 ; \n\t20 Nov 2007 10:31:51 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 37F967F40B;\n\tTue, 20 Nov 2007 15:31:16 +0000 (GMT)\nMessage-ID: <200711201525.lAKFPGsd002494@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 366\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 15:30:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E208121540\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 15:30:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKFPHAA002496\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 10:25:17 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKFPGsd002494\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 10:25:16 -0500\nDate: Tue, 20 Nov 2007 10:25:16 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 10:32:05 2007\nX-DSPAM-Confidence: 0.9773\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38481\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-20 10:24:59 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38481\n\nModified:\ncontent/trunk/content-impl-jcr/pack/src/webapp/WEB-INF/components.xml\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java\ncontent/trunk/contentmultiplex-impl/impl/pom.xml\ncontent/trunk/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/ContentHostingMultiplexService.java\ncontent/trunk/pom.xml\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-12246\nFixed\n\nAlso Mutiplex now working.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov 20 10:15:20 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 10:15:20 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 10:15:20 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby fan.mail.umich.edu () with ESMTP id lAKFFJBq025992;\n\tTue, 20 Nov 2007 10:15:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4742F9FA.92EA7.9312 ; \n\t20 Nov 2007 10:15:12 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0419483ABF;\n\tTue, 20 Nov 2007 15:15:07 +0000 (GMT)\nMessage-ID: <200711201509.lAKF9GQ2002482@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 236\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 15:14:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A63252524B\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 15:14:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKF9GDo002484\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 10:09:16 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKF9GQ2002482\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 10:09:16 -0500\nDate: Tue, 20 Nov 2007 10:09:16 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38480 - assignment/branches/sakai_2-5-x/assignment-bundles\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 10:15:20 2007\nX-DSPAM-Confidence: 0.7620\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38480\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-20 10:09:15 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38480\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-bundles/assignment.properties\nLog:\nsvn merge -r 38397:38398 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-bundles/assignment.properties\nsillybunny:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 38397:38398 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr38398 | zqian@umich.edu | 2007-11-19 09:47:33 -0500 (Mon, 19 Nov 2007) | 1 line\n\nFix to SAK-12223:Assignments: Log in as instructor, create an assignment by choosing the Radio button \" Associate with existing Gradebook assignment\" - change to 'entry'\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Tue Nov 20 10:05:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 10:05:50 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 10:05:50 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby godsend.mail.umich.edu () with ESMTP id lAKF5nFE007457;\n\tTue, 20 Nov 2007 10:05:49 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 4742F7B2.C311E.30283 ; \n\t20 Nov 2007 10:05:29 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8DBD583998;\n\tTue, 20 Nov 2007 15:05:25 +0000 (GMT)\nMessage-ID: <200711201459.lAKExLN6002435@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 506\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 15:04:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6E1962524B\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 15:04:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKExLEo002437\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 09:59:21 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKExLN6002435\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 09:59:21 -0500\nDate: Tue, 20 Nov 2007 09:59:21 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38479 - db/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 10:05:50 2007\nX-DSPAM-Confidence: 0.9856\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38479\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-20 09:59:18 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38479\n\nModified:\ndb/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionDriver.java\nLog:\nSAK-12209\nRemoved log messages showing the parameters for creating new columns when running the conversion utility.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov 20 09:58:20 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 09:58:20 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 09:58:20 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby casino.mail.umich.edu () with ESMTP id lAKEwJDs025008;\n\tTue, 20 Nov 2007 09:58:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 4742F604.E3338.23581 ; \n\t20 Nov 2007 09:58:16 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3134A839E8;\n\tTue, 20 Nov 2007 14:58:16 +0000 (GMT)\nMessage-ID: <200711201452.lAKEqLcd002412@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 739\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 14:57:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6961725279\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 14:57:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKEqLCp002414\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 09:52:21 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKEqLcd002412\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 09:52:21 -0500\nDate: Tue, 20 Nov 2007 09:52:21 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38478 - assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 09:58:20 2007\nX-DSPAM-Confidence: 0.7006\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38478\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-20 09:52:19 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38478\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nsvn merge -r 38231:38232 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nsillybunny:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 38231:38232 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr38232 | zqian@umich.edu | 2007-11-15 21:24:13 -0500 (Thu, 15 Nov 2007) | 1 line\n\nfix 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\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov 20 09:57:41 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 09:57:41 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 09:57:41 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby casino.mail.umich.edu () with ESMTP id lAKEveVF024649;\n\tTue, 20 Nov 2007 09:57:40 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4742F5DE.3735D.26408 ; \n\t20 Nov 2007 09:57:37 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 56C3D83A36;\n\tTue, 20 Nov 2007 14:57:31 +0000 (GMT)\nMessage-ID: <200711201451.lAKEpNsI002400@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 585\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 14:57:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AB32D25280\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 14:56:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKEpNdq002402\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 09:51:24 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKEpNsI002400\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 09:51:23 -0500\nDate: Tue, 20 Nov 2007 09:51:23 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38477 - assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 09:57:41 2007\nX-DSPAM-Confidence: 0.7620\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38477\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-20 09:51:22 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38477\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nsvn merge -r 38203:38204 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nsillybunny:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 38203:38204 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr38204 | zqian@umich.edu | 2007-11-15 11:54:08 -0500 (Thu, 15 Nov 2007) | 1 line\n\nfix 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\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov 20 09:56:32 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 09:56:32 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 09:56:32 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby jacknife.mail.umich.edu () with ESMTP id lAKEuVWD031031;\n\tTue, 20 Nov 2007 09:56:31 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 4742F598.8C53A.30705 ; \n\t20 Nov 2007 09:56:27 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id AA17783A10;\n\tTue, 20 Nov 2007 14:56:25 +0000 (GMT)\nMessage-ID: <200711201450.lAKEoKN4002388@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 922\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 14:55:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 395BA25279\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 14:55:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKEoK8J002390\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 09:50:20 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKEoKN4002388\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 09:50:20 -0500\nDate: Tue, 20 Nov 2007 09:50:20 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38476 - assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 09:56:32 2007\nX-DSPAM-Confidence: 0.7621\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38476\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-20 09:50:18 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38476\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nsvn merge -r 38193:38194 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nsillybunny:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 38193:38194 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr38194 | zqian@umich.edu | 2007-11-14 23:02:32 -0500 (Wed, 14 Nov 2007) | 1 line\n\nfix 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\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov 20 09:55:22 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 09:55:22 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 09:55:22 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby flawless.mail.umich.edu () with ESMTP id lAKEtMDV016867;\n\tTue, 20 Nov 2007 09:55:22 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 4742F553.1F1AB.3929 ; \n\t20 Nov 2007 09:55:18 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B768783A0E;\n\tTue, 20 Nov 2007 14:55:17 +0000 (GMT)\nMessage-ID: <200711201449.lAKEnL7K002376@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 859\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 14:54:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EF97D2526C\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 14:54:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKEnLKc002378\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 09:49:21 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKEnL7K002376\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 09:49:21 -0500\nDate: Tue, 20 Nov 2007 09:49:21 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38475 - assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 09:55:22 2007\nX-DSPAM-Confidence: 0.7623\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38475\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-20 09:49:19 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38475\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nsvn merge -r 38169:38170 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nsillybunny:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 38169:38170 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr38170 | zqian@umich.edu | 2007-11-14 14:08:58 -0500 (Wed, 14 Nov 2007) | 1 line\n\nfix 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\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov 20 09:54:14 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 09:54:14 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 09:54:14 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby fan.mail.umich.edu () with ESMTP id lAKEsDNs013716;\n\tTue, 20 Nov 2007 09:54:13 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 4742F50F.435E5.8076 ; \n\t20 Nov 2007 09:54:10 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B97C483998;\n\tTue, 20 Nov 2007 14:54:03 +0000 (GMT)\nMessage-ID: <200711201448.lAKEmHpZ002364@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 879\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 14:53:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AE56D25274\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 14:53:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKEmHYj002366\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 09:48:17 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKEmHpZ002364\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 09:48:17 -0500\nDate: Tue, 20 Nov 2007 09:48:17 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 09:54:14 2007\nX-DSPAM-Confidence: 0.7007\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38474\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-20 09:48:14 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38474\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm\nLog:\nsvn merge -r 38164:38165 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm\nU    assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nsillybunny:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 38165:38165 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr38165 | zqian@umich.edu | 2007-11-14 11:26:11 -0500 (Wed, 14 Nov 2007) | 1 line\n\nfix 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\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov 20 09:52:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 09:52:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 09:52:02 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby sleepers.mail.umich.edu () with ESMTP id lAKEq1tB011612;\n\tTue, 20 Nov 2007 09:52:01 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 4742F48A.E25E3.26626 ; \n\t20 Nov 2007 09:51:58 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7A906839E9;\n\tTue, 20 Nov 2007 14:51:50 +0000 (GMT)\nMessage-ID: <200711201446.lAKEk3Tg002352@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 473\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 14:51:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 364FD2526C\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 14:51:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKEk3mk002354\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 09:46:03 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKEk3Tg002352\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 09:46:03 -0500\nDate: Tue, 20 Nov 2007 09:46:03 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38473 - assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 09:52:02 2007\nX-DSPAM-Confidence: 0.7623\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38473\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-20 09:46:01 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38473\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nsvn merge -r 38249:38250 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nsillybunny:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 38250:38250 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr38250 | zqian@umich.edu | 2007-11-16 14:25:04 -0500 (Fri, 16 Nov 2007) | 1 line\n\nfix to SAK-12222: Assignmets: Log in as instructor create Assignment, do not post, save as draft\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov 20 09:50:22 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 09:50:22 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 09:50:22 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby faithful.mail.umich.edu () with ESMTP id lAKEoMCn013496;\n\tTue, 20 Nov 2007 09:50:22 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4742F426.A5C16.22945 ; \n\t20 Nov 2007 09:50:18 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 01FB3835FA;\n\tTue, 20 Nov 2007 14:50:10 +0000 (GMT)\nMessage-ID: <200711201444.lAKEiRO2002340@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1002\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 14:50:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CF4892526C\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 14:50:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKEiRLt002342\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 09:44:28 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKEiRO2002340\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 09:44:27 -0500\nDate: Tue, 20 Nov 2007 09:44:27 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 09:50:22 2007\nX-DSPAM-Confidence: 0.7619\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38472\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-20 09:44:23 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38472\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-bundles/assignment.properties\nassignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nsvn merge -r 38185:38186 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-bundles/assignment.properties\nU    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nU    assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nsillybunny:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 38186:38186 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr38186 | zqian@umich.edu | 2007-11-14 21:03:33 -0500 (Wed, 14 Nov 2007) | 1 line\n\nfix to SAK-12186:Assignments download all and upload all have inconsistent id fields - display id != eid\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov 20 09:47:01 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 09:47:01 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 09:47:01 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby faithful.mail.umich.edu () with ESMTP id lAKEl0jS011302;\n\tTue, 20 Nov 2007 09:47:00 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 4742F35C.A1F11.25379 ; \n\t20 Nov 2007 09:46:57 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C8E9283912;\n\tTue, 20 Nov 2007 14:46:44 +0000 (GMT)\nMessage-ID: <200711201440.lAKEexIH002328@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 439\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 14:46:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3DCF52526C\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 14:46:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKEexNr002330\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 09:40:59 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKEexIH002328\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 09:40:59 -0500\nDate: Tue, 20 Nov 2007 09:40:59 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38471 - assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 09:47:01 2007\nX-DSPAM-Confidence: 0.7619\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38471\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-20 09:40:57 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38471\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nsvn merge -r 38132:38135 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nsillybunny:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 38133:38133 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr38133 | zqian@umich.edu | 2007-11-13 12:43:11 -0500 (Tue, 13 Nov 2007) | 1 line\n\nfix to SAK-12167:Assignment Grades.csv file downloads with grades in the wrong column\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov 20 09:44:45 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 09:44:45 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 09:44:45 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby mission.mail.umich.edu () with ESMTP id lAKEiifL028795;\n\tTue, 20 Nov 2007 09:44:45 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 4742F2D3.4E694.20105 ; \n\t20 Nov 2007 09:44:40 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 54395839AF;\n\tTue, 20 Nov 2007 14:44:30 +0000 (GMT)\nMessage-ID: <200711201438.lAKEcllt002316@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 170\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 14:44:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E451C25274\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 14:44:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKEclZn002318\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 09:38:47 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKEcllt002316\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 09:38:47 -0500\nDate: Tue, 20 Nov 2007 09:38:47 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38470 - assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 09:44:45 2007\nX-DSPAM-Confidence: 0.7624\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38470\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-20 09:38:45 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38470\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nsvn merge -r 38120:38121 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nsillybunny:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 38120:38121 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr38120 | zqian@umich.edu | 2007-11-12 11:44:57 -0500 (Mon, 12 Nov 2007) | 1 line\n\nfix to SAK-12178: Assignments: Log in as instructor, add assignment, in points field enter 10000000000, Alert message displayed, message should display correct input value\n------------------------------------------------------------------------\nr38121 | zqian@umich.edu | 2007-11-12 12:10:08 -0500 (Mon, 12 Nov 2007) | 1 line\n\nfix to SAK-12164: 'Assign this grade...' function is writing over Grade data\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov 20 09:42:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 09:42:43 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 09:42:43 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby awakenings.mail.umich.edu () with ESMTP id lAKEggUk031588;\n\tTue, 20 Nov 2007 09:42:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 4742F257.44E03.11043 ; \n\t20 Nov 2007 09:42:37 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B24177DA2D;\n\tTue, 20 Nov 2007 14:42:28 +0000 (GMT)\nMessage-ID: <200711201436.lAKEai5E002302@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 899\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 14:42:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D9ED425274\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 14:42:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKEaiMU002304\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 09:36:44 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKEai5E002302\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 09:36:44 -0500\nDate: Tue, 20 Nov 2007 09:36:44 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38469 - in assignment/branches/sakai_2-5-x: assignment-bundles assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 09:42:43 2007\nX-DSPAM-Confidence: 0.6197\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38469\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-20 09:36:41 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38469\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-bundles/assignment.properties\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nsvn merge -r 38119:38120 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-bundles/assignment.properties\nU    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nsillybunny:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 38119:38120 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr38120 | zqian@umich.edu | 2007-11-12 11:44:57 -0500 (Mon, 12 Nov 2007) | 1 line\n\nfix to SAK-12178: Assignments: Log in as instructor, add assignment, in points field enter 10000000000, Alert message displayed, message should display correct input value\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov 20 09:41:12 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 09:41:12 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 09:41:12 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby panther.mail.umich.edu () with ESMTP id lAKEfBjr031132;\n\tTue, 20 Nov 2007 09:41:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4742F1FA.64107.1374 ; \n\t20 Nov 2007 09:41:05 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7D0688390A;\n\tTue, 20 Nov 2007 14:40:53 +0000 (GMT)\nMessage-ID: <200711201435.lAKEZ6t5002289@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 438\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 14:40:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 310C725278\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 14:40:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKEZ6cw002291\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 09:35:06 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKEZ6t5002289\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 09:35:06 -0500\nDate: Tue, 20 Nov 2007 09:35:06 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38468 - assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 09:41:12 2007\nX-DSPAM-Confidence: 0.7621\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38468\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-20 09:35:04 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38468\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nsvn merge -r 37420:37421 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nsillybunny:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 37420:37421 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr37421 | zqian@umich.edu | 2007-10-26 13:58:49 -0400 (Fri, 26 Oct 2007) | 1 line\n\nfix to SAK-12058:Grade Report in Assignments orders by default by Last Name, should order by Last Name, First Name\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom lance@indiana.edu Tue Nov 20 08:47:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 08:47:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 08:47:02 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby sleepers.mail.umich.edu () with ESMTP id lAKDl1Ru008708;\n\tTue, 20 Nov 2007 08:47:01 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4742E540.46BA9.2427 ; \n\t20 Nov 2007 08:46:44 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2E4708390A;\n\tTue, 20 Nov 2007 13:42:24 +0000 (GMT)\nMessage-ID: <200711201340.lAKDege4002240@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 628\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 13:41:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E787FB29B\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 13:46:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKDegjA002242\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 08:40:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKDege4002240\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 08:40:42 -0500\nDate: Tue, 20 Nov 2007 08:40:42 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to lance@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: lance@indiana.edu\nSubject: [sakai] svn commit: r38467 - discussion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 08:47:02 2007\nX-DSPAM-Confidence: 0.7559\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38467\n\nAuthor: lance@indiana.edu\nDate: 2007-11-20 08:40:41 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38467\n\nRemoved:\ndiscussion/trunk/\nLog:\nSAK-11341 - Moved Retired Discussion Project to contrib\ndelete trunk\n\nsvn delete discussion/trunk\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Tue Nov 20 07:15:15 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 07:15:15 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 07:15:15 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby jacknife.mail.umich.edu () with ESMTP id lAKCFDaA020320;\n\tTue, 20 Nov 2007 07:15:13 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 4742CFC9.34D83.20723 ; \n\t20 Nov 2007 07:15:10 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DC2E573A2B;\n\tTue, 20 Nov 2007 12:15:14 +0000 (GMT)\nMessage-ID: <200711201209.lAKC9A7v002137@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 33\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 12:14:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BBA3825012\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 12:14:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKC9AdS002139\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 07:09:10 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKC9A7v002137\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 07:09:10 -0500\nDate: Tue, 20 Nov 2007 07:09:10 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 07:15:15 2007\nX-DSPAM-Confidence: 0.9881\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38465\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-11-20 07:09:02 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38465\n\nAdded:\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/MigrationConstants.java\ncontent/branches/SAK-12105/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/ContentHostingTargetSource.java\nModified:\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/CHStoJCRMigratorImpl.java\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/ContentToJCRCopierImpl.java\ncontent/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF/components-jcr.xml\ncontent/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF/components.xml\ncontent/branches/SAK-12105/content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api/ContentToJCRCopier.java\ncontent/branches/SAK-12105/contentmultiplex-impl/impl/pom.xml\nLog:\nSAK-12105 Proxy and Target for different CHS Implementations (even though the Spring Decl doesn't seem to work yet).\nMigration constants.  Actions for copying and deleting things on content.remove.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Tue Nov 20 06:32:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 06:32:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 06:32:25 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby score.mail.umich.edu () with ESMTP id lAKBWNOB002867;\n\tTue, 20 Nov 2007 06:32:23 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 4742C5BD.52826.24449 ; \n\t20 Nov 2007 06:32:21 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 776C174B37;\n\tTue, 20 Nov 2007 11:32:41 +0000 (GMT)\nMessage-ID: <200711201126.lAKBQLTu002109@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 112\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 11:32:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8DD2220E39\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 11:31:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAKBQLVw002111\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 06:26:21 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAKBQLTu002109\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 06:26:21 -0500\nDate: Tue, 20 Nov 2007 06:26:21 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 06:32:25 2007\nX-DSPAM-Confidence: 0.9862\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38464\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-20 06:25:59 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38464\n\nModified:\ncontent/branches/SAK-12105/content-api/api/pom.xml\ncontent/branches/SAK-12105/content-help/pom.xml\ncontent/branches/SAK-12105/content-impl/hbm/pom.xml\ncontent/branches/SAK-12105/content-impl/impl/pom.xml\ncontent/branches/SAK-12105/content-impl/pack/pom.xml\ncontent/branches/SAK-12105/content-test/pack/pom.xml\ncontent/branches/SAK-12105/content-test/pom.xml\ncontent/branches/SAK-12105/content-test/test/pom.xml\ncontent/branches/SAK-12105/content-test/tool/pom.xml\ncontent/branches/SAK-12105/content-tool/tool/pom.xml\ncontent/branches/SAK-12105/content-util/util/pom.xml\ncontent/branches/SAK-12105/pom.xml\nLog:\nSAK-12105: fixed up the pom files for SNAPSHOT\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Tue Nov 20 01:00:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 01:00:43 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 01:00:43 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby chaos.mail.umich.edu () with ESMTP id lAK60h9o012162;\n\tTue, 20 Nov 2007 01:00:43 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 47427802.9EB47.32312 ; \n\t20 Nov 2007 01:00:39 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 99F7C832AB;\n\tTue, 20 Nov 2007 06:00:33 +0000 (GMT)\nMessage-ID: <200711200554.lAK5sWrD001368@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 432\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 06:00:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E8228B08B\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 06:00:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5sW5p001370\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 00:54:32 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5sWrD001368\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:54:32 -0500\nDate: Tue, 20 Nov 2007 00:54:32 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38463 - sakai/tags/maven1build\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 01:00:43 2007\nX-DSPAM-Confidence: 0.9813\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38463\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-20 00:54:30 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38463\n\nModified:\nsakai/tags/maven1build/\nsakai/tags/maven1build/.externals\nLog:\nSAK-11341 - adding revision to external so /discussion will not fail\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Tue Nov 20 00:48:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 00:48:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 00:48:51 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby flawless.mail.umich.edu () with ESMTP id lAK5mohY003651;\n\tTue, 20 Nov 2007 00:48:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 47427539.B658E.24266 ; \n\t20 Nov 2007 00:48:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 519A5791BB;\n\tTue, 20 Nov 2007 05:48:42 +0000 (GMT)\nMessage-ID: <200711200542.lAK5gw58001323@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 96\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 05:48:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A4F7223482\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 05:48:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5gwUI001325\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 00:42:58 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5gw58001323\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:42:58 -0500\nDate: Tue, 20 Nov 2007 00:42:58 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38462 - sakai/tags/sakai_2-5-0_QA_013\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 00:48:51 2007\nX-DSPAM-Confidence: 0.9822\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38462\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-20 00:42:56 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38462\n\nModified:\nsakai/tags/sakai_2-5-0_QA_013/\nsakai/tags/sakai_2-5-0_QA_013/.externals\nLog:\nSAK-11341 - adding revision to external so /discussion will not fail\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Tue Nov 20 00:48:10 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 00:48:10 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 00:48:10 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby score.mail.umich.edu () with ESMTP id lAK5m9ca017064;\n\tTue, 20 Nov 2007 00:48:09 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 47427510.EA44A.29828 ; \n\t20 Nov 2007 00:48:05 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C5C828328F;\n\tTue, 20 Nov 2007 05:48:00 +0000 (GMT)\nMessage-ID: <200711200542.lAK5gCSU001311@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 959\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 05:47:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0C13A23482\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 05:47:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5gCKJ001313\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 00:42:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5gCSU001311\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:42:12 -0500\nDate: Tue, 20 Nov 2007 00:42:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38461 - sakai/tags/sakai_2-5-0_QA_012\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 00:48:10 2007\nX-DSPAM-Confidence: 0.9806\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38461\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-20 00:42:10 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38461\n\nModified:\nsakai/tags/sakai_2-5-0_QA_012/\nsakai/tags/sakai_2-5-0_QA_012/.externals\nLog:\nSAK-11341 - adding revision to external so /discussion will not fail\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Tue Nov 20 00:47:24 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 00:47:24 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 00:47:24 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby mission.mail.umich.edu () with ESMTP id lAK5lNOY016320;\n\tTue, 20 Nov 2007 00:47:23 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 474274DF.65C5F.27180 ; \n\t20 Nov 2007 00:47:16 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CFAF48327B;\n\tTue, 20 Nov 2007 05:47:11 +0000 (GMT)\nMessage-ID: <200711200541.lAK5fR6e001299@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 379\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 05:47:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 214AA23482\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 05:46:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5fRj8001301\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 00:41:27 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5fR6e001299\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:41:27 -0500\nDate: Tue, 20 Nov 2007 00:41:27 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38460 - sakai/tags/sakai_2-5-0_QA_011\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 00:47:24 2007\nX-DSPAM-Confidence: 0.9812\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38460\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-20 00:41:25 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38460\n\nModified:\nsakai/tags/sakai_2-5-0_QA_011/\nsakai/tags/sakai_2-5-0_QA_011/.externals\nLog:\nSAK-11341 - adding revision to external so /discussion will not fail\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Tue Nov 20 00:46:38 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 00:46:38 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 00:46:38 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby flawless.mail.umich.edu () with ESMTP id lAK5kc3f003074;\n\tTue, 20 Nov 2007 00:46:38 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 474274B2.AB818.6875 ; \n\t20 Nov 2007 00:46:32 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0586B83297;\n\tTue, 20 Nov 2007 05:46:27 +0000 (GMT)\nMessage-ID: <200711200540.lAK5egNo001287@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 512\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 05:46:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E7B5423482\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 05:46:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5egri001289\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 00:40:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5egNo001287\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:40:42 -0500\nDate: Tue, 20 Nov 2007 00:40:42 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38459 - sakai/tags/sakai_2-5-0_QA_010\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 00:46:38 2007\nX-DSPAM-Confidence: 0.9793\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38459\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-20 00:40:40 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38459\n\nModified:\nsakai/tags/sakai_2-5-0_QA_010/\nsakai/tags/sakai_2-5-0_QA_010/.externals\nLog:\nSAK-11341 - adding revision to external so /discussion will not fail\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Tue Nov 20 00:46:00 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 00:46:00 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 00:46:00 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby godsend.mail.umich.edu () with ESMTP id lAK5jxoB024890;\n\tTue, 20 Nov 2007 00:45:59 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 4742748B.CDD0A.28997 ; \n\t20 Nov 2007 00:45:53 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0C0D283298;\n\tTue, 20 Nov 2007 05:45:48 +0000 (GMT)\nMessage-ID: <200711200540.lAK5e4d9001275@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 271\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 05:45:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 67D4423482\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 05:45:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5e43f001277\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 00:40:04 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5e4d9001275\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:40:04 -0500\nDate: Tue, 20 Nov 2007 00:40:04 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38458 - sakai/tags/sakai_2-5-0_QA_009\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 00:46:00 2007\nX-DSPAM-Confidence: 0.9809\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38458\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-20 00:40:02 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38458\n\nModified:\nsakai/tags/sakai_2-5-0_QA_009/\nsakai/tags/sakai_2-5-0_QA_009/.externals\nLog:\nSAK-11341 - adding revision to external so /discussion will not fail\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Tue Nov 20 00:45:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 00:45:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 00:45:19 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby score.mail.umich.edu () with ESMTP id lAK5jJrS016280;\n\tTue, 20 Nov 2007 00:45:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 47427466.46056.30040 ; \n\t20 Nov 2007 00:45:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BBC7D831E1;\n\tTue, 20 Nov 2007 05:45:10 +0000 (GMT)\nMessage-ID: <200711200539.lAK5dQ5i001263@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 542\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 05:45:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2E6E923482\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 05:44:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5dQRt001265\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 00:39:27 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5dQ5i001263\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:39:26 -0500\nDate: Tue, 20 Nov 2007 00:39:26 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38457 - sakai/tags/sakai_2-5-0_QA_008\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 00:45:19 2007\nX-DSPAM-Confidence: 0.9827\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38457\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-20 00:39:24 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38457\n\nModified:\nsakai/tags/sakai_2-5-0_QA_008/\nsakai/tags/sakai_2-5-0_QA_008/.externals\nLog:\nSAK-11341 - adding revision to external so /discussion will not fail\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Tue Nov 20 00:44:41 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 00:44:41 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 00:44:41 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby mission.mail.umich.edu () with ESMTP id lAK5ifQc015506;\n\tTue, 20 Nov 2007 00:44:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 47427440.15371.9895 ; \n\t20 Nov 2007 00:44:36 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B27B783286;\n\tTue, 20 Nov 2007 05:44:32 +0000 (GMT)\nMessage-ID: <200711200538.lAK5cmJs001251@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 208\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 05:44:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id F119223482\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 05:44:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5cmSo001253\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 00:38:48 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5cmJs001251\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:38:48 -0500\nDate: Tue, 20 Nov 2007 00:38:48 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38456 - sakai/tags/sakai_2-5-0_QA_007\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 00:44:41 2007\nX-DSPAM-Confidence: 0.9827\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38456\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-20 00:38:46 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38456\n\nModified:\nsakai/tags/sakai_2-5-0_QA_007/\nsakai/tags/sakai_2-5-0_QA_007/.externals\nLog:\nSAK-11341 - adding revision to external so /discussion will not fail\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Tue Nov 20 00:44:22 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 00:44:22 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 00:44:22 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby faithful.mail.umich.edu () with ESMTP id lAK5iLAU004981;\n\tTue, 20 Nov 2007 00:44:21 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 4742741C.47B40.31974 ; \n\t20 Nov 2007 00:44:01 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7504E817E8;\n\tTue, 20 Nov 2007 05:43:56 +0000 (GMT)\nMessage-ID: <200711200538.lAK5c5D8001239@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 674\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 05:43:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 98EDD23482\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 05:43:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5c55b001241\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 00:38:05 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5c5D8001239\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:38:05 -0500\nDate: Tue, 20 Nov 2007 00:38:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38455 - sakai/tags/sakai_2-5-0_QA_006\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 00:44:22 2007\nX-DSPAM-Confidence: 0.9817\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38455\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-20 00:38:02 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38455\n\nModified:\nsakai/tags/sakai_2-5-0_QA_006/\nsakai/tags/sakai_2-5-0_QA_006/.externals\nLog:\nSAK-11341 - adding revision to external so /discussion will not fail\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Tue Nov 20 00:43:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 00:43:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 00:43:17 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby awakenings.mail.umich.edu () with ESMTP id lAK5hGaM026657;\n\tTue, 20 Nov 2007 00:43:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 474273E6.9D041.2558 ; \n\t20 Nov 2007 00:43:11 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 266F783288;\n\tTue, 20 Nov 2007 05:43:03 +0000 (GMT)\nMessage-ID: <200711200537.lAK5bJek001225@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 376\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 05:42:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 869C523482\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 05:42:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5bJX3001227\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 00:37:19 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5bJek001225\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:37:19 -0500\nDate: Tue, 20 Nov 2007 00:37:19 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38454 - sakai/tags/sakai_2-5-0_QA_005\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 00:43:17 2007\nX-DSPAM-Confidence: 0.9812\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38454\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-20 00:37:17 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38454\n\nModified:\nsakai/tags/sakai_2-5-0_QA_005/\nsakai/tags/sakai_2-5-0_QA_005/.externals\nLog:\nSAK-11341 - adding revision to external so /discussion will not fail\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Tue Nov 20 00:42:22 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 00:42:22 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 00:42:22 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby jacknife.mail.umich.edu () with ESMTP id lAK5gLWl021130;\n\tTue, 20 Nov 2007 00:42:21 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 474273B1.7B40B.15523 ; \n\t20 Nov 2007 00:42:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9D4828328D;\n\tTue, 20 Nov 2007 05:42:09 +0000 (GMT)\nMessage-ID: <200711200536.lAK5aPLH001213@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 785\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 05:41:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E1E5C23482\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 05:41:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5aPn5001215\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 00:36:25 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5aPLH001213\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:36:25 -0500\nDate: Tue, 20 Nov 2007 00:36:25 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38453 - sakai/tags/sakai_2-5-0_QA_004\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 00:42:22 2007\nX-DSPAM-Confidence: 0.9824\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38453\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-20 00:36:23 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38453\n\nModified:\nsakai/tags/sakai_2-5-0_QA_004/\nsakai/tags/sakai_2-5-0_QA_004/.externals\nLog:\nSAK-11341 - adding revision to external so /discussion will not fail\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Tue Nov 20 00:41:36 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 00:41:36 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 00:41:36 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby jacknife.mail.umich.edu () with ESMTP id lAK5fZrb020972;\n\tTue, 20 Nov 2007 00:41:35 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 47427380.B4D7C.28162 ; \n\t20 Nov 2007 00:41:30 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id F13BD83273;\n\tTue, 20 Nov 2007 05:41:20 +0000 (GMT)\nMessage-ID: <200711200535.lAK5Zbfp001200@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 351\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 05:41:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 82A1C23482\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 05:41:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5Zb6e001202\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 00:35:37 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5Zbfp001200\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:35:37 -0500\nDate: Tue, 20 Nov 2007 00:35:37 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38452 - sakai/tags/sakai_2-5-0_QA_003\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 00:41:36 2007\nX-DSPAM-Confidence: 0.9815\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38452\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-20 00:35:35 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38452\n\nModified:\nsakai/tags/sakai_2-5-0_QA_003/\nsakai/tags/sakai_2-5-0_QA_003/.externals\nLog:\nSAK-11341 - adding revision to external so /discussion will not fail\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Tue Nov 20 00:40:47 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 00:40:47 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 00:40:47 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby brazil.mail.umich.edu () with ESMTP id lAK5ekvW028929;\n\tTue, 20 Nov 2007 00:40:46 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 47427353.71697.438 ; \n\t20 Nov 2007 00:40:41 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3F33C83285;\n\tTue, 20 Nov 2007 05:40:35 +0000 (GMT)\nMessage-ID: <200711200534.lAK5YptE001188@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 175\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 05:40:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 980A423482\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 05:40:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5YpqD001190\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 00:34:51 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5YptE001188\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:34:51 -0500\nDate: Tue, 20 Nov 2007 00:34:51 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38451 - sakai/tags/sakai_2-5-0_QA_002\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 00:40:47 2007\nX-DSPAM-Confidence: 0.9819\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38451\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-20 00:34:49 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38451\n\nModified:\nsakai/tags/sakai_2-5-0_QA_002/\nsakai/tags/sakai_2-5-0_QA_002/.externals\nLog:\nSAK-11341 - adding revision to external so /discussion will not fail\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Tue Nov 20 00:39:40 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 00:39:40 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 00:39:40 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby chaos.mail.umich.edu () with ESMTP id lAK5depk006714;\n\tTue, 20 Nov 2007 00:39:40 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 47427310.C6944.25053 ; \n\t20 Nov 2007 00:39:34 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DFAF783260;\n\tTue, 20 Nov 2007 05:39:28 +0000 (GMT)\nMessage-ID: <200711200533.lAK5XckH001169@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 905\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 05:39:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6395024F00\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 05:39:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5Xc57001171\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 00:33:38 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5XckH001169\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:33:38 -0500\nDate: Tue, 20 Nov 2007 00:33:38 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38450 - sakai/tags/sakai_2-5-0_QA_001\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 00:39:40 2007\nX-DSPAM-Confidence: 0.9813\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38450\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-20 00:33:36 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38450\n\nModified:\nsakai/tags/sakai_2-5-0_QA_001/\nsakai/tags/sakai_2-5-0_QA_001/.externals\nLog:\nSAK-11341 - adding revision to external so /discussion will not fail\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Tue Nov 20 00:38:29 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 00:38:29 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 00:38:29 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby jacknife.mail.umich.edu () with ESMTP id lAK5cSrl019956;\n\tTue, 20 Nov 2007 00:38:28 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 474272C9.63691.19732 ; \n\t20 Nov 2007 00:38:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9087F83277;\n\tTue, 20 Nov 2007 05:38:15 +0000 (GMT)\nMessage-ID: <200711200532.lAK5WNHu001156@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 542\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 05:37:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D4FED23482\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 05:37:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5WNXf001158\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 00:32:23 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5WNHu001156\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:32:23 -0500\nDate: Tue, 20 Nov 2007 00:32:23 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38449 - sakai/tags/sakai_2-4-1\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 00:38:29 2007\nX-DSPAM-Confidence: 0.9809\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38449\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-20 00:32:21 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38449\n\nModified:\nsakai/tags/sakai_2-4-1/\nsakai/tags/sakai_2-4-1/.externals\nLog:\nSAK-11341 - adding revision to external so /discussion will not fail\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Tue Nov 20 00:38:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 00:38:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 00:38:17 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby faithful.mail.umich.edu () with ESMTP id lAK5cGIc003306;\n\tTue, 20 Nov 2007 00:38:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 474271FF.63557.17822 ; \n\t20 Nov 2007 00:35:01 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 845028326A;\n\tTue, 20 Nov 2007 05:34:46 +0000 (GMT)\nMessage-ID: <200711200528.lAK5SrTf001118@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 951\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 05:34:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CF1F723482\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 05:34:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5SrCv001120\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 00:28:53 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5SrTf001118\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:28:53 -0500\nDate: Tue, 20 Nov 2007 00:28:53 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38447 - sakai/tags/sakai_2-3-2_QA_001\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 00:38:17 2007\nX-DSPAM-Confidence: 0.8439\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38447\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-20 00:28:51 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38447\n\nModified:\nsakai/tags/sakai_2-3-2_QA_001/\nsakai/tags/sakai_2-3-2_QA_001/.externals\nLog:\nSAK-11341 - adding revision to external so /discussion will not fail\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Tue Nov 20 00:37:16 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 00:37:16 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 00:37:16 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby flawless.mail.umich.edu () with ESMTP id lAK5bGHJ032607;\n\tTue, 20 Nov 2007 00:37:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 4742724D.7C390.14501 ; \n\t20 Nov 2007 00:36:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6000D83083;\n\tTue, 20 Nov 2007 05:36:13 +0000 (GMT)\nMessage-ID: <200711200530.lAK5UHZg001144@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 185\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 05:35:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AF65823482\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 05:35:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5UHCp001146\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 00:30:17 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5UHZg001144\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:30:17 -0500\nDate: Tue, 20 Nov 2007 00:30:17 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38448 - sakai/tags/sakai_2-4-0\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 00:37:16 2007\nX-DSPAM-Confidence: 0.7544\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38448\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-20 00:30:15 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38448\n\nModified:\nsakai/tags/sakai_2-4-0/\nsakai/tags/sakai_2-4-0/.externals\nLog:\nSAK-11341 - adding revision to external so /discussion will not fail\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Tue Nov 20 00:32:41 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 20 Nov 2007 00:32:41 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 20 Nov 2007 00:32:41 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby brazil.mail.umich.edu () with ESMTP id lAK5WeD5026512;\n\tTue, 20 Nov 2007 00:32:40 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 47427166.ED06B.25559 ; \n\t20 Nov 2007 00:32:32 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1589378E0E;\n\tTue, 20 Nov 2007 05:32:18 +0000 (GMT)\nMessage-ID: <200711200526.lAK5QNSb001098@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 874\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 05:31:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 12EF724E00\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 05:31:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK5QOxP001100\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 00:26:24 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK5QNSb001098\n\tfor source@collab.sakaiproject.org; Tue, 20 Nov 2007 00:26:23 -0500\nDate: Tue, 20 Nov 2007 00:26:23 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38446 - sakai/tags/sakai_2-3-2\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 20 00:32:41 2007\nX-DSPAM-Confidence: 0.9816\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38446\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-20 00:26:20 -0500 (Tue, 20 Nov 2007)\nNew Revision: 38446\n\nModified:\nsakai/tags/sakai_2-3-2/\nsakai/tags/sakai_2-3-2/.externals\nLog:\nSAK-11341 - adding revision to external so /discussion will not fail\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Mon Nov 19 19:16:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 19:16:37 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 19:16:37 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby casino.mail.umich.edu () with ESMTP id lAK0GZlx004846;\n\tMon, 19 Nov 2007 19:16:35 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4742275D.9D08C.23776 ; \n\t19 Nov 2007 19:16:32 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 70577823D5;\n\tTue, 20 Nov 2007 00:13:27 +0000 (GMT)\nMessage-ID: <200711200010.lAK0AlrT000838@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 689\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 00:13:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9FB2024F92\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 00:16:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK0AlDU000840\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 19:10:47 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK0AlrT000838\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 19:10:47 -0500\nDate: Mon, 19 Nov 2007 19:10:47 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38445 - util/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 19:16:37 2007\nX-DSPAM-Confidence: 0.9880\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38445\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-19 19:10:43 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38445\n\nAdded:\nutil/branches/SAK-12239/\nLog:\nSAK-12339\nCreating branch in util for work on porting content performance improvements from 2.5.x to 2.4.x\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Mon Nov 19 19:15:45 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 19:15:45 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 19:15:44 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby sleepers.mail.umich.edu () with ESMTP id lAK0Fi3c028088;\n\tMon, 19 Nov 2007 19:15:44 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 47422729.E1EB0.32048 ; \n\t19 Nov 2007 19:15:40 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DA48582E1E;\n\tTue, 20 Nov 2007 00:12:35 +0000 (GMT)\nMessage-ID: <200711200009.lAK09fHr000826@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 730\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 00:12:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B397E24F92\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 00:15:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK09fAZ000828\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 19:09:41 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK09fHr000826\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 19:09:41 -0500\nDate: Mon, 19 Nov 2007 19:09:41 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38444 - entity/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 19:15:44 2007\nX-DSPAM-Confidence: 0.9866\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38444\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-19 19:09:38 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38444\n\nAdded:\nentity/branches/SAK-12239/\nLog:\nSAK-12339\nCreating branch in entity for work on porting content performance improvements from 2.5.x to 2.4.x\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Mon Nov 19 19:14:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 19:14:53 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 19:14:52 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby score.mail.umich.edu () with ESMTP id lAK0EqVL019445;\n\tMon, 19 Nov 2007 19:14:52 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 474226F4.4AC97.30900 ; \n\t19 Nov 2007 19:14:47 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2E7CC823D5;\n\tTue, 20 Nov 2007 00:11:42 +0000 (GMT)\nMessage-ID: <200711200008.lAK08r39000813@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 639\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 00:11:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2678C24F92\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 00:14:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK08rpi000815\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 19:08:53 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK08r39000813\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 19:08:53 -0500\nDate: Mon, 19 Nov 2007 19:08:53 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38443 - db/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 19:14:52 2007\nX-DSPAM-Confidence: 0.9887\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38443\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-19 19:08:49 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38443\n\nAdded:\ndb/branches/SAK-12239/\nLog:\nSAK-12339\nCreating branch in db for work on porting content performance improvements from 2.5.x to 2.4.x\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Mon Nov 19 19:14:11 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 19:14:11 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 19:14:11 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby sleepers.mail.umich.edu () with ESMTP id lAK0EB82027463;\n\tMon, 19 Nov 2007 19:14:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 474226C7.3987F.20779 ; \n\t19 Nov 2007 19:14:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5BA5D82E4A;\n\tTue, 20 Nov 2007 00:10:57 +0000 (GMT)\nMessage-ID: <200711200008.lAK089Hg000800@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 199\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 00:10:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A9DC724F92\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 00:13:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK089Kg000802\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 19:08:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK089Hg000800\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 19:08:09 -0500\nDate: Mon, 19 Nov 2007 19:08:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38442 - content/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 19:14:11 2007\nX-DSPAM-Confidence: 0.9864\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38442\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-19 19:08:05 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38442\n\nAdded:\ncontent/branches/SAK-12239/\nLog:\nSAK-12339\nCreating branch in content for work on porting content performance improvements from 2.5.x to 2.4.x\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Mon Nov 19 19:13:20 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 19:13:20 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 19:13:20 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby awakenings.mail.umich.edu () with ESMTP id lAK0DJci031963;\n\tMon, 19 Nov 2007 19:13:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 4742269A.37DCE.24404 ; \n\t19 Nov 2007 19:13:17 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2BE5382EBC;\n\tTue, 20 Nov 2007 00:10:11 +0000 (GMT)\nMessage-ID: <200711200007.lAK07Gdd000788@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1021\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 00:09:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1125824F92\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 00:12:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK07Gog000790\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 19:07:16 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK07Gdd000788\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 19:07:16 -0500\nDate: Mon, 19 Nov 2007 19:07:16 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38441 - entity/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 19:13:20 2007\nX-DSPAM-Confidence: 0.9828\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38441\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-19 19:07:13 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38441\n\nRemoved:\nentity/branches/SAK-12239/\nLog:\nSAK-12239\nCopied wrong branch\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Mon Nov 19 19:12:49 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 19:12:49 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 19:12:49 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby jacknife.mail.umich.edu () with ESMTP id lAK0CnOY031891;\n\tMon, 19 Nov 2007 19:12:49 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4742267B.8EB1F.15117 ; \n\t19 Nov 2007 19:12:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 919A4823D5;\n\tTue, 20 Nov 2007 00:09:41 +0000 (GMT)\nMessage-ID: <200711200006.lAK06ibE000776@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 317\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 00:09:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EB26824F92\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 00:12:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK06iUj000778\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 19:06:44 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK06ibE000776\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 19:06:44 -0500\nDate: Mon, 19 Nov 2007 19:06:44 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38440 - db/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 19:12:49 2007\nX-DSPAM-Confidence: 0.8470\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38440\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-19 19:06:41 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38440\n\nRemoved:\ndb/branches/SAK-12239/\nLog:\nSAK-12239\nCopied wrong branch\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Mon Nov 19 19:12:18 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 19:12:18 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 19:12:18 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby jacknife.mail.umich.edu () with ESMTP id lAK0CHo2031625;\n\tMon, 19 Nov 2007 19:12:17 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 4742265A.47DD.493 ; \n\t19 Nov 2007 19:12:12 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 143C382E1E;\n\tTue, 20 Nov 2007 00:09:08 +0000 (GMT)\nMessage-ID: <200711200006.lAK068pI000764@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 632\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 00:08:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 66EFE24F95\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 00:11:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK069HD000766\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 19:06:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK068pI000764\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 19:06:08 -0500\nDate: Mon, 19 Nov 2007 19:06:08 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38439 - content/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 19:12:18 2007\nX-DSPAM-Confidence: 0.8475\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38439\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-19 19:06:06 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38439\n\nRemoved:\ncontent/branches/SAK-12239/\nLog:\nSAK-12239\nCopied wrong version\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Mon Nov 19 19:08:32 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 19:08:32 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 19:08:33 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby fan.mail.umich.edu () with ESMTP id lAK08WAE028396;\n\tMon, 19 Nov 2007 19:08:32 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 47422579.22F02.30053 ; \n\t19 Nov 2007 19:08:27 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0071E82EC9;\n\tTue, 20 Nov 2007 00:05:21 +0000 (GMT)\nMessage-ID: <200711200002.lAK02Woe000752@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 169\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 00:04:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 68C9924F6F\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 00:08:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAK02WOr000754\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 19:02:32 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAK02Woe000752\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 19:02:32 -0500\nDate: Mon, 19 Nov 2007 19:02:32 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38438 - entity/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 19:08:33 2007\nX-DSPAM-Confidence: 0.9872\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38438\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-19 19:02:29 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38438\n\nAdded:\nentity/branches/SAK-12239/\nLog:\nSAK-12339\nCreating branch in entity for work on porting content performance improvements from 2.5.x to 2.4.x\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Mon Nov 19 19:05:49 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 19:05:49 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 19:05:49 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby brazil.mail.umich.edu () with ESMTP id lAK05mNO023204;\n\tMon, 19 Nov 2007 19:05:48 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 474224D5.C9862.27169 ; \n\t19 Nov 2007 19:05:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C1B3A82EAB;\n\tTue, 20 Nov 2007 00:01:51 +0000 (GMT)\nMessage-ID: <200711192359.lAJNxWi7000732@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 331\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 00:01:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BD923235A2\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 00:05:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJNxWw4000734\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 18:59:32 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJNxWi7000732\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 18:59:32 -0500\nDate: Mon, 19 Nov 2007 18:59:32 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38437 - db/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 19:05:49 2007\nX-DSPAM-Confidence: 0.8496\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38437\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-19 18:59:29 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38437\n\nAdded:\ndb/branches/SAK-12239/\nLog:\nSAK-12239\nAdded 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).\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Mon Nov 19 19:04:56 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 19:04:56 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 19:04:56 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby chaos.mail.umich.edu () with ESMTP id lAK04tW6019940;\n\tMon, 19 Nov 2007 19:04:55 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4742249C.C777F.10579 ; \n\t19 Nov 2007 19:04:49 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C199382EA6;\n\tTue, 20 Nov 2007 00:01:00 +0000 (GMT)\nMessage-ID: <200711192356.lAJNuII6000717@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 242\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 00:00:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C296024F84\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 00:01:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJNuI90000719\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 18:56:18 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJNuII6000717\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 18:56:18 -0500\nDate: Mon, 19 Nov 2007 18:56:18 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38436 - content/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 19:04:56 2007\nX-DSPAM-Confidence: 0.8471\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38436\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-19 18:56:12 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38436\n\nAdded:\ncontent/branches/SAK-12239/\nLog:\nSAK-12239\nCreating branch for work on porting 2.5.x content schema changes to sakai 2.4.x\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom john.ellis@rsmart.com Mon Nov 19 19:04:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 19:04:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 19:04:51 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby mission.mail.umich.edu () with ESMTP id lAK04ogB012495;\n\tMon, 19 Nov 2007 19:04:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 47422499.14FE9.21356 ; \n\t19 Nov 2007 19:04:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CF11782EA9;\n\tTue, 20 Nov 2007 00:00:54 +0000 (GMT)\nMessage-ID: <200711192354.lAJNstgk000684@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 979\n          for <source@collab.sakaiproject.org>;\n          Tue, 20 Nov 2007 00:00:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5468924F81\n\tfor <source@collab.sakaiproject.org>; Tue, 20 Nov 2007 00:00:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJNstD5000686\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 18:54:56 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJNstgk000684\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 18:54:55 -0500\nDate: Mon, 19 Nov 2007 18:54:55 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to john.ellis@rsmart.com using -f\nTo: source@collab.sakaiproject.org\nFrom: john.ellis@rsmart.com\nSubject: [sakai] svn commit: r38435 - osp/trunk/xsltcharon/xsltcharon-portal/xsl-portal/src/java/org/sakaiproject/portal/xsltcharon/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 19:04:51 2007\nX-DSPAM-Confidence: 0.9774\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38435\n\nAuthor: john.ellis@rsmart.com\nDate: 2007-11-19 18:54:53 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38435\n\nModified:\nosp/trunk/xsltcharon/xsltcharon-portal/xsl-portal/src/java/org/sakaiproject/portal/xsltcharon/impl/XsltRenderContext.java\nLog:\nSAK-12238\nadded code to check for null items in a list of configurations\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Nov 19 17:16:10 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 17:16:10 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 17:16:10 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby chaos.mail.umich.edu () with ESMTP id lAJMG9GD031469;\n\tMon, 19 Nov 2007 17:16:09 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 47420B22.739EE.15882 ; \n\t19 Nov 2007 17:16:05 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 384AC82A64;\n\tMon, 19 Nov 2007 22:16:10 +0000 (GMT)\nMessage-ID: <200711192210.lAJMAGK8000444@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1022\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 22:15:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 85DAA24C8D\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 22:15:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJMAGPF000446\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 17:10:16 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJMAGK8000444\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 17:10:16 -0500\nDate: Mon, 19 Nov 2007 17:10:16 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38431 - gradebook/branches/sakai_2-5-x/service/hibernate/src/java/org/sakaiproject/tool/gradebook\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 17:16:10 2007\nX-DSPAM-Confidence: 0.7621\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38431\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-19 17:10:15 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38431\n\nModified:\ngradebook/branches/sakai_2-5-x/service/hibernate/src/java/org/sakaiproject/tool/gradebook/CourseGradeRecord.java\nLog:\nsvn merge -r 37925:37926 https://source.sakaiproject.org/svn/gradebook/trunk\nU    service/hibernate/src/java/org/sakaiproject/tool/gradebook/CourseGradeRecord.java\nin-143-196:~/java/2-5/sakai_2-5-x/gradebook mmmay$ svn log -r 37925:37926 https://source.sakaiproject.org/svn/gradebook/trunk\n------------------------------------------------------------------------\nr37926 | rjlowe@iupui.edu | 2007-11-07 09:39:25 -0500 (Wed, 07 Nov 2007) | 4 lines\n\nSAK-12017\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12017\nGB / \"All Grades\" sort by course grade\nFails when you have a student with a null course grade record - Fixed\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Nov 19 17:12:20 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 17:12:20 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 17:12:20 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby faithful.mail.umich.edu () with ESMTP id lAJMCJ4j017167;\n\tMon, 19 Nov 2007 17:12:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 47420A3C.7D943.14120 ; \n\t19 Nov 2007 17:12:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 453877E096;\n\tMon, 19 Nov 2007 22:12:22 +0000 (GMT)\nMessage-ID: <200711192206.lAJM6SJj000419@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1006\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 22:12:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1B0C024C8D\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 22:11:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJM6SYv000421\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 17:06:28 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJM6SJj000419\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 17:06:28 -0500\nDate: Mon, 19 Nov 2007 17:06:28 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38430 - gradebook/branches/sakai_2-5-x/service/hibernate/src/java/org/sakaiproject/tool/gradebook\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 17:12:20 2007\nX-DSPAM-Confidence: 0.7617\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38430\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-19 17:06:27 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38430\n\nModified:\ngradebook/branches/sakai_2-5-x/service/hibernate/src/java/org/sakaiproject/tool/gradebook/CourseGradeRecord.java\nLog:\nsvn merge -r 37165:37166 https://source.sakaiproject.org/svn/gradebook/trunk\nU    service/hibernate/src/java/org/sakaiproject/tool/gradebook/CourseGradeRecord.java\nin-143-196:~/java/2-5/sakai_2-5-x/gradebook mmmay$ svn log -r 37165:37166 https://source.sakaiproject.org/svn/gradebook/trunk\n------------------------------------------------------------------------\nr37166 | rjlowe@iupui.edu | 2007-10-22 13:31:36 -0400 (Mon, 22 Oct 2007) | 3 lines\n\nSAK-12017\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12017\nGB / \"All Grades\" sort by course grade\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Nov 19 17:10:28 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 17:10:28 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 17:10:28 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby jacknife.mail.umich.edu () with ESMTP id lAJMARZf002957;\n\tMon, 19 Nov 2007 17:10:27 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 474209CB.59213.4825 ; \n\t19 Nov 2007 17:10:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8A31A790EF;\n\tMon, 19 Nov 2007 22:10:26 +0000 (GMT)\nMessage-ID: <200711192204.lAJM4WPr000407@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 556\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 22:10:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3EAF024C8D\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 22:10:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJM4WKi000409\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 17:04:32 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJM4WPr000407\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 17:04:32 -0500\nDate: Mon, 19 Nov 2007 17:04:32 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38429 - gradebook/branches/sakai_2-5-x/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 17:10:28 2007\nX-DSPAM-Confidence: 0.6566\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38429\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-19 17:04:31 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38429\n\nModified:\ngradebook/branches/sakai_2-5-x/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\nLog:\nsvn merge -r 38078:38079 https://source.sakaiproject.org/svn/gradebook/trunk\nU    app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\nin-143-196:~/java/2-5/sakai_2-5-x/gradebook mmmay$ svn log -r 38078:38079 https://source.sakaiproject.org/svn/gradebook/trunk\n------------------------------------------------------------------------\nr38079 | cwen@iupui.edu | 2007-11-09 14:43:01 -0500 (Fri, 09 Nov 2007) | 5 lines\n\nhttp://128.196.219.68/jira/browse/SAK-12163\nSAK-12163\n=>\nhttps://uisapp2.iu.edu/jira/browse/ONC-233\nexceptions thrown while attempting to rename the gradebook item.\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Nov 19 17:08:35 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 17:08:35 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 17:08:35 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby fan.mail.umich.edu () with ESMTP id lAJM8Y54000415;\n\tMon, 19 Nov 2007 17:08:34 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 47420958.6647B.29891 ; \n\t19 Nov 2007 17:08:27 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8268B82A64;\n\tMon, 19 Nov 2007 22:08:33 +0000 (GMT)\nMessage-ID: <200711192202.lAJM2Y8J000384@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 286\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 22:08:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 40BBA24C8D\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 22:08:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJM2Y9q000386\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 17:02:34 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJM2Y8J000384\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 17:02:34 -0500\nDate: Mon, 19 Nov 2007 17:02:34 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38428 - gradebook/branches/sakai_2-5-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 17:08:35 2007\nX-DSPAM-Confidence: 0.6192\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38428\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-19 17:02:33 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38428\n\nModified:\ngradebook/branches/sakai_2-5-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/SpreadsheetUploadBean.java\nLog:\nsvn merge -r 37822:37823 https://source.sakaiproject.org/svn/gradebook/trunk\nU    app/ui/src/java/org/sakaiproject/tool/gradebook/ui/SpreadsheetUploadBean.java\nin-143-196:~/java/2-5/sakai_2-5-x/gradebook mmmay$ svn log -r 37822:37823 https://source.sakaiproject.org/svn/gradebook/trunk\n------------------------------------------------------------------------\nr37823 | josrodri@iupui.edu | 2007-11-06 16:40:05 -0500 (Tue, 06 Nov 2007) | 3 lines\n\nSAK-12133: spreadsheet item add, if item already exists but no points possible is in spreadsheet for that item, just keep current value\n\nSAK-9762: added an init() method to do code currently processed in constructor. Kept an empty constructor for easy backing out.\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ktsao@stanford.edu Mon Nov 19 17:01:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 17:01:50 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 17:01:50 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby panther.mail.umich.edu () with ESMTP id lAJM1n0K005742;\n\tMon, 19 Nov 2007 17:01:49 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 474207C1.6DD2D.17865 ; \n\t19 Nov 2007 17:01:40 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B6A1A82DD9;\n\tMon, 19 Nov 2007 22:01:46 +0000 (GMT)\nMessage-ID: <200711192155.lAJLtsAt000370@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 88\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 22:01:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 47E1F24DE5\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 22:01:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJLtsqm000372\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 16:55:54 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJLtsAt000370\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 16:55:54 -0500\nDate: Mon, 19 Nov 2007 16:55:54 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ktsao@stanford.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ktsao@stanford.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 17:01:50 2007\nX-DSPAM-Confidence: 0.9816\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38427\n\nAuthor: ktsao@stanford.edu\nDate: 2007-11-19 16:55:42 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38427\n\nModified:\nsam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/TotalScoreListener.java\nsam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/evaluation/TotalScoreUpdateListener.java\nsam/trunk/samigo-app/src/webapp/jsf/evaluation/totalScores.jsp\nsam/trunk/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacadeQueries.java\nsam/trunk/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacadeQueriesAPI.java\nsam/trunk/samigo-services/src/java/org/sakaiproject/tool/assessment/services/GradingService.java\nLog:\nSAK-12098\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Mon Nov 19 16:19:46 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 16:19:46 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 16:19:45 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby awakenings.mail.umich.edu () with ESMTP id lAJLJjM7002981;\n\tMon, 19 Nov 2007 16:19:45 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4741FDE7.703D8.13966 ; \n\t19 Nov 2007 16:19:39 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D28747380A;\n\tMon, 19 Nov 2007 21:19:34 +0000 (GMT)\nMessage-ID: <200711192113.lAJLDgwj032711@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 476\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 21:19:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B3988213D6\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 21:19:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJLDgPm032713\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 16:13:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJLDgwj032711\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 16:13:42 -0500\nDate: Mon, 19 Nov 2007 16:13:42 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38426 - content/trunk\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 16:19:45 2007\nX-DSPAM-Confidence: 0.9870\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38426\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-19 16:13:41 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38426\n\nAdded:\ncontent/trunk/readme.txt\nLog:\nSAK-12235\nAdded readme file for conversion script\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Mon Nov 19 16:03:47 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 16:03:47 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 16:03:47 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby casino.mail.umich.edu () with ESMTP id lAJL3kZo020571;\n\tMon, 19 Nov 2007 16:03:46 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 4741FA2A.BB47F.19742 ; \n\t19 Nov 2007 16:03:43 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 67EDE8142E;\n\tMon, 19 Nov 2007 21:03:27 +0000 (GMT)\nMessage-ID: <200711192057.lAJKvbvt032664@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 762\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 21:03:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0B2CB24C93\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 21:03:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJKvbx7032666\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 15:57:37 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJKvbvt032664\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 15:57:37 -0500\nDate: Mon, 19 Nov 2007 15:57:37 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38425 - content/trunk\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 16:03:47 2007\nX-DSPAM-Confidence: 0.8441\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38425\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-19 15:57:36 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38425\n\nModified:\ncontent/trunk/upgradeschema-oracle.config\nLog:\nSAK-12235\nChanged query to verify existence of required (new) columns for oracle\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Mon Nov 19 15:49:56 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 15:49:56 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 15:49:56 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby fan.mail.umich.edu () with ESMTP id lAJKntCa017659;\n\tMon, 19 Nov 2007 15:49:55 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4741F6EB.5034C.24801 ; \n\t19 Nov 2007 15:49:51 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BE37482D53;\n\tMon, 19 Nov 2007 20:46:43 +0000 (GMT)\nMessage-ID: <200711192043.lAJKho8K032636@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 712\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 20:46:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AFFA6213DF\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 20:49:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJKhoS9032638\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 15:43:50 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJKho8K032636\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 15:43:50 -0500\nDate: Mon, 19 Nov 2007 15:43:50 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38424 - in content/trunk: . content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 15:49:56 2007\nX-DSPAM-Confidence: 0.9907\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38424\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-19 15:43:47 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38424\n\nAdded:\ncontent/trunk/runconversion.sh\ncontent/trunk/upgradeschema-mysql.config\ncontent/trunk/upgradeschema-oracle.config\nModified:\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/upgradeschema.config\nLog:\nSAK-12235\nAdded indexes to register tables in the mysql conversion config for content.\nCopies the mysql config and modified it for oracle.\nProvided a runconversion.sh shellscript file at the root of the content directory.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Mon Nov 19 15:05:26 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 15:05:26 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 15:05:27 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby casino.mail.umich.edu () with ESMTP id lAJK5Pr8009185;\n\tMon, 19 Nov 2007 15:05:25 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 4741EC7D.77615.11766 ; \n\t19 Nov 2007 15:05:22 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8E75675351;\n\tMon, 19 Nov 2007 20:05:06 +0000 (GMT)\nMessage-ID: <200711191959.lAJJxJQx032584@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 581\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 20:04:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 94B42236AC\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 20:04:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJJxJPw032586\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 14:59:19 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJJxJQx032584\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 14:59:19 -0500\nDate: Mon, 19 Nov 2007 14:59:19 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r38423 - oncourse/trunk/src/jobscheduler/scheduler-component-shared/src/java/org/sakaiproject/component/app/scheduler/jobs\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 15:05:27 2007\nX-DSPAM-Confidence: 0.8440\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38423\n\nAuthor: cwen@iupui.edu\nDate: 2007-11-19 14:59:18 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38423\n\nModified:\noncourse/trunk/src/jobscheduler/scheduler-component-shared/src/java/org/sakaiproject/component/app/scheduler/jobs/AddFinalGradesToolJob.java\nLog:\nchange back AddFinalGradesToolJob to add our FGGB tool.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Nov 19 14:58:32 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 14:58:32 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 14:58:32 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby godsend.mail.umich.edu () with ESMTP id lAJJwVZZ013458;\n\tMon, 19 Nov 2007 14:58:31 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4741EADE.67E64.14475 ; \n\t19 Nov 2007 14:58:27 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 11CB182928;\n\tMon, 19 Nov 2007 19:58:16 +0000 (GMT)\nMessage-ID: <200711191952.lAJJqQ9M032572@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 313\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 19:57:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BE84F236AC\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 19:57:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJJqQlK032574\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 14:52:26 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJJqQ9M032572\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 14:52:26 -0500\nDate: Mon, 19 Nov 2007 14:52:26 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38422 - metaobj/branches/sakai_2-5-x/metaobj-util/tool-lib/src/java/org/sakaiproject/metaobj/utils/xml\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 14:58:32 2007\nX-DSPAM-Confidence: 0.6516\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38422\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-19 14:52:25 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38422\n\nModified:\nmetaobj/branches/sakai_2-5-x/metaobj-util/tool-lib/src/java/org/sakaiproject/metaobj/utils/xml/ResourceUriResolver.java\nLog:\nsvn merge -r 38222:38223 https://source.sakaiproject.org/svn/metaobj/trunk\nU    metaobj-util/tool-lib/src/java/org/sakaiproject/metaobj/utils/xml/ResourceUriResolver.java\nin-143-196:~/java/2-5/sakai_2-5-x/metaobj mmmay$ svn log -r 38222:38223 https://source.sakaiproject.org/svn/metaobj/trunk------------------------------------------------------------------------\nr38223 | john.ellis@rsmart.com | 2007-11-15 18:09:31 -0500 (Thu, 15 Nov 2007) | 3 lines\n\nSAK-12218\nadded code to properly deal with external urls\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Mon Nov 19 14:47:08 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 14:47:08 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 14:47:08 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby mission.mail.umich.edu () with ESMTP id lAJJl8au021322;\n\tMon, 19 Nov 2007 14:47:08 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 4741E832.D1AD3.10163 ; \n\t19 Nov 2007 14:47:04 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 95C1182928;\n\tMon, 19 Nov 2007 19:46:00 +0000 (GMT)\nMessage-ID: <200711191941.lAJJf7C9032546@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 455\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 19:45:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1846E24F22\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 19:46:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJJf7QN032548\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 14:41:07 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJJf7C9032546\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 14:41:07 -0500\nDate: Mon, 19 Nov 2007 14:41:07 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38421 - in assignment/trunk: . assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 14:47:08 2007\nX-DSPAM-Confidence: 0.8491\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38421\n\nAuthor: zqian@umich.edu\nDate: 2007-11-19 14:41:04 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38421\n\nModified:\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/upgradeschema.config\nassignment/trunk/upgradeschema_mysql.config\nLog:\nfix to SAK-12210: complex subselect lethal on mysql\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Nov 19 14:07:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 14:07:50 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 14:07:50 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby mission.mail.umich.edu () with ESMTP id lAJJ7nmN022042;\n\tMon, 19 Nov 2007 14:07:49 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 4741DEFA.7A7E8.6216 ; \n\t19 Nov 2007 14:07:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9179B75867;\n\tMon, 19 Nov 2007 19:07:45 +0000 (GMT)\nMessage-ID: <200711191901.lAJJ1qT1032456@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 425\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 19:07:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AFCD1235DF\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 19:07:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJJ1qgo032458\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 14:01:52 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJJ1qT1032456\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 14:01:52 -0500\nDate: Mon, 19 Nov 2007 14:01:52 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38420 - memory/branches/sakai_2-5-x/memory-impl/impl/src/java/org/sakaiproject/memory/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 14:07:50 2007\nX-DSPAM-Confidence: 0.6528\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38420\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-19 14:01:51 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38420\n\nModified:\nmemory/branches/sakai_2-5-x/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MultiRefCacheImpl.java\nLog:\nsvn merge -r 38242:38243 https://source.sakaiproject.org/svn/memory/trunk\nU    memory-impl/impl/src/java/org/sakaiproject/memory/impl/MultiRefCacheImpl.java\nin-143-196:~/java/2-5/sakai_2-5-x/memory mmmay$ svn log -r 38242:38243 https://source.sakaiproject.org/svn/memory/trunk\n------------------------------------------------------------------------\nr38243 | ian@caret.cam.ac.uk | 2007-11-16 12:44:00 -0500 (Fri, 16 Nov 2007) | 9 lines\n\nhttp://jira.sakaiproject.org/jira/browse/SAK-12116\nFixed\n\nNow using thread safe iterator mechanism. (I hope)\n\nTested locally with no problems.\n\n\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Nov 19 14:07:04 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 14:07:04 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 14:07:04 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby panther.mail.umich.edu () with ESMTP id lAJJ72QR020837;\n\tMon, 19 Nov 2007 14:07:02 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 4741DEB0.CFDBB.32458 ; \n\t19 Nov 2007 14:06:30 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5DE5082950;\n\tMon, 19 Nov 2007 19:06:08 +0000 (GMT)\nMessage-ID: <200711191900.lAJJ09pr032442@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 416\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 19:05:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E9EA7235DF\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 19:05:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJJ09eX032444\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 14:00:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJJ09pr032442\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 14:00:09 -0500\nDate: Mon, 19 Nov 2007 14:00:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38419 - osp/branches/sakai_2-5-x/matrix/api-impl/src/java/org/theospi/portfolio/matrix\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 14:07:04 2007\nX-DSPAM-Confidence: 0.6566\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38419\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-19 14:00:08 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38419\n\nModified:\nosp/branches/sakai_2-5-x/matrix/api-impl/src/java/org/theospi/portfolio/matrix/HibernateMatrixManagerImpl.java\nLog:\nsvn merge -r 38241:38242 https://source.sakaiproject.org/svn/osp/trunk\nU    matrix/api-impl/src/java/org/theospi/portfolio/matrix/HibernateMatrixManagerImpl.java\nin-143-196:~/java/2-5/sakai_2-5-x/osp mmmay$ svn log -r 38241:38242 https://source.sakaiproject.org/svn/osp/trunk\n------------------------------------------------------------------------\nr38242 | bkirschn@umich.edu | 2007-11-16 12:32:25 -0500 (Fri, 16 Nov 2007) | 1 line\n\nSAK-12198 fix crash when attachments/artifacts are hidden\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Nov 19 14:01:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 14:01:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 14:01:25 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby score.mail.umich.edu () with ESMTP id lAJJ1Oxk024929;\n\tMon, 19 Nov 2007 14:01:24 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4741DD7A.88767.28471 ; \n\t19 Nov 2007 14:01:20 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B07C1820A0;\n\tMon, 19 Nov 2007 18:53:45 +0000 (GMT)\nMessage-ID: <200711191855.lAJItVZ3032428@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 760\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 18:53:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D83C7235D6\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 19:00:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJItVir032430\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 13:55:31 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJItVZ3032428\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 13:55:31 -0500\nDate: Mon, 19 Nov 2007 13:55:31 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38418 - osp/branches/sakai_2-5-x/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 14:01:25 2007\nX-DSPAM-Confidence: 0.7620\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38418\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-19 13:55:30 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38418\n\nModified:\nosp/branches/sakai_2-5-x/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle/Messages.properties\nosp/branches/sakai_2-5-x/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle/Messages_sv.properties\nLog:\nsvn merge -r 38038:38039 https://source.sakaiproject.org/svn/osp/trunk\nU    presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle/Messages.properties\nU    presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle/Messages_sv.properties\nin-143-196:~/java/2-5/sakai_2-5-x/osp mmmay$ svn log -r 38038:38039 https://source.sakaiproject.org/svn/osp/trunk\n------------------------------------------------------------------------\nr38039 | chmaurer@iupui.edu | 2007-11-08 09:19:54 -0500 (Thu, 08 Nov 2007) | 2 lines\n\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12135\nFixing typo\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Nov 19 13:59:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 13:59:53 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 13:59:53 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby brazil.mail.umich.edu () with ESMTP id lAJIxqq8021780;\n\tMon, 19 Nov 2007 13:59:52 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 4741DD1A.E1933.27512 ; \n\t19 Nov 2007 13:59:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 17DC082B25;\n\tMon, 19 Nov 2007 18:51:52 +0000 (GMT)\nMessage-ID: <200711191853.lAJIrGku032396@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 210\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 18:51:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8F05424F68\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 18:58:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJIrGcK032398\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 13:53:16 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJIrGku032396\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 13:53:16 -0500\nDate: Mon, 19 Nov 2007 13:53:16 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38417 - osp/branches/sakai_2-5-x/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 13:59:53 2007\nX-DSPAM-Confidence: 0.7621\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38417\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-19 13:53:15 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38417\n\nModified:\nosp/branches/sakai_2-5-x/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle/Messages.properties\nosp/branches/sakai_2-5-x/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle/Messages_sv.properties\nLog:\nsvn merge -r 38040:38041 https://source.sakaiproject.org/svn/osp/trunk\nU    presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle/Messages.properties\nU    presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle/Messages_sv.properties\nin-143-196:~/java/2-5/sakai_2-5-x/osp mmmay$ svn log -r 38040:38041 https://source.sakaiproject.org/svn/osp/trunk\n------------------------------------------------------------------------\nr38041 | chmaurer@iupui.edu | 2007-11-08 09:26:53 -0500 (Thu, 08 Nov 2007) | 2 lines\n\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12137\nChange wording to match\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Nov 19 13:59:40 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 13:59:40 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 13:59:40 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby jacknife.mail.umich.edu () with ESMTP id lAJIxdIE025522;\n\tMon, 19 Nov 2007 13:59:39 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 4741DD11.2C38E.1952 ; \n\t19 Nov 2007 13:59:35 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id F076F82ADE;\n\tMon, 19 Nov 2007 18:51:33 +0000 (GMT)\nMessage-ID: <200711191845.lAJIjtRL032348@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 894\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 18:44:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5898B235CC\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 18:51:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJIjt4U032350\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 13:45:55 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJIjtRL032348\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 13:45:55 -0500\nDate: Mon, 19 Nov 2007 13:45:55 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38413 - content-review/branches/sakai_2-5-x/content-review-api/public/src/java/org/sakaiproject/contentreview/service\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 13:59:40 2007\nX-DSPAM-Confidence: 0.7612\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38413\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-19 13:45:54 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38413\n\nModified:\ncontent-review/branches/sakai_2-5-x/content-review-api/public/src/java/org/sakaiproject/contentreview/service/ContentReviewService.java\nLog:\nsvn merge -r 38114:38117 https://source.sakaiproject.org/svn/content-review/trunk\nU    content-review-api/public/src/java/org/sakaiproject/contentreview/service/ContentReviewService.java\n\nsvn log -r 38114:38116 https://source.sakaiproject.org/svn/content-review/trunk\n------------------------------------------------------------------------\nr38114 | david.horwitz@uct.ac.za | 2007-11-12 04:17:19 -0500 (Mon, 12 Nov 2007) | 1 line\n\nSAK-11787 deprecat getReport and replace with getReportInstructor and getReportStrudent\n------------------------------------------------------------------------\nr38115 | david.horwitz@uct.ac.za | 2007-11-12 04:36:57 -0500 (Mon, 12 Nov 2007) | 1 line\n\nSAK-11787 deprecate the correct method\n------------------------------------------------------------------------\nr38116 | david.horwitz@uct.ac.za | 2007-11-12 04:39:21 -0500 (Mon, 12 Nov 2007) | 1 line\n\nSAK-11787 deprecate the correct method\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Nov 19 13:59:32 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 13:59:32 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 13:59:32 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby jacknife.mail.umich.edu () with ESMTP id lAJIxVnl025366;\n\tMon, 19 Nov 2007 13:59:31 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4741DCD8.C30D7.1074 ; \n\t19 Nov 2007 13:58:51 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 879AD82934;\n\tMon, 19 Nov 2007 18:51:25 +0000 (GMT)\nMessage-ID: <200711191851.lAJIpcGT032384@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 297\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 18:50:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6B098235CC\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 18:57:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJIpcmP032386\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 13:51:38 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJIpcGT032384\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 13:51:38 -0500\nDate: Mon, 19 Nov 2007 13:51:38 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38416 - osp/branches/sakai_2-5-x/presentation/api-impl/src/resources/org/theospi/portfolio/presentation\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 13:59:32 2007\nX-DSPAM-Confidence: 0.7004\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38416\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-19 13:51:37 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38416\n\nModified:\nosp/branches/sakai_2-5-x/presentation/api-impl/src/resources/org/theospi/portfolio/presentation/freeform_template.xsl\nLog:\nsvn merge -r 38075:38076 https://source.sakaiproject.org/svn/osp/trunk\nU    presentation/api-impl/src/resources/org/theospi/portfolio/presentation/freeform_template.xsl\nin-143-196:~/java/2-5/sakai_2-5-x/osp mmmay$ svn log -r 38075:38076 https://source.sakaiproject.org/svn/osp/trunk\n------------------------------------------------------------------------\nr38076 | john.ellis@rsmart.com | 2007-11-09 11:18:33 -0500 (Fri, 09 Nov 2007) | 4 lines\n\nSAK-11979\nadded code to render output as html\n\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Nov 19 13:59:31 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 13:59:31 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 13:59:31 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby fan.mail.umich.edu () with ESMTP id lAJIxU8f008961;\n\tMon, 19 Nov 2007 13:59:30 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 4741DD03.E017A.19920 ; \n\t19 Nov 2007 13:59:25 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9581F8292E;\n\tMon, 19 Nov 2007 18:51:32 +0000 (GMT)\nMessage-ID: <200711191843.lAJIhYB0032336@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 651\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 18:42:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B5151235CC\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 18:49:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJIhYDN032338\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 13:43:35 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJIhYB0032336\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 13:43:34 -0500\nDate: Mon, 19 Nov 2007 13:43:34 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38412 - content-review/branches/sakai_2-5-x/content-review-api/public/src/java/org/sakaiproject/contentreview/service\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 13:59:31 2007\nX-DSPAM-Confidence: 0.7613\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38412\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-19 13:43:33 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38412\n\nModified:\ncontent-review/branches/sakai_2-5-x/content-review-api/public/src/java/org/sakaiproject/contentreview/service/ContentReviewService.java\nLog:\nsvn merge -r 38113:38114 https://source.sakaiproject.org/svn/content-review/trunk\nU    content-review-api/public/src/java/org/sakaiproject/contentreview/service/ContentReviewService.java\nin-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\n------------------------------------------------------------------------\nr38114 | david.horwitz@uct.ac.za | 2007-11-12 04:17:19 -0500 (Mon, 12 Nov 2007) | 1 line\n\nSAK-11787 deprecat getReport and replace with getReportInstructor and getReportStrudent\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Nov 19 13:59:22 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 13:59:22 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 13:59:22 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby fan.mail.umich.edu () with ESMTP id lAJIxKUN008791;\n\tMon, 19 Nov 2007 13:59:20 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4741DCDD.C4AA0.6524 ; \n\t19 Nov 2007 13:58:54 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 34A5B82B03;\n\tMon, 19 Nov 2007 18:51:29 +0000 (GMT)\nMessage-ID: <200711191847.lAJIlGW6032360@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 820\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 18:45:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E89CF235CC\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 18:52:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJIlGVQ032362\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 13:47:16 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJIlGW6032360\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 13:47:16 -0500\nDate: Mon, 19 Nov 2007 13:47:16 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38414 - assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 13:59:22 2007\nX-DSPAM-Confidence: 0.7610\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38414\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-19 13:47:14 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38414\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nsvn merge -r 38116:38117 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nin-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 38116:38117 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr38117 | david.horwitz@uct.ac.za | 2007-11-12 04:53:08 -0500 (Mon, 12 Nov 2007) | 1 line\n\nSAK-11787 make use of the new Content review methods\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Nov 19 13:58:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 13:58:43 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 13:58:43 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby mission.mail.umich.edu () with ESMTP id lAJIwgjs014167;\n\tMon, 19 Nov 2007 13:58:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 4741DCD3.A99E1.4729 ; \n\t19 Nov 2007 13:58:33 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E4E8A82B11;\n\tMon, 19 Nov 2007 18:51:18 +0000 (GMT)\nMessage-ID: <200711191849.lAJInCRn032372@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 916\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 18:47:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DB76A235CC\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 18:54:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJInCTQ032374\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 13:49:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJInCRn032372\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 13:49:12 -0500\nDate: Mon, 19 Nov 2007 13:49:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38415 - reference/branches/sakai_2-5-x/library/src/webapp/content/gateway\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 13:58:43 2007\nX-DSPAM-Confidence: 0.7621\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38415\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-19 13:49:10 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38415\n\nModified:\nreference/branches/sakai_2-5-x/library/src/webapp/content/gateway/acknowledgments.html\nLog:\nsvn merge -r 38162:38163 https://source.sakaiproject.org/svn/reference/trunk\nU    library/src/webapp/content/gateway/acknowledgments.html\nin-143-196:~/java/2-5/sakai_2-5-x/reference mmmay$ svn log -r 38162:38163 https://source.sakaiproject.org/svn/reference/trunk\n------------------------------------------------------------------------\nr38163 | gsilver@umich.edu | 2007-11-14 10:44:18 -0500 (Wed, 14 Nov 2007) | 1 line\n\nhttp://jira.sakaiproject.org/jira/browse/SAK-12182\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom thoppaymallika@fhda.edu Mon Nov 19 13:58:00 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 13:58:00 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 13:58:00 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby fan.mail.umich.edu () with ESMTP id lAJIvxhD007741;\n\tMon, 19 Nov 2007 13:57:59 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 4741DCAC.A90DD.5651 ; \n\t19 Nov 2007 13:57:54 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CA7768292D;\n\tMon, 19 Nov 2007 18:50:45 +0000 (GMT)\nMessage-ID: <200711191843.lAJIhLBK032325@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 583\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 18:41:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4CA02235CC\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 18:48:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJIhLdD032327\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 13:43:21 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJIhLBK032325\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 13:43:21 -0500\nDate: Mon, 19 Nov 2007 13:43:21 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to thoppaymallika@fhda.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: thoppaymallika@fhda.edu\nSubject: [contrib] svn commit: r43583 - foothill/melete/melete-app/src/java/org/sakaiproject/tool/melete\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 13:58:00 2007\nX-DSPAM-Confidence: 0.9808\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn?root=contrib&view=rev&rev=43583\n\nAuthor: thoppaymallika@fhda.edu\nDate: 2007-11-19 13:43:18 -0500 (Mon, 19 Nov 2007)\nNew Revision: 43583\n\nModified:\nfoothill/melete/melete-app/src/java/org/sakaiproject/tool/melete/ListModulesPage.java\nLog:\nremoving settransient\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Mon Nov 19 12:36:16 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 12:36:16 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 12:36:16 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby awakenings.mail.umich.edu () with ESMTP id lAJHaGHS030323;\n\tMon, 19 Nov 2007 12:36:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4741C985.F208A.580 ; \n\t19 Nov 2007 12:36:11 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1AB708290E;\n\tMon, 19 Nov 2007 17:35:56 +0000 (GMT)\nMessage-ID: <200711191730.lAJHUICj032230@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 910\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 17:35:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8FE8D1E9A2\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 17:35:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJHUI8D032232\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 12:30:18 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJHUICj032230\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 12:30:18 -0500\nDate: Mon, 19 Nov 2007 12:30:18 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38411 - osp/branches/osp_nightly\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 12:36:16 2007\nX-DSPAM-Confidence: 0.9771\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38411\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-19 12:30:17 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38411\n\nModified:\nosp/branches/osp_nightly/pom.xml\nLog:\nremoving formbuilder temporarily\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Nov 19 11:50:49 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 11:50:49 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 11:50:49 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby flawless.mail.umich.edu () with ESMTP id lAJGon4v016557;\n\tMon, 19 Nov 2007 11:50:49 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 4741BED9.23D59.26948 ; \n\t19 Nov 2007 11:50:42 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 329F273D6A;\n\tMon, 19 Nov 2007 16:50:31 +0000 (GMT)\nMessage-ID: <200711191644.lAJGigu8032126@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 35\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 16:50:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 945EA24F1E\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 16:50:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJGig9O032128\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 11:44:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJGigu8032126\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 11:44:42 -0500\nDate: Mon, 19 Nov 2007 11:44:42 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38410 - polls/branches/sakai_2-5-x/tool/src/webapp/templates\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 11:50:49 2007\nX-DSPAM-Confidence: 0.7003\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38410\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-19 11:44:41 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38410\n\nModified:\npolls/branches/sakai_2-5-x/tool/src/webapp/templates/voteAdd.html\nLog:\nsvn merge -r 38258:38259 https://source.sakaiproject.org/svn/polls/trunk\nU    tool/src/webapp/templates/voteAdd.html\nin-143-196:~/java/2-5/sakai_2-5-x/polls mmmay$ svn log -r 38258:38259 https://source.sakaiproject.org/svn/polls/trunk\n------------------------------------------------------------------------\nr38259 | david.horwitz@uct.ac.za | 2007-11-18 02:35:09 -0500 (Sun, 18 Nov 2007) | 1 line\n\nSAK-11703 allow for a larger text area window\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Nov 19 11:49:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 11:49:43 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 11:49:43 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby godsend.mail.umich.edu () with ESMTP id lAJGngB6007627;\n\tMon, 19 Nov 2007 11:49:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4741BE9D.8948B.16366 ; \n\t19 Nov 2007 11:49:38 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 03A6A7621D;\n\tMon, 19 Nov 2007 16:49:07 +0000 (GMT)\nMessage-ID: <200711191643.lAJGhG9C032114@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 156\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 16:48:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C67CB24F1A\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 16:48:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJGhGsm032116\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 11:43:16 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJGhG9C032114\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 11:43:16 -0500\nDate: Mon, 19 Nov 2007 11:43:16 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38409 - polls/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/poll/tool/validators\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 11:49:43 2007\nX-DSPAM-Confidence: 0.7611\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38409\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-19 11:43:15 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38409\n\nModified:\npolls/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/poll/tool/validators/OptionValidator.java\nLog:\nsvn merge -r 38152:38153 https://source.sakaiproject.org/svn/polls/trunk\nU    tool/src/java/org/sakaiproject/poll/tool/validators/OptionValidator.java\nin-143-196:~/java/2-5/sakai_2-5-x/polls mmmay$ svn log -r 38152:38153 https://source.sakaiproject.org/svn/polls/trunk\n------------------------------------------------------------------------\nr38153 | david.horwitz@uct.ac.za | 2007-11-14 01:53:07 -0500 (Wed, 14 Nov 2007) | 1 line\n\nSAK-11704 trim value before testing for being empty\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Nov 19 11:34:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 11:34:53 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 11:34:53 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby jacknife.mail.umich.edu () with ESMTP id lAJGYq1O017624;\n\tMon, 19 Nov 2007 11:34:53 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 4741BB21.77EDC.28185 ; \n\t19 Nov 2007 11:34:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9B9347A7FC;\n\tMon, 19 Nov 2007 16:34:40 +0000 (GMT)\nMessage-ID: <200711191629.lAJGT0jE032099@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 577\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 16:34:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4EAA224EF1\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 16:34:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJGT0lf032101\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 11:29:00 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJGT0jE032099\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 11:29:00 -0500\nDate: Mon, 19 Nov 2007 11:29:00 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38408 - citations/branches/sakai_2-5-x/citations-util/util/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 11:34:53 2007\nX-DSPAM-Confidence: 0.7005\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38408\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-19 11:28:59 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38408\n\nModified:\ncitations/branches/sakai_2-5-x/citations-util/util/src/bundle/citations.properties\nLog:\nsvn merge -r 38254:38255 https://source.sakaiproject.org/svn/citations/trunk\nU    citations-util/util/src/bundle/citations.properties\nin-143-196:~/java/2-5/sakai_2-5-x/citations mmmay$ svn log -r 38254:38255 https://source.sakaiproject.org/svn/citations/trunk\n------------------------------------------------------------------------\nr38255 | dsobiera@indiana.edu | 2007-11-16 16:08:33 -0500 (Fri, 16 Nov 2007) | 1 line\n\nSAK-12012 - added import.create resource\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Nov 19 11:34:06 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 11:34:06 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 11:34:06 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby brazil.mail.umich.edu () with ESMTP id lAJGY5uK009276;\n\tMon, 19 Nov 2007 11:34:05 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 4741BAEA.F3A39.7451 ; \n\t19 Nov 2007 11:33:51 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0C41E82845;\n\tMon, 19 Nov 2007 16:33:46 +0000 (GMT)\nMessage-ID: <200711191628.lAJGS284032087@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 517\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 16:33:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E755124EF1\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 16:33:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJGS2sB032089\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 11:28:02 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJGS284032087\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 11:28:02 -0500\nDate: Mon, 19 Nov 2007 11:28:02 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38407 - citations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/vm/citation\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 11:34:06 2007\nX-DSPAM-Confidence: 0.6565\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38407\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-19 11:28:01 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38407\n\nModified:\ncitations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/vm/citation/add_citations.vm\nLog:\nsvn merge -r 38245:38246 https://source.sakaiproject.org/svn/citations/trunk\nU    citations-tool/tool/src/webapp/vm/citation/add_citations.vm\nin-143-196:~/java/2-5/sakai_2-5-x/citations mmmay$ svn log -r 38245:38246 https://source.sakaiproject.org/svn/citations/trunk\n------------------------------------------------------------------------\nr38246 | dsobiera@indiana.edu | 2007-11-16 13:38:12 -0500 (Fri, 16 Nov 2007) | 1 line\n\nSAK-12012 - changed button value and text next to button to come from resource bundle (was hardcoded)\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Nov 19 11:32:47 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 11:32:47 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 11:32:47 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby faithful.mail.umich.edu () with ESMTP id lAJGWkll006795;\n\tMon, 19 Nov 2007 11:32:46 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 4741BAA3.16D9E.26214 ; \n\t19 Nov 2007 11:32:39 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 976388280C;\n\tMon, 19 Nov 2007 16:32:33 +0000 (GMT)\nMessage-ID: <200711191626.lAJGQocf032075@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 758\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 16:32:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5448A24EF1\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 16:32:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJGQonM032077\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 11:26:50 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJGQocf032075\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 11:26:50 -0500\nDate: Mon, 19 Nov 2007 11:26:50 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38406 - citations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/js\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 11:32:47 2007\nX-DSPAM-Confidence: 0.6565\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38406\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-19 11:26:50 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38406\n\nModified:\ncitations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/js/citationscript.js\nLog:\nsvn merge -r 38170:38171 https://source.sakaiproject.org/svn/citations/trunk\nU    citations-tool/tool/src/webapp/js/citationscript.js\nin-143-196:~/java/2-5/sakai_2-5-x/citations mmmay$ svn log -r 38170:38171 https://source.sakaiproject.org/svn/citations/trunk\n------------------------------------------------------------------------\nr38171 | dsobiera@indiana.edu | 2007-11-14 14:44:41 -0500 (Wed, 14 Nov 2007) | 1 line\n\nSAK-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. \n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Nov 19 11:32:11 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 11:32:11 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 11:32:11 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby chaos.mail.umich.edu () with ESMTP id lAJGWAmV032675;\n\tMon, 19 Nov 2007 11:32:10 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 4741BA77.EFA65.13685 ; \n\t19 Nov 2007 11:31:56 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7C09582744;\n\tMon, 19 Nov 2007 16:31:50 +0000 (GMT)\nMessage-ID: <200711191625.lAJGPvdi032063@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 106\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 16:31:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5419F24D5B\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 16:31:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJGPvX9032065\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 11:25:57 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJGPvdi032063\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 11:25:57 -0500\nDate: Mon, 19 Nov 2007 11:25:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38405 - citations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/vm/citation\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 11:32:11 2007\nX-DSPAM-Confidence: 0.6192\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38405\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-19 11:25:57 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38405\n\nModified:\ncitations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/vm/citation/search.vm\nLog:\nsvn merge -r 38168:38169 https://source.sakaiproject.org/svn/citations/trunk\nU    citations-tool/tool/src/webapp/vm/citation/search.vm\nin-143-196:~/java/2-5/sakai_2-5-x/citations mmmay$ svn log -r 38168:38169 https://source.sakaiproject.org/svn/citations/trunk\n------------------------------------------------------------------------\nr38169 | dsobiera@indiana.edu | 2007-11-14 13:30:15 -0500 (Wed, 14 Nov 2007) | 3 lines\n\nSAK-9896 - Changed bottom Cancel button on search page to do the same thing as the top cancel button (javascript)\n\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Nov 19 11:28:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 11:28:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 11:28:51 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby flawless.mail.umich.edu () with ESMTP id lAJGSodA030281;\n\tMon, 19 Nov 2007 11:28:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 4741B9BA.82FB9.21725 ; \n\t19 Nov 2007 11:28:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DCB1C82771;\n\tMon, 19 Nov 2007 16:28:39 +0000 (GMT)\nMessage-ID: <200711191622.lAJGMwbu032051@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 979\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 16:28:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8CC8224EAB\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 16:28:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJGMwen032053\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 11:22:58 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJGMwbu032051\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 11:22:58 -0500\nDate: Mon, 19 Nov 2007 11:22:58 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r38404 - in citations/branches/sakai_2-5-x/citations-tool/tool/src: java/org/sakaiproject/citation/tool webapp/vm/citation\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 11:28:51 2007\nX-DSPAM-Confidence: 0.6241\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38404\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-19 11:22:56 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38404\n\nModified:\ncitations/branches/sakai_2-5-x/citations-tool/tool/src/java/org/sakaiproject/citation/tool/CitationHelperAction.java\ncitations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/vm/citation/_advSearch.vm\ncitations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/vm/citation/_basicSearch.vm\ncitations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/vm/citation/results.vm\ncitations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/vm/citation/search.vm\nLog:\nsvn merge -r 38137:38142 https://source.sakaiproject.org/svn/citations/trunk\nU    citations-tool/tool/src/java/org/sakaiproject/citation/tool/CitationHelperAction.java\nU    citations-tool/tool/src/webapp/vm/citation/_advSearch.vm\nU    citations-tool/tool/src/webapp/vm/citation/results.vm\nU    citations-tool/tool/src/webapp/vm/citation/search.vm\nU    citations-tool/tool/src/webapp/vm/citation/_basicSearch.vm\nin-143-196:~/java/2-5/sakai_2-5-x/citations mmmay$ svn log -r 38137:38142 https://source.sakaiproject.org/svn/citations/trunk\n------------------------------------------------------------------------\nr38138 | dsobiera@indiana.edu | 2007-11-13 14:12:17 -0500 (Tue, 13 Nov 2007) | 1 line\n\nSAK-9896 - Added searchpage parameter to URL of doCancelSearch\n------------------------------------------------------------------------\nr38139 | dsobiera@indiana.edu | 2007-11-13 14:12:33 -0500 (Tue, 13 Nov 2007) | 1 line\n\nSAK-9896 - Added searchpage parameter to URL of doCancelSearch\n------------------------------------------------------------------------\nr38140 | dsobiera@indiana.edu | 2007-11-13 14:13:29 -0500 (Tue, 13 Nov 2007) | 1 line\n\nSAK-9896 - created searchpage velocity variable\n------------------------------------------------------------------------\nr38141 | dsobiera@indiana.edu | 2007-11-13 14:13:40 -0500 (Tue, 13 Nov 2007) | 1 line\n\nSAK-9896 - created searchpage velocity variable\n------------------------------------------------------------------------\nr38142 | dsobiera@indiana.edu | 2007-11-13 14:16:18 -0500 (Tue, 13 Nov 2007) | 1 line\n\nSAK-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.\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Nov 19 11:23:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 11:23:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 11:23:02 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby brazil.mail.umich.edu () with ESMTP id lAJGN1cV032513;\n\tMon, 19 Nov 2007 11:23:01 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 4741B854.D0E5E.5889 ; \n\t19 Nov 2007 11:22:48 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A7F42827CE;\n\tMon, 19 Nov 2007 16:22:41 +0000 (GMT)\nMessage-ID: <200711191617.lAJGH0wI032037@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 765\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 16:22:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id F0FDC24E01\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 16:22:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJGH0ps032039\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 11:17:00 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJGH0wI032037\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 11:17:00 -0500\nDate: Mon, 19 Nov 2007 11:17:00 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 11:23:02 2007\nX-DSPAM-Confidence: 0.7006\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38403\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-19 11:16:59 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38403\n\nModified:\ncitations/branches/sakai_2-5-x/citations-impl/impl/src/java/org/sakaiproject/citation/impl/BaseCitationService.java\ncitations/branches/sakai_2-5-x/citations-impl/impl/src/sql/hsqldb/sakai_citation.sql\ncitations/branches/sakai_2-5-x/citations-impl/impl/src/sql/mysql/sakai_citation.sql\ncitations/branches/sakai_2-5-x/citations-impl/impl/src/sql/oracle/sakai_citation.sql\nLog:\nsvn merge -r 38122:38126 https://source.sakaiproject.org/svn/citations/trunk\nU    citations-impl/impl/src/sql/mysql/sakai_citation.sql\nU    citations-impl/impl/src/sql/oracle/sakai_citation.sql\nU    citations-impl/impl/src/sql/hsqldb/sakai_citation.sql\nU    citations-impl/impl/src/java/org/sakaiproject/citation/impl/BaseCitationService.java\nin-143-196:~/java/2-5/sakai_2-5-x/citations mmmay$ svn log -r 38122:38126 https://source.sakaiproject.org/svn/citations/trunk\n------------------------------------------------------------------------\nr38123 | dsobiera@indiana.edu | 2007-11-12 14:44:19 -0500 (Mon, 12 Nov 2007) | 1 line\n\nSAK-12009 - created forced mapping of resource type NEWS to JOUR\n------------------------------------------------------------------------\nr38124 | dsobiera@indiana.edu | 2007-11-12 14:48:19 -0500 (Mon, 12 Nov 2007) | 2 lines\n\nSAK-12009 - Added article compound RIS tags: AU to creator, TI to title and PY to date.\n\n------------------------------------------------------------------------\nr38125 | dsobiera@indiana.edu | 2007-11-12 14:48:30 -0500 (Mon, 12 Nov 2007) | 2 lines\n\nSAK-12009 - Added article compound RIS tags: AU to creator, TI to title and PY to date.\n\n------------------------------------------------------------------------\nr38126 | dsobiera@indiana.edu | 2007-11-12 14:48:42 -0500 (Mon, 12 Nov 2007) | 2 lines\n\nSAK-12009 - Added article compound RIS tags: AU to creator, TI to title and PY to date.\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Mon Nov 19 10:42:48 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 10:42:48 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 10:42:48 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby mission.mail.umich.edu () with ESMTP id lAJFgmTx029605;\n\tMon, 19 Nov 2007 10:42:48 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 4741AEE5.8F36F.23707 ; \n\t19 Nov 2007 10:42:32 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 154848273B;\n\tMon, 19 Nov 2007 15:39:28 +0000 (GMT)\nMessage-ID: <200711191536.lAJFanVA031961@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 859\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 15:39:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 753D124E5D\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 15:42:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJFanXZ031963\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 10:36:49 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJFanVA031961\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 10:36:49 -0500\nDate: Mon, 19 Nov 2007 10:36:49 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38402 - osp/branches/osp_nightly\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 10:42:48 2007\nX-DSPAM-Confidence: 0.9818\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38402\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-19 10:36:48 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38402\n\nModified:\nosp/branches/osp_nightly/pom.xml\nLog:\ncleaning up pom.xml to match sakai's pom\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Mon Nov 19 10:29:07 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 10:29:07 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 10:29:07 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby awakenings.mail.umich.edu () with ESMTP id lAJFT6dT006210;\n\tMon, 19 Nov 2007 10:29:06 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 4741ABB3.D5A25.18389 ; \n\t19 Nov 2007 10:29:01 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2060E72D26;\n\tMon, 19 Nov 2007 15:28:49 +0000 (GMT)\nMessage-ID: <200711191523.lAJFN9qf031927@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 605\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 15:28:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A129E24E75\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 15:28:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJFN96G031929\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 10:23:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJFN9qf031927\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 10:23:09 -0500\nDate: Mon, 19 Nov 2007 10:23:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38401 - content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 10:29:07 2007\nX-DSPAM-Confidence: 0.9865\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38401\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-11-19 10:23:06 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38401\n\nModified:\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/MigrationTableSqlReader.java\nLog:\nSAK-12105  the org.sakaiproject.db.api.SqlReader interface expects you to act on the ResultSet\nas if you were only getting one row at a time.  It does *not* expect you to actually run through the\nwhole thing and return a List.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Mon Nov 19 10:26:00 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 10:26:00 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 10:26:00 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby sleepers.mail.umich.edu () with ESMTP id lAJFPxLc001145;\n\tMon, 19 Nov 2007 10:25:59 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 4741AAFF.5524B.1115 ; \n\t19 Nov 2007 10:25:55 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5958B825E9;\n\tMon, 19 Nov 2007 15:25:49 +0000 (GMT)\nMessage-ID: <200711191520.lAJFK6bL031915@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 296\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 15:25:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 84AAD24E4B\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 15:25:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJFK6FR031917\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 10:20:06 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJFK6bL031915\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 10:20:06 -0500\nDate: Mon, 19 Nov 2007 10:20:06 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38400 - osp/branches/osp_nightly\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 10:26:00 2007\nX-DSPAM-Confidence: 0.9785\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38400\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-19 10:20:05 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38400\n\nModified:\nosp/branches/osp_nightly/pom.xml\nLog:\nremoving deprecated discussion tool\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gsilver@umich.edu Mon Nov 19 10:02:10 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 10:02:10 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 10:02:10 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby godsend.mail.umich.edu () with ESMTP id lAJF29nF032109;\n\tMon, 19 Nov 2007 10:02:09 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 4741A56B.9C19B.14570 ; \n\t19 Nov 2007 10:02:06 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C2383826EB;\n\tMon, 19 Nov 2007 15:02:02 +0000 (GMT)\nMessage-ID: <200711191456.lAJEuE5u031865@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 718\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 15:01:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8035324EE0\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 15:01:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJEuEL2031867\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 09:56:14 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJEuE5u031865\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 09:56:14 -0500\nDate: Mon, 19 Nov 2007 09:56:14 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gsilver@umich.edu\nSubject: [sakai] svn commit: r38399 - calendar/trunk/calendar-tool/tool/src/webapp/vm/calendar\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 10:02:10 2007\nX-DSPAM-Confidence: 0.9818\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38399\n\nAuthor: gsilver@umich.edu\nDate: 2007-11-19 09:56:13 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38399\n\nModified:\ncalendar/trunk/calendar-tool/tool/src/webapp/vm/calendar/chef_calendar_viewMonth.vm\nLog:\nSAK-1111\n- make link target larger\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Mon Nov 19 09:53:24 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 09:53:24 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 09:53:24 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby mission.mail.umich.edu () with ESMTP id lAJErNqr032511;\n\tMon, 19 Nov 2007 09:53:23 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 4741A35D.D309B.14274 ; \n\t19 Nov 2007 09:53:20 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A0E9482504;\n\tMon, 19 Nov 2007 14:53:15 +0000 (GMT)\nMessage-ID: <200711191447.lAJElYPV031795@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 350\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 14:53:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8469324EB2\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 14:53:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJElYcd031797\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 09:47:34 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJElYPV031795\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 09:47:34 -0500\nDate: Mon, 19 Nov 2007 09:47:34 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38398 - assignment/trunk/assignment-bundles\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 09:53:24 2007\nX-DSPAM-Confidence: 0.9865\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38398\n\nAuthor: zqian@umich.edu\nDate: 2007-11-19 09:47:33 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38398\n\nModified:\nassignment/trunk/assignment-bundles/assignment.properties\nLog:\nFix to SAK-12223:Assignments: Log in as instructor, create an assignment by choosing the Radio button \" Associate with existing Gradebook assignment\" - change to 'entry'\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Mon Nov 19 09:14:34 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 09:14:34 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 09:14:34 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby godsend.mail.umich.edu () with ESMTP id lAJEEXwD004559;\n\tMon, 19 Nov 2007 09:14:33 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 47419A44.6055A.21056 ; \n\t19 Nov 2007 09:14:31 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 909BD81D41;\n\tMon, 19 Nov 2007 14:14:24 +0000 (GMT)\nMessage-ID: <200711191408.lAJE8hRK031768@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 110\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 14:14:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8EA6623623\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 14:14:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJE8hIa031770\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 09:08:43 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJE8hRK031768\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 09:08:43 -0500\nDate: Mon, 19 Nov 2007 09:08:43 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38397 - in osp/branches/osp_nightly: . pack-demo\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 09:14:34 2007\nX-DSPAM-Confidence: 0.9809\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38397\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-19 09:08:42 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38397\n\nModified:\nosp/branches/osp_nightly/pack-demo/pom.xml\nosp/branches/osp_nightly/pom.xml\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-12232\nUpdating to SNAPSHOT build\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Mon Nov 19 09:06:09 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 09:06:09 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 09:06:09 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby fan.mail.umich.edu () with ESMTP id lAJE68uG016519;\n\tMon, 19 Nov 2007 09:06:08 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 47419849.AC46C.15781 ; \n\t19 Nov 2007 09:06:04 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1FCF182604;\n\tMon, 19 Nov 2007 14:06:00 +0000 (GMT)\nMessage-ID: <200711191400.lAJE0FNh031754@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 862\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 14:05:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DC08523623\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 14:05:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJE0Fqk031756\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 09:00:15 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJE0FNh031754\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 09:00:15 -0500\nDate: Mon, 19 Nov 2007 09:00:15 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38396 - in warehouse/trunk: warehouse-api warehouse-impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 09:06:09 2007\nX-DSPAM-Confidence: 0.9849\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38396\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-19 09:00:14 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38396\n\nModified:\nwarehouse/trunk/warehouse-api/.classpath\nwarehouse/trunk/warehouse-impl/.classpath\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-12232\nFixing up some eclipse classpath files as a result of updating to SNAPSHOT build\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Mon Nov 19 09:05:48 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 09:05:48 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 09:05:48 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby chaos.mail.umich.edu () with ESMTP id lAJE5lSb013291;\n\tMon, 19 Nov 2007 09:05:47 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 47419832.CC1ED.25879 ; \n\t19 Nov 2007 09:05:41 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0AC05825F0;\n\tMon, 19 Nov 2007 14:05:36 +0000 (GMT)\nMessage-ID: <200711191359.lAJDxs9M031742@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 52\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 14:05:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 05C1323623\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 14:05:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJDxsec031744\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 08:59:54 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJDxs9M031742\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 08:59:54 -0500\nDate: Mon, 19 Nov 2007 08:59:54 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38395 - in reports/trunk: reports-api reports-impl reports-tool reports-util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 09:05:48 2007\nX-DSPAM-Confidence: 0.9849\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38395\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-19 08:59:53 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38395\n\nModified:\nreports/trunk/reports-api/.classpath\nreports/trunk/reports-impl/.classpath\nreports/trunk/reports-tool/.classpath\nreports/trunk/reports-util/.classpath\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-12232\nFixing up some eclipse classpath files as a result of updating to SNAPSHOT build\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Mon Nov 19 06:13:39 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 06:13:39 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 06:13:39 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby brazil.mail.umich.edu () with ESMTP id lAJBDbpJ007194;\n\tMon, 19 Nov 2007 06:13:37 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 47416FDB.D5708.23965 ; \n\t19 Nov 2007 06:13:34 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6F3F082359;\n\tMon, 19 Nov 2007 11:13:29 +0000 (GMT)\nMessage-ID: <200711191107.lAJB7kjr031310@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 771\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 11:13:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E9CE71BF7F\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 11:13:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJB7kRX031312\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 06:07:47 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJB7kjr031310\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 06:07:46 -0500\nDate: Mon, 19 Nov 2007 06:07:46 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38394 - in cafe/trunk: . announcement archive content course-management presence user\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 06:13:39 2007\nX-DSPAM-Confidence: 0.6953\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38394\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-19 06:07:33 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38394\n\nModified:\ncafe/trunk/announcement/pom.xml\ncafe/trunk/archive/pom.xml\ncafe/trunk/content/pom.xml\ncafe/trunk/course-management/pom.xml\ncafe/trunk/pom.xml\ncafe/trunk/presence/pom.xml\ncafe/trunk/user/pom.xml\nLog:\nFix cafe build to work with new SNAPSHOT version\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Mon Nov 19 02:42:38 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 02:42:38 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 02:42:38 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby mission.mail.umich.edu () with ESMTP id lAJ7ga31019957;\n\tMon, 19 Nov 2007 02:42:36 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 47413E67.1DB33.19038 ; \n\t19 Nov 2007 02:42:33 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 53C2D744B4;\n\tMon, 19 Nov 2007 07:39:22 +0000 (GMT)\nMessage-ID: <200711190736.lAJ7afik030788@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 70\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 07:39:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 14AA6212A7\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 07:42:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJ7af5Q030790\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 02:36:41 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJ7afik030788\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 02:36:41 -0500\nDate: Mon, 19 Nov 2007 02:36:41 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38393 - entitybroker/trunk/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 02:42:38 2007\nX-DSPAM-Confidence: 0.9811\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38393\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-19 02:36:25 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38393\n\nAdded:\nentitybroker/trunk/tool/project.xml\nLog:\nNOJIRA: Added in missing tool project.xml\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Mon Nov 19 00:41:22 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 19 Nov 2007 00:41:22 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 19 Nov 2007 00:41:22 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby brazil.mail.umich.edu () with ESMTP id lAJ5fLTj000613;\n\tMon, 19 Nov 2007 00:41:21 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 474121FB.AEC0D.30237 ; \n\t19 Nov 2007 00:41:18 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B0B9881E2B;\n\tMon, 19 Nov 2007 05:41:17 +0000 (GMT)\nMessage-ID: <200711190535.lAJ5ZXc4030742@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 929\n          for <source@collab.sakaiproject.org>;\n          Mon, 19 Nov 2007 05:41:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5D60323618\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 05:41:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAJ5ZXSe030744\n\tfor <source@collab.sakaiproject.org>; Mon, 19 Nov 2007 00:35:33 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAJ5ZXc4030742\n\tfor source@collab.sakaiproject.org; Mon, 19 Nov 2007 00:35:33 -0500\nDate: Mon, 19 Nov 2007 00:35:33 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 19 00:41:22 2007\nX-DSPAM-Confidence: 0.9845\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38392\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-11-19 00:35:25 -0500 (Mon, 19 Nov 2007)\nNew Revision: 38392\n\nAdded:\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/MigrationSqlQueries.java\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/MigrationStatusReporterImpl.java\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/MigrationTableSqlReader.java\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/ThingToMigrate.java\nModified:\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/CHStoJCRMigratorImpl.java\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/MigrationInProgressObserver.java\ncontent/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF/components-jcr.xml\ncontent/branches/SAK-12105/content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api/MigrationStatusReporter.java\nLog:\nSAK-12105 \n\nStuff is copied over when migration is started for first time.\nOther random changes for having one table.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Sun Nov 18 02:41:27 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 18 Nov 2007 02:41:27 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 18 Nov 2007 02:41:26 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby godsend.mail.umich.edu () with ESMTP id lAI7fMVp019777;\n\tSun, 18 Nov 2007 02:41:22 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 473FEC9D.B0BBB.2587 ; \n\t18 Nov 2007 02:41:20 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D24C580846;\n\tSun, 18 Nov 2007 07:41:09 +0000 (GMT)\nMessage-ID: <200711180735.lAI7ZV0n015247@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 263\n          for <source@collab.sakaiproject.org>;\n          Sun, 18 Nov 2007 07:40:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 96DCE24876\n\tfor <source@collab.sakaiproject.org>; Sun, 18 Nov 2007 07:40:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAI7ZVsl015249\n\tfor <source@collab.sakaiproject.org>; Sun, 18 Nov 2007 02:35:32 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAI7ZV0n015247\n\tfor source@collab.sakaiproject.org; Sun, 18 Nov 2007 02:35:31 -0500\nDate: Sun, 18 Nov 2007 02:35:31 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r38259 - polls/trunk/tool/src/webapp/templates\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov 18 02:41:26 2007\nX-DSPAM-Confidence: 0.9789\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38259\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-11-18 02:35:09 -0500 (Sun, 18 Nov 2007)\nNew Revision: 38259\n\nModified:\npolls/trunk/tool/src/webapp/templates/voteAdd.html\nLog:\nSAK-11703 allow for a larger text area window\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Nov 16 22:31:32 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 16 Nov 2007 22:31:32 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 16 Nov 2007 22:31:32 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby flawless.mail.umich.edu () with ESMTP id lAH3VVD0020015;\n\tFri, 16 Nov 2007 22:31:31 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 473E608E.54FE5.13138 ; \n\t16 Nov 2007 22:31:29 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6D0807AA1E;\n\tSat, 17 Nov 2007 03:31:05 +0000 (GMT)\nMessage-ID: <200711170325.lAH3Pgd9014020@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 601\n          for <source@collab.sakaiproject.org>;\n          Sat, 17 Nov 2007 03:30:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A098721E96\n\tfor <source@collab.sakaiproject.org>; Sat, 17 Nov 2007 03:31:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAH3PgXk014022\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 22:25:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAH3Pgd9014020\n\tfor source@collab.sakaiproject.org; Fri, 16 Nov 2007 22:25:42 -0500\nDate: Fri, 16 Nov 2007 22:25:42 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38258 - in site-manage/trunk/site-manage-tool/tool/src: bundle java/org/sakaiproject/site/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 16 22:31:32 2007\nX-DSPAM-Confidence: 0.9848\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38258\n\nAuthor: zqian@umich.edu\nDate: 2007-11-16 22:25:38 -0500 (Fri, 16 Nov 2007)\nNew Revision: 38258\n\nModified:\nsite-manage/trunk/site-manage-tool/tool/src/bundle/sitesetupgeneric.properties\nsite-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nLog:\nfix to SAK-12216:Worksite Setup should accommodate multiple instructors of a course\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Fri Nov 16 20:28:00 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 16 Nov 2007 20:28:00 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 16 Nov 2007 20:28:00 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby score.mail.umich.edu () with ESMTP id lAH1RxAL011936;\n\tFri, 16 Nov 2007 20:27:59 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 473E4399.6B0D3.4558 ; \n\t16 Nov 2007 20:27:56 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 236557FD5D;\n\tSat, 17 Nov 2007 00:42:46 +0000 (GMT)\nMessage-ID: <200711170000.lAH00rWf013946@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 609\n          for <source@collab.sakaiproject.org>;\n          Sat, 17 Nov 2007 00:42:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E235023B8E\n\tfor <source@collab.sakaiproject.org>; Sat, 17 Nov 2007 00:06:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAH00rOE013948\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 19:00:53 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAH00rWf013946\n\tfor source@collab.sakaiproject.org; Fri, 16 Nov 2007 19:00:53 -0500\nDate: Fri, 16 Nov 2007 19:00:53 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38257 - in content/branches/SAK-12105/content-impl-jcr: impl pack/src/webapp/WEB-INF\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 16 20:28:00 2007\nX-DSPAM-Confidence: 0.8416\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38257\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-11-16 19:00:49 -0500 (Fri, 16 Nov 2007)\nNew Revision: 38257\n\nModified:\ncontent/branches/SAK-12105/content-impl-jcr/impl/pom.xml\ncontent/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF/components-jcr.xml\nLog:\nSAK-12105 swapped some spring defs\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Fri Nov 16 16:48:21 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 16 Nov 2007 16:48:21 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 16 Nov 2007 16:48:21 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby flawless.mail.umich.edu () with ESMTP id lAGLmKPf005071;\n\tFri, 16 Nov 2007 16:48:20 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 473E1013.19016.20429 ; \n\t16 Nov 2007 16:48:17 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CEED47F497;\n\tFri, 16 Nov 2007 21:48:01 +0000 (GMT)\nMessage-ID: <200711162142.lAGLgYgW013840@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 417\n          for <source@collab.sakaiproject.org>;\n          Fri, 16 Nov 2007 21:47:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 439D621E18\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 21:47:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGLgYR1013842\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 16:42:34 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGLgYgW013840\n\tfor source@collab.sakaiproject.org; Fri, 16 Nov 2007 16:42:34 -0500\nDate: Fri, 16 Nov 2007 16:42:34 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r38256 - oncourse/branches/sakai_2-4-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 16 16:48:21 2007\nX-DSPAM-Confidence: 0.8422\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38256\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-11-16 16:42:32 -0500 (Fri, 16 Nov 2007)\nNew Revision: 38256\n\nModified:\noncourse/branches/sakai_2-4-x/\noncourse/branches/sakai_2-4-x/.externals\nLog:\nUpdated externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Nov 16 16:09:05 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 16 Nov 2007 16:09:05 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 16 Nov 2007 16:09:05 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby mission.mail.umich.edu () with ESMTP id lAGL94Qs006137;\n\tFri, 16 Nov 2007 16:09:04 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 473E06E8.BCB20.26345 ; \n\t16 Nov 2007 16:08:59 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 650BC7E24E;\n\tFri, 16 Nov 2007 21:08:47 +0000 (GMT)\nMessage-ID: <200711162103.lAGL3HT4013581@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 973\n          for <source@collab.sakaiproject.org>;\n          Fri, 16 Nov 2007 21:08:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A470821E01\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 21:08:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGL3HeD013583\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 16:03:17 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGL3HT4013581\n\tfor source@collab.sakaiproject.org; Fri, 16 Nov 2007 16:03:17 -0500\nDate: Fri, 16 Nov 2007 16:03:17 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r38254 - oncourse/trunk/src/jobscheduler/scheduler-component/src/webapp/WEB-INF\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 16 16:09:05 2007\nX-DSPAM-Confidence: 0.9819\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38254\n\nAuthor: cwen@iupui.edu\nDate: 2007-11-16 16:03:16 -0500 (Fri, 16 Nov 2007)\nNew Revision: 38254\n\nModified:\noncourse/trunk/src/jobscheduler/scheduler-component/src/webapp/WEB-INF/components.xml\nLog:\nadd FGGB job\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gsilver@umich.edu Fri Nov 16 16:05:24 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 16 Nov 2007 16:05:24 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 16 Nov 2007 16:05:24 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby sleepers.mail.umich.edu () with ESMTP id lAGL5Njg014027;\n\tFri, 16 Nov 2007 16:05:23 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 473E060C.999D5.30909 ; \n\t16 Nov 2007 16:05:19 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 174F97E255;\n\tFri, 16 Nov 2007 21:05:15 +0000 (GMT)\nMessage-ID: <200711162059.lAGKxoAC013548@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 876\n          for <source@collab.sakaiproject.org>;\n          Fri, 16 Nov 2007 21:05:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 616CF21E01\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 21:05:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGKxoNX013550\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 15:59:50 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGKxoAC013548\n\tfor source@collab.sakaiproject.org; Fri, 16 Nov 2007 15:59:50 -0500\nDate: Fri, 16 Nov 2007 15:59:50 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gsilver@umich.edu\nSubject: [sakai] svn commit: r38253 - reference/trunk/library/src/webapp/skin/default\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 16 16:05:24 2007\nX-DSPAM-Confidence: 0.9839\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38253\n\nAuthor: gsilver@umich.edu\nDate: 2007-11-16 15:59:48 -0500 (Fri, 16 Nov 2007)\nNew Revision: 38253\n\nModified:\nreference/trunk/library/src/webapp/skin/default/portal.css\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-12143\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Fri Nov 16 15:59:32 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 16 Nov 2007 15:59:32 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 16 Nov 2007 15:59:32 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby chaos.mail.umich.edu () with ESMTP id lAGKxUVV004909;\n\tFri, 16 Nov 2007 15:59:30 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 473E04AC.1E8DF.26075 ; \n\t16 Nov 2007 15:59:27 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id F356F7FA72;\n\tFri, 16 Nov 2007 20:59:22 +0000 (GMT)\nMessage-ID: <200711162053.lAGKrpZO013523@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 579\n          for <source@collab.sakaiproject.org>;\n          Fri, 16 Nov 2007 20:59:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8BF7B23B47\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 20:59:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGKrpjA013525\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 15:53:51 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGKrpZO013523\n\tfor source@collab.sakaiproject.org; Fri, 16 Nov 2007 15:53:51 -0500\nDate: Fri, 16 Nov 2007 15:53:51 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 16 15:59:32 2007\nX-DSPAM-Confidence: 0.9834\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38252\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-11-16 15:53:45 -0500 (Fri, 16 Nov 2007)\nNew Revision: 38252\n\nAdded:\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/CHStoJCRMigratorImpl.java\ncontent/branches/SAK-12105/content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api/CHStoJCRMigrator.java\nRemoved:\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/CHStoJCRmigrator.java\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/ContentToJCRMigratorImpl.java\ncontent/branches/SAK-12105/content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api/ContentToJCRMigrator.java\nLog:\nSAK-12105 Added an interface for the copied part so we can use it.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Fri Nov 16 15:52:27 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 16 Nov 2007 15:52:27 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 16 Nov 2007 15:52:27 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby sleepers.mail.umich.edu () with ESMTP id lAGKqQhK006577;\n\tFri, 16 Nov 2007 15:52:26 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 473E02E4.B0C5.6125 ; \n\t16 Nov 2007 15:51:51 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A90AF7F910;\n\tFri, 16 Nov 2007 20:51:45 +0000 (GMT)\nMessage-ID: <200711162046.lAGKkBdk013500@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1018\n          for <source@collab.sakaiproject.org>;\n          Fri, 16 Nov 2007 20:51:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0036E23B47\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 20:51:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGKkC3p013502\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 15:46:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGKkBdk013500\n\tfor source@collab.sakaiproject.org; Fri, 16 Nov 2007 15:46:12 -0500\nDate: Fri, 16 Nov 2007 15:46:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38251 - db/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 16 15:52:27 2007\nX-DSPAM-Confidence: 0.9856\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38251\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-16 15:46:09 -0500 (Fri, 16 Nov 2007)\nNew Revision: 38251\n\nModified:\ndb/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionController.java\ndb/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionDriver.java\nLog:\nSAK-12208\nModified conversion utility driver and controller to allow multiple sql statements to be executed for \"create.migrate.table\" and \"drop.migrate.table\"\nSample syntax for multiple sql statements is:\nconvert.0.create.migrate.table.count=3\nconvert.0.create.migrate.table.0=create table assn_submit_fsregister ( id varchar(1024), status varchar(99))\nconvert.0.create.migrate.table.1=create index assn_submit_fsregister_id_idx on assn_submit_fsregister(id)\nconvert.0.create.migrate.table.2=create index assn_submit_fsregister_status_idx on assn_submit_fsregister(status)\n\nIf count is missing, sql statement will be taken from an entry without an index, in this form: \nconvert.0.create.migrate.table=create table assn_submit_fsregister ( id varchar(1024), status varchar(99))\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Nov 16 14:30:55 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 16 Nov 2007 14:30:55 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 16 Nov 2007 14:30:55 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby sleepers.mail.umich.edu () with ESMTP id lAGJUs3B015149;\n\tFri, 16 Nov 2007 14:30:54 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 473DEFE5.CBE45.8467 ; \n\t16 Nov 2007 14:30:50 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 86AD36B2FD;\n\tFri, 16 Nov 2007 19:30:40 +0000 (GMT)\nMessage-ID: <200711161925.lAGJP7ib013391@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 690\n          for <source@collab.sakaiproject.org>;\n          Fri, 16 Nov 2007 19:30:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 48DED21E70\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 19:30:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGJP79i013393\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 14:25:07 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGJP7ib013391\n\tfor source@collab.sakaiproject.org; Fri, 16 Nov 2007 14:25:07 -0500\nDate: Fri, 16 Nov 2007 14:25:07 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38250 - assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 16 14:30:55 2007\nX-DSPAM-Confidence: 0.9869\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38250\n\nAuthor: zqian@umich.edu\nDate: 2007-11-16 14:25:04 -0500 (Fri, 16 Nov 2007)\nNew Revision: 38250\n\nModified:\nassignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nfix to SAK-12222: Assignmets: Log in as instructor create Assignment, do not post, save as draft\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Fri Nov 16 14:17:48 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 16 Nov 2007 14:17:48 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 16 Nov 2007 14:17:48 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby flawless.mail.umich.edu () with ESMTP id lAGJHldf011795;\n\tFri, 16 Nov 2007 14:17:47 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 473DECD5.9A959.3448 ; \n\t16 Nov 2007 14:17:44 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0A7017F911;\n\tFri, 16 Nov 2007 19:17:41 +0000 (GMT)\nMessage-ID: <200711161912.lAGJC749013357@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 446\n          for <source@collab.sakaiproject.org>;\n          Fri, 16 Nov 2007 19:17:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4327D23B5E\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 19:17:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGJC7oV013359\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 14:12:07 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGJC749013357\n\tfor source@collab.sakaiproject.org; Fri, 16 Nov 2007 14:12:07 -0500\nDate: Fri, 16 Nov 2007 14:12:07 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38249 - in content/branches/SAK-12105/content-impl-jcr/impl/src/sql: . mysql\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 16 14:17:48 2007\nX-DSPAM-Confidence: 0.9836\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38249\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-11-16 14:12:05 -0500 (Fri, 16 Nov 2007)\nNew Revision: 38249\n\nAdded:\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/sql/mysql/\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/sql/mysql/setup-migration-dbtables.sql\nLog:\nSAK-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.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Fri Nov 16 13:48:32 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 16 Nov 2007 13:48:32 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 16 Nov 2007 13:48:32 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby fan.mail.umich.edu () with ESMTP id lAGImVC1009292;\n\tFri, 16 Nov 2007 13:48:31 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 473DE5F9.3B133.24781 ; \n\t16 Nov 2007 13:48:28 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 009D67F8D7;\n\tFri, 16 Nov 2007 18:36:27 +0000 (GMT)\nMessage-ID: <200711161842.lAGIgldq013276@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 142\n          for <source@collab.sakaiproject.org>;\n          Fri, 16 Nov 2007 18:36:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DDDF323B5E\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 18:47:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGIglng013278\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 13:42:47 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGIgldq013276\n\tfor source@collab.sakaiproject.org; Fri, 16 Nov 2007 13:42:47 -0500\nDate: Fri, 16 Nov 2007 13:42:47 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 16 13:48:32 2007\nX-DSPAM-Confidence: 0.9853\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38248\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-11-16 13:42:40 -0500 (Fri, 16 Nov 2007)\nNew Revision: 38248\n\nAdded:\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/CHStoJCRmigrator.java\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/ContentToJCRCopierImpl.java\ncontent/branches/SAK-12105/content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api/ContentToJCRCopier.java\nLog:\nSAK-12105 Moving some of the migration code from the jcr inspector webapp to the content-jcr-impl\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Fri Nov 16 13:47:59 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 16 Nov 2007 13:47:59 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 16 Nov 2007 13:47:59 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby faithful.mail.umich.edu () with ESMTP id lAGIlwNx012843;\n\tFri, 16 Nov 2007 13:47:58 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 473DE5D7.C072C.21813 ; \n\t16 Nov 2007 13:47:55 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 41ECB7F8D4;\n\tFri, 16 Nov 2007 18:35:52 +0000 (GMT)\nMessage-ID: <200711161842.lAGIgGZb013264@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 659\n          for <source@collab.sakaiproject.org>;\n          Fri, 16 Nov 2007 18:35:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1875023B5E\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 18:47:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGIgGFv013266\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 13:42:16 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGIgGZb013264\n\tfor source@collab.sakaiproject.org; Fri, 16 Nov 2007 13:42:16 -0500\nDate: Fri, 16 Nov 2007 13:42:16 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38247 - content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 16 13:47:59 2007\nX-DSPAM-Confidence: 0.9821\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38247\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-16 13:42:12 -0500 (Fri, 16 Nov 2007)\nNew Revision: 38247\n\nModified:\ncontent/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java\nLog:\nSAK-12105: Updated test numbers\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Fri Nov 16 13:42:04 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 16 Nov 2007 13:42:04 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 16 Nov 2007 13:42:04 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby fan.mail.umich.edu () with ESMTP id lAGIg3xT005865;\n\tFri, 16 Nov 2007 13:42:03 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 473DE474.822E8.8101 ; \n\t16 Nov 2007 13:41:59 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9085F7F89F;\n\tFri, 16 Nov 2007 18:29:55 +0000 (GMT)\nMessage-ID: <200711161836.lAGIaCem013238@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 960\n          for <source@collab.sakaiproject.org>;\n          Fri, 16 Nov 2007 18:29:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 81E9D23ADD\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 18:41:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGIaCJM013240\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 13:36:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGIaCem013238\n\tfor source@collab.sakaiproject.org; Fri, 16 Nov 2007 13:36:12 -0500\nDate: Fri, 16 Nov 2007 13:36:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38245 - in content/branches/SAK-12105/content-test/test/src: java/org/sakaiproject/content/test resources\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 16 13:42:04 2007\nX-DSPAM-Confidence: 0.8467\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38245\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-16 13:36:05 -0500 (Fri, 16 Nov 2007)\nNew Revision: 38245\n\nModified:\ncontent/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java\ncontent/branches/SAK-12105/content-test/test/src/resources/testBeans.xml\nLog:\nSAK-12105: Fixed up test slightly to try to get it to run under 2.4.x\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Fri Nov 16 13:27:47 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 16 Nov 2007 13:27:47 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 16 Nov 2007 13:27:47 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby casino.mail.umich.edu () with ESMTP id lAGIRk5L032259;\n\tFri, 16 Nov 2007 13:27:46 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 473DE112.557C6.14971 ; \n\t16 Nov 2007 13:27:33 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 44A9A7F892;\n\tFri, 16 Nov 2007 18:15:31 +0000 (GMT)\nMessage-ID: <200711161821.lAGILvFP013213@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 347\n          for <source@collab.sakaiproject.org>;\n          Fri, 16 Nov 2007 18:15:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 555E823B1C\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 18:27:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGILv0c013215\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 13:21:57 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGILvFP013213\n\tfor source@collab.sakaiproject.org; Fri, 16 Nov 2007 13:21:57 -0500\nDate: Fri, 16 Nov 2007 13:21:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 16 13:27:47 2007\nX-DSPAM-Confidence: 0.9858\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38244\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-16 13:21:23 -0500 (Fri, 16 Nov 2007)\nNew Revision: 38244\n\nAdded:\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/ComponentMBeanRegistration.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/ComponentMBeanRegistrationMBean.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/SpringComponentManager.java\ncomponent/branches/SAK-12134/component-loader/component-loader-server/impl/src/java/org/sakaiproject/component/loader/server/SakaiContextConfig.java\nModified:\ncomponent/branches/SAK-12134/component-api/api/pom.xml\ncomponent/branches/SAK-12134/component-api/component/pom.xml\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/impl/SpringCompMgr.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/loader/shared/SharedComponentManager.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/ComponentsLoader.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/util/NoisierDefaultListableBeanFactory.java\ncomponent/branches/SAK-12134/component-impl/impl/pom.xml\ncomponent/branches/SAK-12134/component-impl/pack/pom.xml\ncomponent/branches/SAK-12134/component-loader/component-loader-common/impl/\ncomponent/branches/SAK-12134/component-loader/component-loader-common/impl/pom.xml\ncomponent/branches/SAK-12134/component-loader/component-loader-server/impl/\ncomponent/branches/SAK-12134/component-loader/component-loader-server/impl/pom.xml\ncomponent/branches/SAK-12134/component-loader/component-loader-server/impl/src/java/org/sakaiproject/component/loader/server/SakaiLoader.java\ncomponent/branches/SAK-12134/component-loader/pom.xml\ncomponent/branches/SAK-12134/component-shared-deploy/pom.xml\ncomponent/branches/SAK-12134/pom.xml\nLog:\nSAK-12134\nAdded JMX registrations for the Beans\nAdded a ContextConfig to control the loading of webapps\nAdded memory analysis on a per webapp basis\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Fri Nov 16 12:49:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 16 Nov 2007 12:49:43 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 16 Nov 2007 12:49:43 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby jacknife.mail.umich.edu () with ESMTP id lAGHnghe019576;\n\tFri, 16 Nov 2007 12:49:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 473DD82E.E91D9.14457 ; \n\t16 Nov 2007 12:49:37 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4E2DC7F56E;\n\tFri, 16 Nov 2007 17:49:33 +0000 (GMT)\nMessage-ID: <200711161744.lAGHi7Oe013119@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 189\n          for <source@collab.sakaiproject.org>;\n          Fri, 16 Nov 2007 17:49:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C50C023B40\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 17:49:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGHi71V013121\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 12:44:07 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGHi7Oe013119\n\tfor source@collab.sakaiproject.org; Fri, 16 Nov 2007 12:44:07 -0500\nDate: Fri, 16 Nov 2007 12:44:07 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38243 - memory/trunk/memory-impl/impl/src/java/org/sakaiproject/memory/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 16 12:49:43 2007\nX-DSPAM-Confidence: 0.9811\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38243\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-16 12:44:00 -0500 (Fri, 16 Nov 2007)\nNew Revision: 38243\n\nModified:\nmemory/trunk/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MultiRefCacheImpl.java\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-12116\nFixed\n\nNow using thread safe iterator mechanism. (I hope)\n\nTested locally with no problems.\n\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom bkirschn@umich.edu Fri Nov 16 12:38:12 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 16 Nov 2007 12:38:12 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 16 Nov 2007 12:38:12 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby godsend.mail.umich.edu () with ESMTP id lAGHcBkJ024902;\n\tFri, 16 Nov 2007 12:38:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 473DD57C.A47AF.22366 ; \n\t16 Nov 2007 12:38:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 363E0651F2;\n\tFri, 16 Nov 2007 17:38:04 +0000 (GMT)\nMessage-ID: <200711161732.lAGHWRcA013105@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 747\n          for <source@collab.sakaiproject.org>;\n          Fri, 16 Nov 2007 17:37:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3D27F1D5FB\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 17:37:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGHWRTb013107\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 12:32:27 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGHWRcA013105\n\tfor source@collab.sakaiproject.org; Fri, 16 Nov 2007 12:32:27 -0500\nDate: Fri, 16 Nov 2007 12:32:27 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: bkirschn@umich.edu\nSubject: [sakai] svn commit: r38242 - osp/trunk/matrix/api-impl/src/java/org/theospi/portfolio/matrix\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 16 12:38:12 2007\nX-DSPAM-Confidence: 0.8436\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38242\n\nAuthor: bkirschn@umich.edu\nDate: 2007-11-16 12:32:25 -0500 (Fri, 16 Nov 2007)\nNew Revision: 38242\n\nModified:\nosp/trunk/matrix/api-impl/src/java/org/theospi/portfolio/matrix/HibernateMatrixManagerImpl.java\nLog:\nSAK-12198 fix crash when attachments/artifacts are hidden\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom antranig@caret.cam.ac.uk Fri Nov 16 12:30:33 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 16 Nov 2007 12:30:33 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 16 Nov 2007 12:30:33 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby sleepers.mail.umich.edu () with ESMTP id lAGHUWEw000351;\n\tFri, 16 Nov 2007 12:30:32 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 473DD3B3.2FCF0.20896 ; \n\t16 Nov 2007 12:30:30 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 18DCC7F7E9;\n\tFri, 16 Nov 2007 17:30:26 +0000 (GMT)\nMessage-ID: <200711161720.lAGHKeWj013001@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 738\n          for <source@collab.sakaiproject.org>;\n          Fri, 16 Nov 2007 17:25:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A38CC237A9\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 17:25:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGHKeRC013003\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 12:20:40 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGHKeWj013001\n\tfor source@collab.sakaiproject.org; Fri, 16 Nov 2007 12:20:40 -0500\nDate: Fri, 16 Nov 2007 12:20:40 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: antranig@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 16 12:30:33 2007\nX-DSPAM-Confidence: 0.7551\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38241\n\nAuthor: antranig@caret.cam.ac.uk\nDate: 2007-11-16 12:20:00 -0500 (Fri, 16 Nov 2007)\nNew Revision: 38241\n\nModified:\nentity/branches/SAK-12211/entity-api/api/src/java/org/sakaiproject/entity/api/EntityManager.java\nentity/branches/SAK-12211/entity-api/api/src/java/org/sakaiproject/entity/api/Reference.java\nentity/branches/SAK-12211/entity-api/api/src/java/org/sakaiproject/entity/api/ResourceProperties.java\nentity/branches/SAK-12211/entity-impl/impl/src/java/org/sakaiproject/entity/impl/EntityManagerComponent.java\nentity/branches/SAK-12211/entity-impl/impl/src/java/org/sakaiproject/entity/impl/ReferenceComponent.java\nentity/branches/SAK-12211/entity-impl/impl/src/java/org/sakaiproject/entity/impl/ReferenceVectorComponent.java\nLog:\nSAK-12211: Working version with invalid casts removed and generic types wherever appropriate.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom antranig@caret.cam.ac.uk Fri Nov 16 12:28:10 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 16 Nov 2007 12:28:10 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 16 Nov 2007 12:28:10 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby flawless.mail.umich.edu () with ESMTP id lAGHSAlk004823;\n\tFri, 16 Nov 2007 12:28:10 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 473DD323.BDDEB.6296 ; \n\t16 Nov 2007 12:28:07 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EEF567F831;\n\tFri, 16 Nov 2007 17:28:02 +0000 (GMT)\nMessage-ID: <200711161713.lAGHDair012839@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 832\n          for <source@collab.sakaiproject.org>;\n          Fri, 16 Nov 2007 17:18:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AE9F423B1C\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 17:18:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGHDb04012841\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 12:13:37 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGHDair012839\n\tfor source@collab.sakaiproject.org; Fri, 16 Nov 2007 12:13:36 -0500\nDate: Fri, 16 Nov 2007 12:13:36 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: antranig@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 16 12:28:10 2007\nX-DSPAM-Confidence: 0.7551\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38240\n\nAuthor: antranig@caret.cam.ac.uk\nDate: 2007-11-16 12:12:40 -0500 (Fri, 16 Nov 2007)\nNew Revision: 38240\n\nModified:\nsite/branches/SAK-12203/site-api/api/src/java/org/sakaiproject/site/api/Site.java\nsite/branches/SAK-12203/site-api/api/src/java/org/sakaiproject/site/api/SitePage.java\nsite/branches/SAK-12203/site-api/api/src/java/org/sakaiproject/site/api/SiteService.java\nsite/branches/SAK-12203/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseGroup.java\nsite/branches/SAK-12203/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSite.java\nsite/branches/SAK-12203/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSitePage.java\nsite/branches/SAK-12203/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseSiteService.java\nsite/branches/SAK-12203/site-impl/impl/src/java/org/sakaiproject/site/impl/BaseToolConfiguration.java\nsite/branches/SAK-12203/site-impl/impl/src/java/org/sakaiproject/site/impl/DbSiteService.java\nsite/branches/SAK-12203/site-impl/impl/src/java/org/sakaiproject/site/impl/ResourceVector.java\nLog:\nSAK-12203: Working version with invalid casts removed and generic types wherever appropriate.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Nov 16 11:06:03 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 16 Nov 2007 11:06:03 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 16 Nov 2007 11:06:03 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby godsend.mail.umich.edu () with ESMTP id lAGG62tE000922;\n\tFri, 16 Nov 2007 11:06:02 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 473DBFE4.A26A3.27481 ; \n\t16 Nov 2007 11:05:59 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 820027C6CB;\n\tFri, 16 Nov 2007 16:05:53 +0000 (GMT)\nMessage-ID: <200711161600.lAGG0SlJ012705@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 824\n          for <source@collab.sakaiproject.org>;\n          Fri, 16 Nov 2007 16:05:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 18A3723AD3\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 16:05:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGG0Snd012707\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 11:00:28 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGG0SlJ012705\n\tfor source@collab.sakaiproject.org; Fri, 16 Nov 2007 11:00:28 -0500\nDate: Fri, 16 Nov 2007 11:00:28 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38239 - reference/trunk/docs/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 16 11:06:03 2007\nX-DSPAM-Confidence: 0.9870\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38239\n\nAuthor: zqian@umich.edu\nDate: 2007-11-16 11:00:27 -0500 (Fri, 16 Nov 2007)\nNew Revision: 38239\n\nModified:\nreference/trunk/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql\nreference/trunk/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\nLog:\nfix to SAK-12207: New db field needs to be indexed\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Fri Nov 16 08:54:49 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 16 Nov 2007 08:54:49 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 16 Nov 2007 08:54:49 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby faithful.mail.umich.edu () with ESMTP id lAGDsmbe006673;\n\tFri, 16 Nov 2007 08:54:48 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 473DA122.F086F.7572 ; \n\t16 Nov 2007 08:54:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 773887C6CB;\n\tFri, 16 Nov 2007 13:54:47 +0000 (GMT)\nMessage-ID: <200711161349.lAGDnEas012410@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 380\n          for <source@collab.sakaiproject.org>;\n          Fri, 16 Nov 2007 13:54:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CDA9F1DB54\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 13:54:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGDnEYL012412\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 08:49:14 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGDnEas012410\n\tfor source@collab.sakaiproject.org; Fri, 16 Nov 2007 08:49:14 -0500\nDate: Fri, 16 Nov 2007 08:49:14 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38236 - content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 16 08:54:49 2007\nX-DSPAM-Confidence: 0.8499\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38236\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-16 08:49:11 -0500 (Fri, 16 Nov 2007)\nNew Revision: 38236\n\nModified:\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\nLog:\nSAK-12168\nAvoid checking for availability when user is admin (super-user)\n\nsvn merge -c38103 https://source.sakaiproject.org/svn/content/trunk/ .\nC    content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Fri Nov 16 08:49:09 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 16 Nov 2007 08:49:09 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 16 Nov 2007 08:49:09 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby casino.mail.umich.edu () with ESMTP id lAGDn9EE018255;\n\tFri, 16 Nov 2007 08:49:09 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 473D9FCF.D9F8.31421 ; \n\t16 Nov 2007 08:49:06 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6D0F17531F;\n\tFri, 16 Nov 2007 13:49:07 +0000 (GMT)\nMessage-ID: <200711161343.lAGDhUlw012398@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 192\n          for <source@collab.sakaiproject.org>;\n          Fri, 16 Nov 2007 13:48:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BA1431DB54\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 13:48:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGDhUqk012400\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 08:43:30 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGDhUlw012398\n\tfor source@collab.sakaiproject.org; Fri, 16 Nov 2007 08:43:30 -0500\nDate: Fri, 16 Nov 2007 08:43:30 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38235 - content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 16 08:49:09 2007\nX-DSPAM-Confidence: 0.9856\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38235\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-16 08:43:27 -0500 (Fri, 16 Nov 2007)\nNew Revision: 38235\n\nModified:\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\nLog:\nSAK-12126\nClear thread-local cache when removing resources.\n\nsvn merge -c38056 https://source.sakaiproject.org/svn/content/trunk/ .\nC    content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Fri Nov 16 07:55:29 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 16 Nov 2007 07:55:29 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 16 Nov 2007 07:55:29 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby jacknife.mail.umich.edu () with ESMTP id lAGCtS5t008952;\n\tFri, 16 Nov 2007 07:55:28 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 473D933B.1C412.11197 ; \n\t16 Nov 2007 07:55:26 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 940807DB73;\n\tFri, 16 Nov 2007 12:55:26 +0000 (GMT)\nMessage-ID: <200711161249.lAGCnupu012104@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 179\n          for <source@collab.sakaiproject.org>;\n          Fri, 16 Nov 2007 12:55:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 081A5239D5\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 12:55:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGCnug0012106\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 07:49:56 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGCnupu012104\n\tfor source@collab.sakaiproject.org; Fri, 16 Nov 2007 07:49:56 -0500\nDate: Fri, 16 Nov 2007 07:49:56 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38234 - content/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 16 07:55:29 2007\nX-DSPAM-Confidence: 0.9873\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38234\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-16 07:49:53 -0500 (Fri, 16 Nov 2007)\nNew Revision: 38234\n\nModified:\ncontent/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java\nLog:\nSAK-11767 \nMerging changes from SAK-11767 branch to 2.4.x branch\n\nsvn merge -c36525 https://source.sakaiproject.org/svn/content/branches/SAK-11767/ .\nU    content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\nC    content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java\nU    content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesMetadata.java\nU    content-impl/impl/src/java/org/sakaiproject/content/impl/BasicMultiFileUploadPipe.java\nU    content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java\nU    content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\nU    content-impl/impl/src/java/org/sakaiproject/content/types/FolderType.java\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gopal.ramasammycook@gmail.com Fri Nov 16 06:35:07 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 16 Nov 2007 06:35:07 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 16 Nov 2007 06:35:07 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby chaos.mail.umich.edu () with ESMTP id lAGBZ68E003452;\n\tFri, 16 Nov 2007 06:35:06 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 473D8062.8A213.16517 ; \n\t16 Nov 2007 06:35:01 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0E60C7F1BD;\n\tFri, 16 Nov 2007 11:35:18 +0000 (GMT)\nMessage-ID: <200711161129.lAGBTJMD012035@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 770\n          for <source@collab.sakaiproject.org>;\n          Fri, 16 Nov 2007 11:34:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A238223994\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 11:34:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAGBTKNW012037\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 06:29:20 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAGBTJMD012035\n\tfor source@collab.sakaiproject.org; Fri, 16 Nov 2007 06:29:19 -0500\nDate: Fri, 16 Nov 2007 06:29:19 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f\nTo: source@collab.sakaiproject.org\nFrom: gopal.ramasammycook@gmail.com\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov 16 06:35:07 2007\nX-DSPAM-Confidence: 0.8435\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38233\n\nAuthor: gopal.ramasammycook@gmail.com\nDate: 2007-11-16 06:28:35 -0500 (Fri, 16 Nov 2007)\nNew Revision: 38233\n\nModified:\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/AssessmentSettingsBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SaveAssessmentSettings.java\nsam/branches/SAK-12065/samigo-app/src/webapp/jsf/author/authorSettings.jsp\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/integrated/AuthzQueriesFacade.java\nLog:\nSAK-12065 Functionality complete. Tidying up loose ends like layout issues etc. \n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Nov 15 21:30:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 21:30:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 21:30:02 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby awakenings.mail.umich.edu () with ESMTP id lAG2U0uT025906;\n\tThu, 15 Nov 2007 21:30:00 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 473D00A1.82784.5968 ; \n\t15 Nov 2007 21:29:56 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BE2BD7E77C;\n\tFri, 16 Nov 2007 02:29:47 +0000 (GMT)\nMessage-ID: <200711160224.lAG2OFUo011036@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 640\n          for <source@collab.sakaiproject.org>;\n          Fri, 16 Nov 2007 02:29:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 02AD921844\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 02:29:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAG2OFSM011038\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 21:24:15 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAG2OFUo011036\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 21:24:15 -0500\nDate: Thu, 15 Nov 2007 21:24:15 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38232 - assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 21:30:02 2007\nX-DSPAM-Confidence: 0.9862\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38232\n\nAuthor: zqian@umich.edu\nDate: 2007-11-15 21:24:13 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38232\n\nModified:\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nfix 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\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Thu Nov 15 20:28:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 20:28:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 20:28:51 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby jacknife.mail.umich.edu () with ESMTP id lAG1Sov1003885;\n\tThu, 15 Nov 2007 20:28:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 473CF24C.79D0B.29579 ; \n\t15 Nov 2007 20:28:47 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 46CEC7D596;\n\tFri, 16 Nov 2007 01:28:36 +0000 (GMT)\nMessage-ID: <200711160123.lAG1N73f010867@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 7\n          for <source@collab.sakaiproject.org>;\n          Fri, 16 Nov 2007 01:28:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 451C91F4C4\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 01:28:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAG1N7us010869\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 20:23:07 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAG1N73f010867\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 20:23:07 -0500\nDate: Thu, 15 Nov 2007 20:23:07 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38231 - content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/types\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 20:28:51 2007\nX-DSPAM-Confidence: 0.9845\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38231\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-15 20:23:03 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38231\n\nModified:\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/types/FolderType.java\nLog:\nSAK-11790\nRemove member-count as a condition of removing a folder\n\nsvn merge -c38059 https://source.sakaiproject.org/svn/content/trunk/ .\nU    content-impl/impl/src/java/org/sakaiproject/content/types/FolderType.java\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Thu Nov 15 20:18:27 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 20:18:27 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 20:18:27 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby score.mail.umich.edu () with ESMTP id lAG1IPQq005250;\n\tThu, 15 Nov 2007 20:18:25 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 473CEFDB.BB008.1478 ; \n\t15 Nov 2007 20:18:22 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 660CF7EC52;\n\tFri, 16 Nov 2007 01:18:11 +0000 (GMT)\nMessage-ID: <200711160112.lAG1ClPq010762@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 590\n          for <source@collab.sakaiproject.org>;\n          Fri, 16 Nov 2007 01:17:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1132A21844\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 01:17:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAG1CldL010764\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 20:12:47 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAG1ClPq010762\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 20:12:47 -0500\nDate: Thu, 15 Nov 2007 20:12:47 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 20:18:27 2007\nX-DSPAM-Confidence: 0.8483\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38230\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-15 20:12:36 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38230\n\nModified:\ncontent/branches/sakai_2-4-x/content-bundles/types.properties\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java\ncontent/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/FilePickerAction.java\ncontent/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\nLog:\nSAK-7182\nMake sure to delete partial records for resources when storing the resource body fails.\nLog stack traces when storing resource bodies fails.\nDisplay message to user when creation of resource fails due to server-overload.\n\nsvn merge -c35960 https://source.sakaiproject.org/svn/content/trunk/ .\nC    content-bundles/types.properties\nU    content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\nU    content-tool/tool/src/java/org/sakaiproject/content/tool/FilePickerAction.java\nC    content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java\nU    content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Thu Nov 15 19:55:18 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 19:55:18 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 19:55:18 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby brazil.mail.umich.edu () with ESMTP id lAG0tIu6028597;\n\tThu, 15 Nov 2007 19:55:18 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 473CEA64.A8F8E.7836 ; \n\t15 Nov 2007 19:55:03 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9CAE8796E6;\n\tFri, 16 Nov 2007 00:47:56 +0000 (GMT)\nMessage-ID: <200711160049.lAG0nXdx010608@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 239\n          for <source@collab.sakaiproject.org>;\n          Fri, 16 Nov 2007 00:47:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A87291D0AE\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 00:54:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAG0nXuJ010610\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 19:49:33 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAG0nXdx010608\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 19:49:33 -0500\nDate: Thu, 15 Nov 2007 19:49:33 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38229 - content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 19:55:18 2007\nX-DSPAM-Confidence: 0.9833\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38229\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-15 19:49:30 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38229\n\nModified:\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\nLog:\nSAK-11187\nConverted to SAX reads \n\nsvn merge -c34100 https://source.sakaiproject.org/svn/content/trunk/ .\nU    content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Thu Nov 15 19:53:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 19:53:37 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 19:53:37 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby godsend.mail.umich.edu () with ESMTP id lAG0rZZw032503;\n\tThu, 15 Nov 2007 19:53:35 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 473CEA01.40DDF.26761 ; \n\t15 Nov 2007 19:53:24 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E9339796E6;\n\tFri, 16 Nov 2007 00:46:02 +0000 (GMT)\nMessage-ID: <200711160047.lAG0lqHj010596@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 585\n          for <source@collab.sakaiproject.org>;\n          Fri, 16 Nov 2007 00:45:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 173E71D0AE\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 00:52:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAG0lqUb010598\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 19:47:52 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAG0lqHj010596\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 19:47:52 -0500\nDate: Thu, 15 Nov 2007 19:47:52 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38228 - db/branches/sakai_2-4-x/db-util/storage/src/java/org/sakaiproject/util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 19:53:37 2007\nX-DSPAM-Confidence: 0.9842\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38228\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-15 19:47:49 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38228\n\nModified:\ndb/branches/sakai_2-4-x/db-util/storage/src/java/org/sakaiproject/util/BaseDbSingleStorage.java\nLog:\nSAK-11187\nBaseDbSingleStorage need SAX handlers\n\nsvn merge -c34101 https://source.sakaiproject.org/svn/db/trunk/ .\nU    db-util/storage/src/java/org/sakaiproject/util/BaseDbSingleStorage.java\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Thu Nov 15 19:43:34 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 19:43:34 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 19:43:34 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby jacknife.mail.umich.edu () with ESMTP id lAG0hXlO019456;\n\tThu, 15 Nov 2007 19:43:33 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 473CE7AF.4E232.25667 ; \n\t15 Nov 2007 19:43:30 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DACE17EAB5;\n\tFri, 16 Nov 2007 00:36:23 +0000 (GMT)\nMessage-ID: <200711160037.lAG0bxap010499@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 69\n          for <source@collab.sakaiproject.org>;\n          Fri, 16 Nov 2007 00:36:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 005DB238C3\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 00:43:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAG0bxgv010501\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 19:37:59 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAG0bxap010499\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 19:37:59 -0500\nDate: Thu, 15 Nov 2007 19:37:59 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38227 - util/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 19:43:34 2007\nX-DSPAM-Confidence: 0.9823\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38227\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-15 19:37:54 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38227\n\nModified:\nutil/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util/DefaultEntityHandler.java\nutil/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util/SAXEntityHandler.java\nutil/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util/SAXEntityReader.java\nutil/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util/Xml.java\nLog:\nSAK-11107\nMissing Javadoc\n\nsvn merge -c33914 https://source.sakaiproject.org/svn/util/trunk/ .\nU    util-util/util/src/java/org/sakaiproject/util/Xml.java\nU    util-util/util/src/java/org/sakaiproject/util/SAXEntityReader.java\nU    util-util/util/src/java/org/sakaiproject/util/DefaultEntityHandler.java\nU    util-util/util/src/java/org/sakaiproject/util/SAXEntityHandler.java\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Thu Nov 15 19:40:20 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 19:40:20 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 19:40:20 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby chaos.mail.umich.edu () with ESMTP id lAG0eIlu017989;\n\tThu, 15 Nov 2007 19:40:18 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 473CE6EE.13760.8203 ; \n\t15 Nov 2007 19:40:16 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8E1317EAB5;\n\tFri, 16 Nov 2007 00:33:10 +0000 (GMT)\nMessage-ID: <200711160034.lAG0YoOj010485@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 912\n          for <source@collab.sakaiproject.org>;\n          Fri, 16 Nov 2007 00:32:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5D753219A0\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 00:39:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAG0Yo3o010487\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 19:34:50 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAG0YoOj010485\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 19:34:50 -0500\nDate: Thu, 15 Nov 2007 19:34:50 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38226 - entity/branches/sakai_2-4-x/entity-api/api/src/java/org/sakaiproject/entity/api\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 19:40:20 2007\nX-DSPAM-Confidence: 0.9827\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38226\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-15 19:34:47 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38226\n\nModified:\nentity/branches/sakai_2-4-x/entity-api/api/src/java/org/sakaiproject/entity/api/ResourceProperties.java\nLog:\nSAK-11107\nMissing Javadoc\n\nsvn merge -c33915 https://source.sakaiproject.org/svn/entity/trunk/ .\nU    entity-api/api/src/java/org/sakaiproject/entity/api/ResourceProperties.java\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Thu Nov 15 19:35:16 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 19:35:16 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 19:35:16 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby panther.mail.umich.edu () with ESMTP id lAG0ZFtg005083;\n\tThu, 15 Nov 2007 19:35:15 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 473CE5BC.EB5A2.20291 ; \n\t15 Nov 2007 19:35:11 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 159DF7EC00;\n\tFri, 16 Nov 2007 00:28:01 +0000 (GMT)\nMessage-ID: <200711160029.lAG0Tfcb010388@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 356\n          for <source@collab.sakaiproject.org>;\n          Fri, 16 Nov 2007 00:27:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C3073219A0\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 00:34:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAG0Tg3Q010390\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 19:29:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAG0Tfcb010388\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 19:29:41 -0500\nDate: Thu, 15 Nov 2007 19:29:41 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 19:35:16 2007\nX-DSPAM-Confidence: 0.9856\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38225\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-15 19:29:34 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38225\n\nModified:\nentity/branches/sakai_2-4-x/entity-api/api/src/java/org/sakaiproject/entity/api/ResourceProperties.java\nentity/branches/sakai_2-4-x/entity-util/util/src/java/org/sakaiproject/util/BaseResourceProperties.java\nLog:\nSAK-11107\nChanges to ResourceProperties to allow SAX based readers for properties\n\nsvn merge -c33909 https://source.sakaiproject.org/svn/entity/trunk/ .\nU    entity-api/api/src/java/org/sakaiproject/entity/api/ResourceProperties.java\nU    entity-util/util/src/java/org/sakaiproject/util/BaseResourceProperties.java\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Thu Nov 15 19:29:06 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 19:29:06 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 19:29:06 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby mission.mail.umich.edu () with ESMTP id lAG0T2ft026424;\n\tThu, 15 Nov 2007 19:29:02 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 473CE449.48C45.28140 ; \n\t15 Nov 2007 19:29:00 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4C5DC7EBE3;\n\tFri, 16 Nov 2007 00:21:51 +0000 (GMT)\nMessage-ID: <200711160023.lAG0NPN8010352@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 220\n          for <source@collab.sakaiproject.org>;\n          Fri, 16 Nov 2007 00:21:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 55A69219A0\n\tfor <source@collab.sakaiproject.org>; Fri, 16 Nov 2007 00:28:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAG0NPL7010354\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 19:23:25 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAG0NPN8010352\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 19:23:25 -0500\nDate: Thu, 15 Nov 2007 19:23:25 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38224 - util/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 19:29:06 2007\nX-DSPAM-Confidence: 0.9844\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38224\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-15 19:23:18 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38224\n\nAdded:\nutil/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util/DefaultEntityHandler.java\nutil/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util/SAXEntityHandler.java\nutil/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util/SAXEntityReader.java\nModified:\nutil/branches/sakai_2-4-x/util-util/util/src/java/org/sakaiproject/util/Xml.java\nLog:\nSAK-11107\nUtility classes to enable SAX based parsing of XML Blobs\n\nsvn merge -c33910 https://source.sakaiproject.org/svn/util/trunk/ .\nU    util-util/util/src/java/org/sakaiproject/util/Xml.java\nA    util-util/util/src/java/org/sakaiproject/util/SAXEntityReader.java\nA    util-util/util/src/java/org/sakaiproject/util/DefaultEntityHandler.java\nA    util-util/util/src/java/org/sakaiproject/util/SAXEntityHandler.java\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom john.ellis@rsmart.com Thu Nov 15 18:15:45 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 18:15:45 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 18:15:45 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby sleepers.mail.umich.edu () with ESMTP id lAFNFh8U007958;\n\tThu, 15 Nov 2007 18:15:43 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 473CD319.93446.26848 ; \n\t15 Nov 2007 18:15:40 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 68B117D0F6;\n\tThu, 15 Nov 2007 23:15:17 +0000 (GMT)\nMessage-ID: <200711152309.lAFN9eso010018@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 477\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 23:14:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A0AC6238C4\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 23:14:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFN9foU010020\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 18:09:41 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFN9eso010018\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 18:09:40 -0500\nDate: Thu, 15 Nov 2007 18:09:40 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to john.ellis@rsmart.com using -f\nTo: source@collab.sakaiproject.org\nFrom: john.ellis@rsmart.com\nSubject: [sakai] svn commit: r38223 - metaobj/trunk/metaobj-util/tool-lib/src/java/org/sakaiproject/metaobj/utils/xml\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 18:15:45 2007\nX-DSPAM-Confidence: 0.8420\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38223\n\nAuthor: john.ellis@rsmart.com\nDate: 2007-11-15 18:09:31 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38223\n\nModified:\nmetaobj/trunk/metaobj-util/tool-lib/src/java/org/sakaiproject/metaobj/utils/xml/ResourceUriResolver.java\nLog:\nSAK-12218\nadded code to properly deal with external urls\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Thu Nov 15 16:02:59 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 16:02:59 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 16:02:59 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby fan.mail.umich.edu () with ESMTP id lAFL2w6O008924;\n\tThu, 15 Nov 2007 16:02:58 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 473CB3ED.42507.18493 ; \n\t15 Nov 2007 16:02:41 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0C8B37E8FF;\n\tThu, 15 Nov 2007 21:02:29 +0000 (GMT)\nMessage-ID: <200711152057.lAFKvBeI009709@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 540\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 21:02:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6016523882\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 21:02:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFKvBTB009711\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 15:57:11 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFKvBeI009709\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 15:57:11 -0500\nDate: Thu, 15 Nov 2007 15:57:11 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r38222 - oncourse/branches/sakai_2-4-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 16:02:59 2007\nX-DSPAM-Confidence: 0.9733\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38222\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-11-15 15:57:10 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38222\n\nModified:\noncourse/branches/sakai_2-4-x/\noncourse/branches/sakai_2-4-x/.externals\nLog:\nUpdated externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Nov 15 15:18:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 15:18:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 15:18:17 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby flawless.mail.umich.edu () with ESMTP id lAFKIGSL029102;\n\tThu, 15 Nov 2007 15:18:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 473CA980.B2FC3.10218 ; \n\t15 Nov 2007 15:18:13 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id ABDD67E5CE;\n\tThu, 15 Nov 2007 20:18:04 +0000 (GMT)\nMessage-ID: <200711152012.lAFKCYVG009643@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 837\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 20:17:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 844C323828\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 20:17:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFKCYYJ009645\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 15:12:34 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFKCYVG009643\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 15:12:34 -0500\nDate: Thu, 15 Nov 2007 15:12:34 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38221 - osp/branches/osp_nightly\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 15:18:17 2007\nX-DSPAM-Confidence: 0.9782\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38221\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-15 15:12:33 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38221\n\nModified:\nosp/branches/osp_nightly/\nosp/branches/osp_nightly/.externals\nLog:\nSAK-11341 - moving /svn/discussion to /contrib/deprecated/discussion\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom antranig@caret.cam.ac.uk Thu Nov 15 14:40:38 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 14:40:38 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 14:40:38 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby chaos.mail.umich.edu () with ESMTP id lAFJeaMd014254;\n\tThu, 15 Nov 2007 14:40:36 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 473CA0A9.D447F.4432 ; \n\t15 Nov 2007 14:40:31 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A32FA7E870;\n\tThu, 15 Nov 2007 19:40:24 +0000 (GMT)\nMessage-ID: <200711151934.lAFJYwXu009603@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 815\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 19:40:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 93B582386D\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 19:40:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFJYwt2009605\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 14:34:58 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFJYwXu009603\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 14:34:58 -0500\nDate: Thu, 15 Nov 2007 14:34:58 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: antranig@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 14:40:38 2007\nX-DSPAM-Confidence: 0.9782\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38220\n\nAuthor: antranig@caret.cam.ac.uk\nDate: 2007-11-15 14:34:39 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38220\n\nAdded:\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/BeanRecord.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/ComponentApplicationContextImpl.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/ComponentManagerCore.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/ComponentsLoaderImpl.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/InvocationInterceptor.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/SkeletalBeanFactory.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/SpringComponentManagerImpl.java\nModified:\ncomponent/branches/SAK-12166/component-api/.project\nLog:\nStill fighting SVN corruption\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom antranig@caret.cam.ac.uk Thu Nov 15 14:39:15 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 14:39:15 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 14:39:15 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby brazil.mail.umich.edu () with ESMTP id lAFJdEtX005702;\n\tThu, 15 Nov 2007 14:39:14 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 473CA056.2C941.24539 ; \n\t15 Nov 2007 14:39:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D60977E86E;\n\tThu, 15 Nov 2007 19:38:53 +0000 (GMT)\nMessage-ID: <200711151933.lAFJXOaS009591@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 484\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 19:38:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BD67B2386D\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 19:38:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFJXOR9009593\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 14:33:24 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFJXOaS009591\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 14:33:24 -0500\nDate: Thu, 15 Nov 2007 14:33:24 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: antranig@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 14:39:15 2007\nX-DSPAM-Confidence: 0.8439\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38219\n\nAuthor: antranig@caret.cam.ac.uk\nDate: 2007-11-15 14:33:01 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38219\n\nAdded:\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/api/spring/\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/api/spring/SpringComponentManager.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/ComponentManagerTargetSource.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/ComponentRecord.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/ComponentRecords.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/ContextLoader.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/ContextProcessor.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/spring/StaggeredRefreshApplicationContext.java\nRemoved:\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/ContextLoader.java\nModified:\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/api/ComponentManager.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/cover/ComponentManager.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/util/ContextLoaderListener.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/util/PropertyOverrideConfigurer.java\nLog:\nRecovered from SVN corruption:\nWorking implementation of Stage 1 Updates to Component Manager \n- still fairly noisy when encountering unproxyable things\nVarious places around the framework require adjustments to new ClassLoader environment\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Thu Nov 15 14:30:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 14:30:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 14:30:25 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby flawless.mail.umich.edu () with ESMTP id lAFJUOdx029416;\n\tThu, 15 Nov 2007 14:30:24 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 473C9E3F.E459D.10001 ; \n\t15 Nov 2007 14:30:11 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A45B37CBC2;\n\tThu, 15 Nov 2007 19:30:07 +0000 (GMT)\nMessage-ID: <200711151924.lAFJOR2G009579@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 303\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 19:29:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id F2EE52386D\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 19:29:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFJOSq9009581\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 14:24:28 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFJOR2G009579\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 14:24:27 -0500\nDate: Thu, 15 Nov 2007 14:24:27 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38218 - sakai/branches/sakai_dbrefactor\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 14:30:25 2007\nX-DSPAM-Confidence: 0.9790\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38218\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-15 14:24:26 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38218\n\nModified:\nsakai/branches/sakai_dbrefactor/\nLog:\nUpdating Externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Thu Nov 15 14:29:28 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 14:29:28 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 14:29:28 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby fan.mail.umich.edu () with ESMTP id lAFJTRHR006852;\n\tThu, 15 Nov 2007 14:29:27 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 473C9E0F.1D440.5537 ; \n\t15 Nov 2007 14:29:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7F7217E851;\n\tThu, 15 Nov 2007 19:29:18 +0000 (GMT)\nMessage-ID: <200711151923.lAFJNmXr009567@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 478\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 19:28:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8F3082386D\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 19:28:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFJNmao009569\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 14:23:48 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFJNmXr009567\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 14:23:48 -0500\nDate: Thu, 15 Nov 2007 14:23:48 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38217 - sakai/branches/sakai_2-2-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 14:29:28 2007\nX-DSPAM-Confidence: 0.9802\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38217\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-15 14:23:47 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38217\n\nModified:\nsakai/branches/sakai_2-2-x/\nLog:\nUpdating externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Thu Nov 15 14:28:15 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 14:28:15 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 14:28:15 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby awakenings.mail.umich.edu () with ESMTP id lAFJSEKJ017755;\n\tThu, 15 Nov 2007 14:28:14 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 473C9DC5.A5292.18353 ; \n\t15 Nov 2007 14:28:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5FB827E85A;\n\tThu, 15 Nov 2007 19:28:05 +0000 (GMT)\nMessage-ID: <200711151922.lAFJMaV8009552@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 524\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 19:27:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 27D592386D\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 19:27:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFJMaOg009554\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 14:22:36 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFJMaV8009552\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 14:22:36 -0500\nDate: Thu, 15 Nov 2007 14:22:36 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38216 - sakai/branches/sakai_2-3-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 14:28:15 2007\nX-DSPAM-Confidence: 0.9799\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38216\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-15 14:22:34 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38216\n\nModified:\nsakai/branches/sakai_2-3-x/\nLog:\nUpdating externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Thu Nov 15 14:27:40 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 14:27:40 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 14:27:40 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby chaos.mail.umich.edu () with ESMTP id lAFJRdjs006356;\n\tThu, 15 Nov 2007 14:27:39 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 473C9DA3.2235F.9195 ; \n\t15 Nov 2007 14:27:35 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BB1FB7E854;\n\tThu, 15 Nov 2007 19:27:30 +0000 (GMT)\nMessage-ID: <200711151922.lAFJM1TR009540@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 494\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 19:27:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E113323854\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 19:27:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFJM1gT009542\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 14:22:01 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFJM1TR009540\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 14:22:01 -0500\nDate: Thu, 15 Nov 2007 14:22:01 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38215 - sakai/branches/sakai_2-4-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 14:27:40 2007\nX-DSPAM-Confidence: 0.9777\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38215\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-15 14:22:00 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38215\n\nModified:\nsakai/branches/sakai_2-4-x/\nLog:\nUpdating externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Thu Nov 15 14:27:12 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 14:27:12 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 14:27:12 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby fan.mail.umich.edu () with ESMTP id lAFJRBKj004184;\n\tThu, 15 Nov 2007 14:27:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 473C9D7F.88138.16189 ; \n\t15 Nov 2007 14:26:59 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 215967E239;\n\tThu, 15 Nov 2007 19:26:55 +0000 (GMT)\nMessage-ID: <200711151921.lAFJLJ1R009523@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 821\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 19:26:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0D0D723854\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 19:26:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFJLKrq009526\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 14:21:20 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFJLJ1R009523\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 14:21:19 -0500\nDate: Thu, 15 Nov 2007 14:21:19 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38214 - sakai/branches/sakai_2-5-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 14:27:12 2007\nX-DSPAM-Confidence: 0.9776\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38214\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-15 14:21:18 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38214\n\nModified:\nsakai/branches/sakai_2-5-x/\nLog:\nUpdated externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Thu Nov 15 14:25:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 14:25:37 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 14:25:37 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby fan.mail.umich.edu () with ESMTP id lAFJPZH4002590;\n\tThu, 15 Nov 2007 14:25:35 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 473C9D26.BAD3D.3760 ; \n\t15 Nov 2007 14:25:31 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6C80C7E851;\n\tThu, 15 Nov 2007 19:25:26 +0000 (GMT)\nMessage-ID: <200711151919.lAFJJsU6009496@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 865\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 19:25:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4B25523854\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 19:25:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFJJsFW009498\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 14:19:54 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFJJsU6009496\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 14:19:54 -0500\nDate: Thu, 15 Nov 2007 14:19:54 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38213 - sakai/trunk\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 14:25:37 2007\nX-DSPAM-Confidence: 0.9790\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38213\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-15 14:19:53 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38213\n\nModified:\nsakai/trunk/\nLog:\nUpdated externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Thu Nov 15 14:17:24 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 14:17:24 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 14:17:24 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby sleepers.mail.umich.edu () with ESMTP id lAFJHMD4012128;\n\tThu, 15 Nov 2007 14:17:22 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 473C9B30.5B585.10255 ; \n\t15 Nov 2007 14:17:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2B06D7E83D;\n\tThu, 15 Nov 2007 19:17:04 +0000 (GMT)\nMessage-ID: <200711151911.lAFJBjCm009395@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 204\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 19:16:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 96B6F1F182\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 19:16:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFJBjQH009397\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 14:11:45 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFJBjCm009395\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 14:11:45 -0500\nDate: Thu, 15 Nov 2007 14:11:45 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38212 - sakai/branches/sakai_2-2-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 14:17:24 2007\nX-DSPAM-Confidence: 0.8416\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38212\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-15 14:11:44 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38212\n\nModified:\nsakai/branches/sakai_2-2-x/.externals\nLog:\nSAK-11341 - moving /svn/discussion to /contrib/deprecated/discussion\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Thu Nov 15 14:15:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 14:15:43 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 14:15:43 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby awakenings.mail.umich.edu () with ESMTP id lAFJFgQj006386;\n\tThu, 15 Nov 2007 14:15:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 473C9AD7.A3311.21047 ; \n\t15 Nov 2007 14:15:38 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7AD747E844;\n\tThu, 15 Nov 2007 19:15:35 +0000 (GMT)\nMessage-ID: <200711151910.lAFJA9uP009375@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 234\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 19:15:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8B10D1F182\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 19:15:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFJA9AW009377\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 14:10:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFJA9uP009375\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 14:10:09 -0500\nDate: Thu, 15 Nov 2007 14:10:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38211 - sakai/branches/sakai_2-3-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 14:15:43 2007\nX-DSPAM-Confidence: 0.9775\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38211\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-15 14:10:08 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38211\n\nModified:\nsakai/branches/sakai_2-3-x/.externals\nLog:\nSAK-11341 - moving /svn/discussion to /contrib/deprecated/discussion\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Thu Nov 15 14:14:33 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 14:14:33 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 14:14:33 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby godsend.mail.umich.edu () with ESMTP id lAFJEWUN030892;\n\tThu, 15 Nov 2007 14:14:32 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 473C9A91.CFF8B.21578 ; \n\t15 Nov 2007 14:14:28 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 842847E83D;\n\tThu, 15 Nov 2007 19:14:25 +0000 (GMT)\nMessage-ID: <200711151908.lAFJ8xqr009363@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 307\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 19:14:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 11E2E1F182\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 19:14:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFJ8xqT009365\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 14:08:59 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFJ8xqr009363\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 14:08:59 -0500\nDate: Thu, 15 Nov 2007 14:08:59 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38210 - sakai/branches/sakai_2-4-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 14:14:33 2007\nX-DSPAM-Confidence: 0.9815\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38210\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-15 14:08:58 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38210\n\nModified:\nsakai/branches/sakai_2-4-x/.externals\nLog:\nSAK-11341 - moving /svn/discussion to /contrib/deprecated/discussion\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Thu Nov 15 14:13:04 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 14:13:04 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 14:13:04 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby awakenings.mail.umich.edu () with ESMTP id lAFJD3ew004533;\n\tThu, 15 Nov 2007 14:13:03 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 473C9A30.D250C.4652 ; \n\t15 Nov 2007 14:12:51 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 123B57E326;\n\tThu, 15 Nov 2007 19:12:47 +0000 (GMT)\nMessage-ID: <200711151907.lAFJ7K62009351@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 606\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 19:12:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1B4581F182\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 19:12:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFJ7LfJ009353\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 14:07:21 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFJ7K62009351\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 14:07:21 -0500\nDate: Thu, 15 Nov 2007 14:07:21 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38209 - sakai/branches/sakai_dbrefactor\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 14:13:04 2007\nX-DSPAM-Confidence: 0.9773\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38209\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-15 14:07:20 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38209\n\nModified:\nsakai/branches/sakai_dbrefactor/.externals\nLog:\nSAK-11341 - moving /svn/discussion to /contrib/deprecated/discussion\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Thu Nov 15 14:11:09 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 14:11:09 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 14:11:08 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby godsend.mail.umich.edu () with ESMTP id lAFJB7jQ028789;\n\tThu, 15 Nov 2007 14:11:07 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 473C99C6.A31BE.17310 ; \n\t15 Nov 2007 14:11:05 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1D799779D5;\n\tThu, 15 Nov 2007 19:11:00 +0000 (GMT)\nMessage-ID: <200711151905.lAFJ5XGB009339@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 137\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 19:10:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BBE471D3AD\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 19:10:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFJ5Xm3009341\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 14:05:33 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFJ5XGB009339\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 14:05:33 -0500\nDate: Thu, 15 Nov 2007 14:05:33 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38208 - sakai/branches/sakai_2-5-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 14:11:08 2007\nX-DSPAM-Confidence: 0.9772\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38208\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-15 14:05:32 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38208\n\nModified:\nsakai/branches/sakai_2-5-x/.externals\nLog:\nSAK-11341 - moving /svn/discussion to /contrib/deprecated/discussion\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Thu Nov 15 14:07:22 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 14:07:22 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 14:07:22 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby score.mail.umich.edu () with ESMTP id lAFJ7Jwk023955;\n\tThu, 15 Nov 2007 14:07:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 473C98E0.C54A7.17504 ; \n\t15 Nov 2007 14:07:16 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BE6007E838;\n\tThu, 15 Nov 2007 19:07:09 +0000 (GMT)\nMessage-ID: <200711151901.lAFJ1mpg009327@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 627\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 19:06:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2496B1FD70\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 19:06:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFJ1nup009329\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 14:01:49 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFJ1mpg009327\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 14:01:48 -0500\nDate: Thu, 15 Nov 2007 14:01:48 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38207 - sakai/trunk\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 14:07:22 2007\nX-DSPAM-Confidence: 0.9802\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38207\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-15 14:01:48 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38207\n\nModified:\nsakai/trunk/.externals\nLog:\nSAK-11341 - Remove /svn/discussion from .externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Nov 15 13:36:27 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 13:36:27 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 13:36:27 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby fan.mail.umich.edu () with ESMTP id lAFIaQCG029452;\n\tThu, 15 Nov 2007 13:36:26 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 473C918E.1FFD3.20950 ; \n\t15 Nov 2007 13:36:06 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 584D67E38E;\n\tThu, 15 Nov 2007 18:29:57 +0000 (GMT)\nMessage-ID: <200711151830.lAFIUbTw009123@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 469\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 18:29:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 929BCAF03\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 18:35:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFIUbLt009125\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 13:30:37 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFIUbTw009123\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 13:30:37 -0500\nDate: Thu, 15 Nov 2007 13:30:37 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38206 - assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 13:36:27 2007\nX-DSPAM-Confidence: 0.6950\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38206\n\nAuthor: zqian@umich.edu\nDate: 2007-11-15 13:30:30 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38206\n\nModified:\nassignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm\nassignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_new_edit_assignment.vm\nassignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm\nLog:\nfix 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\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom antranig@caret.cam.ac.uk Thu Nov 15 12:02:29 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 12:02:29 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 12:02:29 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby faithful.mail.umich.edu () with ESMTP id lAFH2RUM031830;\n\tThu, 15 Nov 2007 12:02:27 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 473C7B9D.B1B52.29151 ; \n\t15 Nov 2007 12:02:25 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8FB397E695;\n\tThu, 15 Nov 2007 17:01:15 +0000 (GMT)\nMessage-ID: <200711151656.lAFGuqjB009002@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 450\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 17:01:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9143F23788\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 17:01:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFGuqbx009004\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 11:56:52 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFGuqjB009002\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 11:56:52 -0500\nDate: Thu, 15 Nov 2007 11:56:52 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: antranig@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 12:02:29 2007\nX-DSPAM-Confidence: 0.9765\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38205\n\nAuthor: antranig@caret.cam.ac.uk\nDate: 2007-11-15 11:56:32 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38205\n\nModified:\nauthz/branches/SAK-12200/authz-api/api/src/java/org/sakaiproject/authz/api/AuthzGroup.java\nauthz/branches/SAK-12200/authz-impl/impl/src/java/org/sakaiproject/authz/impl/BaseAuthzGroup.java\nLog:\nReverted to Comparable(obj)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Nov 15 12:00:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 12:00:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 12:00:25 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby flawless.mail.umich.edu () with ESMTP id lAFH0PcH013330;\n\tThu, 15 Nov 2007 12:00:25 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 473C7B10.A1977.13483 ; \n\t15 Nov 2007 12:00:03 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 08F917E6A3;\n\tThu, 15 Nov 2007 16:58:20 +0000 (GMT)\nMessage-ID: <200711151654.lAFGs9J2008990@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 684\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 16:58:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8CAAF2381F\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 16:59:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFGs92h008992\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 11:54:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFGs9J2008990\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 11:54:09 -0500\nDate: Thu, 15 Nov 2007 11:54:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38204 - assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 12:00:25 2007\nX-DSPAM-Confidence: 0.9860\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38204\n\nAuthor: zqian@umich.edu\nDate: 2007-11-15 11:54:08 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38204\n\nModified:\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nfix 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\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Thu Nov 15 11:08:54 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 11:08:54 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 11:08:54 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby brazil.mail.umich.edu () with ESMTP id lAFG8rIC010913;\n\tThu, 15 Nov 2007 11:08:53 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 473C6F08.50FBB.3800 ; \n\t15 Nov 2007 11:08:43 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 49AC27E551;\n\tThu, 15 Nov 2007 16:08:37 +0000 (GMT)\nMessage-ID: <200711151603.lAFG3Hxw008904@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 729\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 16:08:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 090062376E\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 16:08:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFG3H9e008906\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 11:03:17 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFG3Hxw008904\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 11:03:17 -0500\nDate: Thu, 15 Nov 2007 11:03:17 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38203 - /\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 11:08:54 2007\nX-DSPAM-Confidence: 0.9810\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38203\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-15 11:03:16 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38203\n\nRemoved:\ndiscussion/\nLog:\nSAK-11341 - Moved Retired Discussion Project to contrib\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Nov 15 11:01:20 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 11:01:20 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 11:01:20 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby chaos.mail.umich.edu () with ESMTP id lAFG1JMq015681;\n\tThu, 15 Nov 2007 11:01:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 473C6D4A.50620.28475 ; \n\t15 Nov 2007 11:01:17 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E8DA87C533;\n\tThu, 15 Nov 2007 16:01:10 +0000 (GMT)\nMessage-ID: <200711151555.lAFFtmFe008888@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 425\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 16:00:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id F3C101D598\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 16:00:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFFtmv6008890\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 10:55:48 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFFtmFe008888\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 10:55:48 -0500\nDate: Thu, 15 Nov 2007 10:55:48 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38202 - in assignment/branches/sakai_2-5-x: . assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 11:01:20 2007\nX-DSPAM-Confidence: 0.9881\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38202\n\nAuthor: zqian@umich.edu\nDate: 2007-11-15 10:55:44 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38202\n\nAdded:\nassignment/branches/sakai_2-5-x/upgradeschema_mysql.config\nassignment/branches/sakai_2-5-x/upgradeschema_oracle.config\nModified:\nassignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/upgradeschema.config\nLog:\nmerge into 2.5.x the fix to SAK-12208:Assignment conversion needs to create indexed tables.Assignment conversion needs to create indexed tables\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Nov 15 10:53:32 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 10:53:32 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 10:53:32 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby awakenings.mail.umich.edu () with ESMTP id lAFFrVXZ007290;\n\tThu, 15 Nov 2007 10:53:31 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 473C6B75.C0B13.3519 ; \n\t15 Nov 2007 10:53:28 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9E4D06D2DE;\n\tThu, 15 Nov 2007 15:48:24 +0000 (GMT)\nMessage-ID: <200711151548.lAFFm2g7008861@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 603\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 15:48:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6C0331D598\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 15:53:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFFm2NI008863\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 10:48:02 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFFm2g7008861\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 10:48:02 -0500\nDate: Thu, 15 Nov 2007 10:48:02 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38201 - in assignment/trunk: . assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 10:53:32 2007\nX-DSPAM-Confidence: 0.9867\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38201\n\nAuthor: zqian@umich.edu\nDate: 2007-11-15 10:47:59 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38201\n\nModified:\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/upgradeschema.config\nassignment/trunk/upgradeschema_mysql.config\nassignment/trunk/upgradeschema_oracle.config\nLog:\nfix to SAK-12208:Assignment conversion needs to create indexed tables\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Thu Nov 15 10:47:28 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 10:47:28 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 10:47:28 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby awakenings.mail.umich.edu () with ESMTP id lAFFlRcY001869;\n\tThu, 15 Nov 2007 10:47:27 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 473C69F9.9F669.27140 ; \n\t15 Nov 2007 10:47:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BD7AD7CB7D;\n\tThu, 15 Nov 2007 15:42:03 +0000 (GMT)\nMessage-ID: <200711151541.lAFFfefl008835@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 602\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 15:41:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 149211D598\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 15:46:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFFfeLn008837\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 10:41:40 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFFfefl008835\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 10:41:40 -0500\nDate: Thu, 15 Nov 2007 10:41:40 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38200 - entity/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 10:47:28 2007\nX-DSPAM-Confidence: 0.9799\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38200\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-15 10:41:39 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38200\n\nAdded:\nentity/branches/SAK-12211/\nLog:\nSAK-12211\nNew branch for /entity/branches/SAK-12211\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gopal.ramasammycook@gmail.com Thu Nov 15 10:25:06 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 10:25:06 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 10:25:06 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby chaos.mail.umich.edu () with ESMTP id lAFFP5Y1016679;\n\tThu, 15 Nov 2007 10:25:05 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 473C64CA.7619C.23121 ; \n\t15 Nov 2007 10:25:01 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9EE417E2E4;\n\tThu, 15 Nov 2007 15:22:50 +0000 (GMT)\nMessage-ID: <200711151519.lAFFJSk5008789@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 959\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 15:22:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8692021554\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 15:24:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFFJSax008791\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 10:19:28 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFFJSk5008789\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 10:19:28 -0500\nDate: Thu, 15 Nov 2007 10:19:28 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f\nTo: source@collab.sakaiproject.org\nFrom: gopal.ramasammycook@gmail.com\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 10:25:06 2007\nX-DSPAM-Confidence: 0.9758\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38199\n\nAuthor: gopal.ramasammycook@gmail.com\nDate: 2007-11-15 10:18:53 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38199\n\nModified:\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/select/SelectActionListener.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueriesAPI.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/integrated/AuthzQueriesFacade.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/PublishedAssessmentService.java\nLog:\nSAK-12065\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Nov 15 10:24:47 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 10:24:47 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 10:24:47 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby godsend.mail.umich.edu () with ESMTP id lAFFOkkD009914;\n\tThu, 15 Nov 2007 10:24:47 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 473C64B5.69BDD.26985 ; \n\t15 Nov 2007 10:24:44 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6B79E7E391;\n\tThu, 15 Nov 2007 15:22:16 +0000 (GMT)\nMessage-ID: <200711151518.lAFFIwl6008777@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 284\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 15:21:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4485123774\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 15:24:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFFIwrf008779\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 10:18:58 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFFIwl6008777\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 10:18:58 -0500\nDate: Thu, 15 Nov 2007 10:18:58 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38198 - in assignment/trunk: . assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 10:24:47 2007\nX-DSPAM-Confidence: 0.9856\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38198\n\nAuthor: zqian@umich.edu\nDate: 2007-11-15 10:18:55 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38198\n\nModified:\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/upgradeschema.config\nassignment/trunk/upgradeschema_mysql.config\nLog:\nfix to SAK-12208:Assignment conversion needs to create indexed tables\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom kimsooil@bu.edu Thu Nov 15 10:18:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 10:18:53 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 10:18:53 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby awakenings.mail.umich.edu () with ESMTP id lAFFIqhN013014;\n\tThu, 15 Nov 2007 10:18:52 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 473C6355.951F6.18109 ; \n\t15 Nov 2007 10:18:49 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4CC417E39E;\n\tThu, 15 Nov 2007 15:16:45 +0000 (GMT)\nMessage-ID: <200711151513.lAFFDPs7008708@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 960\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 15:16:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A6330236E7\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 15:18:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFFDPMT008710\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 10:13:25 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFFDPs7008708\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 10:13:25 -0500\nDate: Thu, 15 Nov 2007 10:13:25 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to kimsooil@bu.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: kimsooil@bu.edu\nSubject: [sakai] svn commit: r38197 - mailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 10:18:53 2007\nX-DSPAM-Confidence: 0.9787\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38197\n\nAuthor: kimsooil@bu.edu\nDate: 2007-11-15 10:13:21 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38197\n\nModified:\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java\nLog:\nApplied Daniel's patch (SAK-11046)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom kimsooil@bu.edu Thu Nov 15 10:16:26 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 10:16:26 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 10:16:26 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby awakenings.mail.umich.edu () with ESMTP id lAFFGOx9011012;\n\tThu, 15 Nov 2007 10:16:24 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 473C62BE.58C3E.16590 ; \n\t15 Nov 2007 10:16:17 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D90017E373;\n\tThu, 15 Nov 2007 15:14:12 +0000 (GMT)\nMessage-ID: <200711151510.lAFFAcLu008661@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 224\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 15:13:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8C00623740\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 15:15:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFFAcCP008663\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 10:10:38 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFFAcLu008661\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 10:10:38 -0500\nDate: Thu, 15 Nov 2007 10:10:38 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to kimsooil@bu.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: kimsooil@bu.edu\nSubject: [sakai] svn commit: r38196 - mailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 10:16:25 2007\nX-DSPAM-Confidence: 0.9817\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38196\n\nAuthor: kimsooil@bu.edu\nDate: 2007-11-15 10:10:35 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38196\n\nModified:\nmailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java\nLog:\nCorrected Contributor name. (Sorry. Daniel McCallum) - no changes in codes\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom kimsooil@bu.edu Thu Nov 15 10:15:12 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 15 Nov 2007 10:15:12 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 15 Nov 2007 10:15:12 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby jacknife.mail.umich.edu () with ESMTP id lAFFFBJn007769;\n\tThu, 15 Nov 2007 10:15:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 473C6279.1D8F7.24183 ; \n\t15 Nov 2007 10:15:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 804D07E349;\n\tThu, 15 Nov 2007 15:12:52 +0000 (GMT)\nMessage-ID: <200711151508.lAFF8J60008619@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1020\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 15:12:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5BD0323740\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 15:13:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAFF8JTD008621\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 10:08:20 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAFF8J60008619\n\tfor source@collab.sakaiproject.org; Thu, 15 Nov 2007 10:08:19 -0500\nDate: Thu, 15 Nov 2007 10:08:19 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to kimsooil@bu.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: kimsooil@bu.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov 15 10:15:12 2007\nX-DSPAM-Confidence: 0.9811\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38195\n\nAuthor: kimsooil@bu.edu\nDate: 2007-11-15 10:08:04 -0500 (Thu, 15 Nov 2007)\nNew Revision: 38195\n\nAdded:\nmailtool/trunk/mailtool/src/test/\nmailtool/trunk/mailtool/src/test/org/\nmailtool/trunk/mailtool/src/test/org/sakaiproject/\nmailtool/trunk/mailtool/src/test/org/sakaiproject/tool/\nmailtool/trunk/mailtool/src/test/org/sakaiproject/tool/mailtool/\nmailtool/trunk/mailtool/src/test/org/sakaiproject/tool/mailtool/BaseMailtoolTest.java\nmailtool/trunk/mailtool/src/test/org/sakaiproject/tool/mailtool/MailtoolEmailListValidationTest.java\nmailtool/trunk/mailtool/src/test/org/sakaiproject/tool/mailtool/MailtoolEmailSenderTest.java\nmailtool/trunk/mailtool/src/test/org/sakaiproject/tool/mailtool/MailtoolRecipientsTest.java\nmailtool/trunk/mailtool/src/test/org/sakaiproject/tool/mailtool/MimeMessageFromConstraint.java\nmailtool/trunk/mailtool/src/test/org/sakaiproject/tool/mailtool/MimeMessageSender.java\nmailtool/trunk/mailtool/src/test/org/sakaiproject/tool/mailtool/MimeMessageToConstraint.java\nmailtool/trunk/mailtool/src/test/org/sakaiproject/tool/mailtool/StubMailtool.java\nmailtool/trunk/mailtool/src/test/org/sakaiproject/tool/mailtool/StubMailtoolWithMessageSink.java\nModified:\nmailtool/trunk/.classpath\nmailtool/trunk/.project\nmailtool/trunk/mailtool/pom.xml\nmailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool/EmailUser.java\nmailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool/FoothillSelector.java\nmailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java\nmailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool/SideBySideModel.java\nmailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool/UserSelector.java\nmailtool/trunk/mailtool/src/webapp/WEB-INF/faces-config.xml\nmailtool/trunk/mailtool/src/webapp/mailtool/main_onepage.jsp\nLog:\nFixed SAK-11046 (Thanks. David McCallum of Unicon)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Wed Nov 14 23:36:06 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 23:36:06 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 23:36:06 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby fan.mail.umich.edu () with ESMTP id lAF4a5tK017668;\n\tWed, 14 Nov 2007 23:36:05 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 473BCCAF.AC384.18114 ; \n\t14 Nov 2007 23:36:02 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2254D6F560;\n\tThu, 15 Nov 2007 04:35:57 +0000 (GMT)\nMessage-ID: <200711150402.lAF42Xb1030755@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 95\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 04:07:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A63E5215B8\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 04:07:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAF42YDx030757\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 23:02:34 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAF42Xb1030755\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 23:02:33 -0500\nDate: Wed, 14 Nov 2007 23:02:33 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38194 - assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 23:36:06 2007\nX-DSPAM-Confidence: 0.9873\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38194\n\nAuthor: zqian@umich.edu\nDate: 2007-11-14 23:02:32 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38194\n\nModified:\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nfix 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\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ostermmg@whitman.edu Wed Nov 14 22:52:06 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 22:52:06 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 22:52:06 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby jacknife.mail.umich.edu () with ESMTP id lAF3q5Hg025652;\n\tWed, 14 Nov 2007 22:52:05 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 473BC25F.9729D.25781 ; \n\t14 Nov 2007 22:52:02 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DC76074FF2;\n\tThu, 15 Nov 2007 03:52:00 +0000 (GMT)\nMessage-ID: <200711150346.lAF3kR7f030740@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 777\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 03:51:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 106FE215A8\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 03:51:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAF3kRUN030742\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 22:46:27 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAF3kR7f030740\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 22:46:27 -0500\nDate: Wed, 14 Nov 2007 22:46:27 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ostermmg@whitman.edu\nSubject: [sakai] svn commit: r38193 - content/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 22:52:06 2007\nX-DSPAM-Confidence: 0.8436\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38193\n\nAuthor: ostermmg@whitman.edu\nDate: 2007-11-14 22:46:22 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38193\n\nAdded:\ncontent/branches/post-2-4/\nLog:\nNew /content branch based on r38192 2.4.x branch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Wed Nov 14 22:39:31 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 22:39:31 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 22:39:31 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby godsend.mail.umich.edu () with ESMTP id lAF3dUUx032139;\n\tWed, 14 Nov 2007 22:39:30 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 473BBF6D.8D624.5812 ; \n\t14 Nov 2007 22:39:28 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B443D7D559;\n\tThu, 15 Nov 2007 03:39:23 +0000 (GMT)\nMessage-ID: <200711150334.lAF3Y3Nx030666@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 45\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 03:39:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BAFA41FD01\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 03:39:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAF3Y34h030668\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 22:34:03 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAF3Y3Nx030666\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 22:34:03 -0500\nDate: Wed, 14 Nov 2007 22:34:03 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 22:39:31 2007\nX-DSPAM-Confidence: 0.7563\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38192\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-14 22:33:53 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38192\n\nModified:\ncontent/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java\ncontent/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/content/sakai_resources_cwiz_finish.vm\ncontent/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/content/sakai_resources_properties.vm\ncontent/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/resources/sakai_create_uploads.vm\ncontent/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/resources/sakai_create_urls.vm\ncontent/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/resources/sakai_replace_file.vm\ncontent/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/resources/sakai_revise_html.vm\ncontent/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/resources/sakai_revise_text.vm\ncontent/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/resources/sakai_revise_url.vm\nLog:\nSAK-10109\nAdded method in ListItem to calculate whether item is in MyWorkspace.\nAdded conditional expressions in templates to determine whether notification widget should be shown.\n\nsvn merge -c34527 https://source.sakaiproject.org/svn/content/trunk/ .\nC    content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java\nU    content-tool/tool/src/webapp/vm/content/sakai_resources_properties.vm\nU    content-tool/tool/src/webapp/vm/content/sakai_resources_cwiz_finish.vm\nU    content-tool/tool/src/webapp/vm/resources/sakai_create_urls.vm\nU    content-tool/tool/src/webapp/vm/resources/sakai_create_uploads.vm\nU    content-tool/tool/src/webapp/vm/resources/sakai_replace_file.vm\nU    content-tool/tool/src/webapp/vm/resources/sakai_revise_url.vm\nU    content-tool/tool/src/webapp/vm/resources/sakai_revise_html.vm\nU    content-tool/tool/src/webapp/vm/resources/sakai_revise_text.vm\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Wed Nov 14 22:10:16 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 22:10:16 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 22:10:16 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby casino.mail.umich.edu () with ESMTP id lAF3AFis019388;\n\tWed, 14 Nov 2007 22:10:15 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 473BB88D.30356.28797 ; \n\t14 Nov 2007 22:10:13 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1371B7C490;\n\tThu, 15 Nov 2007 03:10:05 +0000 (GMT)\nMessage-ID: <200711150304.lAF34lRv030571@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 33\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 03:09:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AF90E1D997\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 03:09:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAF34lSR030573\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 22:04:47 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAF34lRv030571\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 22:04:47 -0500\nDate: Wed, 14 Nov 2007 22:04:47 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38191 - content/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 22:10:16 2007\nX-DSPAM-Confidence: 0.8470\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38191\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-14 22:04:44 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38191\n\nModified:\ncontent/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java\nLog:\nSAK-1357 \nupdate exception error handling\n\nsvn merge -c37387 https://source.sakaiproject.org/svn/content/trunk/ .\nU    content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Wed Nov 14 22:07:54 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 22:07:54 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 22:07:54 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby faithful.mail.umich.edu () with ESMTP id lAF37rda004114;\n\tWed, 14 Nov 2007 22:07:53 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 473BB7FE.6565F.17024 ; \n\t14 Nov 2007 22:07:50 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0AC637DB21;\n\tThu, 15 Nov 2007 03:07:41 +0000 (GMT)\nMessage-ID: <200711150302.lAF32JQA030558@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 182\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 03:07:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 898221D997\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 03:07:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAF32KnM030560\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 22:02:20 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAF32JQA030558\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 22:02:19 -0500\nDate: Wed, 14 Nov 2007 22:02:19 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38190 - in content/branches/sakai_2-4-x: content-bundles content-tool/tool/src/java/org/sakaiproject/content/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 22:07:54 2007\nX-DSPAM-Confidence: 0.8481\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38190\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-14 22:02:13 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38190\n\nModified:\ncontent/branches/sakai_2-4-x/content-bundles/types.properties\ncontent/branches/sakai_2-4-x/content-bundles/types_ar.properties\ncontent/branches/sakai_2-4-x/content-bundles/types_fr_CA.properties\ncontent/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java\nLog:\nSAK-1357 \nSAK-11814 \nfix uploading and editting UTF-8 content\n\nsvn merge -c37382 https://source.sakaiproject.org/svn/content/trunk/ .\nU    content-bundles/types_ar.properties\nU    content-bundles/types_fr_CA.properties\nU    content-bundles/types.properties\nC    content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Wed Nov 14 22:00:28 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 22:00:28 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 22:00:28 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby godsend.mail.umich.edu () with ESMTP id lAF30RdL013952;\n\tWed, 14 Nov 2007 22:00:27 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 473BB646.576.30365 ; \n\t14 Nov 2007 22:00:24 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B026A7DB21;\n\tThu, 15 Nov 2007 03:00:20 +0000 (GMT)\nMessage-ID: <200711150255.lAF2t0m5030474@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 696\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 02:59:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B3DDE21211\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 03:00:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAF2t0rG030476\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 21:55:00 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAF2t0m5030474\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 21:55:00 -0500\nDate: Wed, 14 Nov 2007 21:55:00 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 22:00:28 2007\nX-DSPAM-Confidence: 0.8504\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38189\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-14 21:54:43 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38189\n\nModified:\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BasicMultiFileUploadPipe.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BasicResourceToolActionPipe.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/ResourceTypeRegistryImpl.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/types/FileUploadType.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/types/FolderType.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/types/HtmlDocumentType.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/types/TextDocumentType.java\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/types/UrlResourceType.java\ncontent/branches/sakai_2-4-x/content-impl/pack/src/webapp/WEB-INF/components.xml\ncontent/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java\ncontent/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\ncontent/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java\ncontent/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesMetadata.java\nLog:\nSAK-11767\nAdded 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.\nReplaced 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.\nUse lazy initialization for optional permissions and groups info that may not be needed in building list view.\nAlso fixed some things related to an earlier commit that acted differently with ArrayList vs Vector.\n\nsvn merge -c36525 https://source.sakaiproject.org/svn/content/branches/SAK-11767/ .\nU    content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\nU    content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java\nU    content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java\nU    content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesMetadata.java\nU    content-impl/impl/src/java/org/sakaiproject/content/impl/BasicMultiFileUploadPipe.java\nU    content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java\nU    content-impl/impl/src/java/org/sakaiproject/content/impl/BasicResourceToolActionPipe.java\nU    content-impl/impl/src/java/org/sakaiproject/content/impl/ResourceTypeRegistryImpl.java\nU    content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\nU    content-impl/impl/src/java/org/sakaiproject/content/types/HtmlDocumentType.java\nU    content-impl/impl/src/java/org/sakaiproject/content/types/TextDocumentType.java\nU    content-impl/impl/src/java/org/sakaiproject/content/types/FileUploadType.java\nU    content-impl/impl/src/java/org/sakaiproject/content/types/UrlResourceType.java\nU    content-impl/impl/src/java/org/sakaiproject/content/types/FolderType.java\nU    content-impl/pack/src/webapp/WEB-INF/components.xml\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Wed Nov 14 21:53:00 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 21:53:00 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 21:53:00 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby flawless.mail.umich.edu () with ESMTP id lAF2qx1b008020;\n\tWed, 14 Nov 2007 21:52:59 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 473BB484.7E62E.13475 ; \n\t14 Nov 2007 21:52:55 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B3C037C43C;\n\tThu, 15 Nov 2007 02:52:56 +0000 (GMT)\nMessage-ID: <200711150247.lAF2lTkj030402@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 881\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 02:52:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7603021211\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 02:52:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAF2lT0Z030404\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 21:47:30 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAF2lTkj030402\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 21:47:29 -0500\nDate: Wed, 14 Nov 2007 21:47:29 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38188 - content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/content\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 21:53:00 2007\nX-DSPAM-Confidence: 0.8476\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38188\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-14 21:47:27 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38188\n\nModified:\ncontent/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/content/sakai_resources_list.vm\nLog:\nSAK-11666\nadded label for selectall input\n\nsvn merge -c35981 https://source.sakaiproject.org/svn/content/trunk/ .\nU    content-tool/tool/src/webapp/vm/content/sakai_resources_list.vm\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Wed Nov 14 21:29:26 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 21:29:26 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 21:29:25 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby godsend.mail.umich.edu () with ESMTP id lAF2TPD2030141;\n\tWed, 14 Nov 2007 21:29:25 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 473BAEFF.31A07.21729 ; \n\t14 Nov 2007 21:29:22 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A90FD78545;\n\tThu, 15 Nov 2007 02:29:24 +0000 (GMT)\nMessage-ID: <200711150223.lAF2NvP4030186@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 800\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 02:29:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DA17A1CDBB\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 02:29:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAF2NvZG030188\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 21:23:57 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAF2NvP4030186\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 21:23:57 -0500\nDate: Wed, 14 Nov 2007 21:23:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38187 - content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 21:29:25 2007\nX-DSPAM-Confidence: 0.9855\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38187\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-14 21:23:53 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38187\n\nModified:\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\nLog:\nSAK-10567\nUse the reference without the alternate reference when posting events to the Notification Service.\n\nsvn merge -c35928 https://source.sakaiproject.org/svn/content/trunk/ .\nU    content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Wed Nov 14 21:09:23 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 21:09:23 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 21:09:23 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby faithful.mail.umich.edu () with ESMTP id lAF29MuT003513;\n\tWed, 14 Nov 2007 21:09:22 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 473BAA4C.3F149.728 ; \n\t14 Nov 2007 21:09:19 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 661C67B53C;\n\tThu, 15 Nov 2007 02:09:18 +0000 (GMT)\nMessage-ID: <200711150203.lAF23cYl030093@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 248\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 02:08:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E2DB61FD0A\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 02:08:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAF23cY3030095\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 21:03:38 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAF23cYl030093\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 21:03:38 -0500\nDate: Wed, 14 Nov 2007 21:03:38 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 21:09:23 2007\nX-DSPAM-Confidence: 0.9856\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38186\n\nAuthor: zqian@umich.edu\nDate: 2007-11-14 21:03:33 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38186\n\nModified:\nassignment/trunk/assignment-bundles/assignment.properties\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nassignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nfix to SAK-12186:Assignments download all and upload all have inconsistent id fields - display id != eid\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Wed Nov 14 20:57:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 20:57:43 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 20:57:43 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby casino.mail.umich.edu () with ESMTP id lAF1vgcZ015592;\n\tWed, 14 Nov 2007 20:57:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 473BA790.AD9DF.11785 ; \n\t14 Nov 2007 20:57:39 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 89F257D358;\n\tThu, 15 Nov 2007 01:57:36 +0000 (GMT)\nMessage-ID: <200711150152.lAF1q9GQ030017@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 110\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 01:57:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0FBF823680\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 01:57:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAF1q9kD030019\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 20:52:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAF1q9GQ030017\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 20:52:09 -0500\nDate: Wed, 14 Nov 2007 20:52:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38185 - content/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 20:57:43 2007\nX-DSPAM-Confidence: 0.9883\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38185\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-14 20:52:06 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38185\n\nModified:\ncontent/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\ncontent/branches/sakai_2-4-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java\nLog:\nSAK-10761\nFixed the error message to display the lesser of content.upload.max and content.upload.ceiling \n\nsvn merge -c34673 https://source.sakaiproject.org/svn/content/trunk/ .\nU    content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\nU    content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Wed Nov 14 20:48:41 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 20:48:41 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 20:48:41 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby faithful.mail.umich.edu () with ESMTP id lAF1meN9024071;\n\tWed, 14 Nov 2007 20:48:40 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 473BA572.9B961.26723 ; \n\t14 Nov 2007 20:48:37 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 493037D703;\n\tThu, 15 Nov 2007 01:48:41 +0000 (GMT)\nMessage-ID: <200711150143.lAF1hETX029812@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 860\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 01:48:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 18BB423680\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 01:48:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAF1hES8029814\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 20:43:14 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAF1hETX029812\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 20:43:14 -0500\nDate: Wed, 14 Nov 2007 20:43:14 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38184 - content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/resources\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 20:48:41 2007\nX-DSPAM-Confidence: 0.7599\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38184\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-14 20:43:11 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38184\n\nModified:\ncontent/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/resources/sakai_revise_url.vm\nLog:\nSAK-10107\nSAK-10108\nSAK-10109\nSAK-10110\nEliminating some dialogs from dropbox.\n\nsvn merge -c34499 https://source.sakaiproject.org/svn/content/trunk/ .\nU    content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java\nU    content-tool/tool/src/webapp/vm/content/sakai_resources_cwiz_finish.vm\nC    content-tool/tool/src/webapp/vm/resources/sakai_revise_url.vm\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Wed Nov 14 20:38:24 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 20:38:24 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 20:38:24 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby awakenings.mail.umich.edu () with ESMTP id lAF1cNN1015939;\n\tWed, 14 Nov 2007 20:38:23 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 473BA309.EE111.17917 ; \n\t14 Nov 2007 20:38:20 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6FADF7C26D;\n\tThu, 15 Nov 2007 01:38:15 +0000 (GMT)\nMessage-ID: <200711150132.lAF1Wkpu029668@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 156\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 01:37:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 18ACC1DB4C\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 01:37:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAF1Wko9029670\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 20:32:46 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAF1Wkpu029668\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 20:32:46 -0500\nDate: Wed, 14 Nov 2007 20:32:46 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38183 - content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/resources\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 20:38:24 2007\nX-DSPAM-Confidence: 0.8473\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38183\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-14 20:32:43 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38183\n\nModified:\ncontent/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/resources/sakai_create_text.vm\nLog:\nSAK-10259 \nincrease width of textarea for creating text documents\n\nsvn merge -c31673 https://source.sakaiproject.org/svn/content/trunk/ .\nU    content-tool/tool/src/webapp/vm/resources/sakai_create_text.vm\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Wed Nov 14 20:11:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 20:11:43 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 20:11:43 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby sleepers.mail.umich.edu () with ESMTP id lAF1BhBX019025;\n\tWed, 14 Nov 2007 20:11:43 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 473B9CC9.9F2E4.13667 ; \n\t14 Nov 2007 20:11:40 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BEC97785B2;\n\tThu, 15 Nov 2007 01:11:27 +0000 (GMT)\nMessage-ID: <200711150103.lAF13VIx029518@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 343\n          for <source@collab.sakaiproject.org>;\n          Thu, 15 Nov 2007 01:11:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 098FF1BC15\n\tfor <source@collab.sakaiproject.org>; Thu, 15 Nov 2007 01:08:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAF13Vhu029520\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 20:03:31 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAF13VIx029518\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 20:03:31 -0500\nDate: Wed, 14 Nov 2007 20:03:31 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38182 - content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/content\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 20:11:43 2007\nX-DSPAM-Confidence: 0.9858\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38182\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-14 20:03:28 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38182\n\nModified:\ncontent/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/content/sakai_resources_list.vm\nLog:\nSAK-9871\nsvn merge -c31666 https://source.sakaiproject.org/svn/content/trunk/ .\nhttp://bugs.sakaiproject.org/jira/browse/SAK-9871\n- changing onclick to href for paste action\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Wed Nov 14 17:49:41 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 17:49:41 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 17:49:41 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby fan.mail.umich.edu () with ESMTP id lAEMnbp4031408;\n\tWed, 14 Nov 2007 17:49:37 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 473B7B66.2700E.2970 ; \n\t14 Nov 2007 17:49:13 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0E79A7BDA4;\n\tWed, 14 Nov 2007 22:48:54 +0000 (GMT)\nMessage-ID: <200711142243.lAEMhb7L029213@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 868\n          for <source@collab.sakaiproject.org>;\n          Wed, 14 Nov 2007 22:48:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A329F21413\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 22:48:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEMhbe9029215\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 17:43:37 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEMhb7L029213\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 17:43:37 -0500\nDate: Wed, 14 Nov 2007 17:43:37 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 17:49:41 2007\nX-DSPAM-Confidence: 0.7532\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38181\n\nAuthor: ray@media.berkeley.edu\nDate: 2007-11-14 17:43:20 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38181\n\nAdded:\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/api/ComponentsLoader.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/impl/ContextLoader.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/impl/SpringCompMgr.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/util/ComponentMap.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/util/ComponentsLoader.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/util/NoisierDefaultListableBeanFactory.java\ncomponent/trunk/component-api/component/src/java/org/springframework/\ncomponent/trunk/component-api/component/src/java/org/springframework/context/\ncomponent/trunk/component-api/component/src/java/org/springframework/context/support/\nRemoved:\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/api/spring/\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/\ncomponent/trunk/component-api/component/src/java/org/springframework/context/\ncomponent/trunk/component-api/component/src/java/org/springframework/context/support/\nModified:\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/api/ComponentManager.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/cover/ComponentManager.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/util/ContextLoaderListener.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/util/PropertyOverrideConfigurer.java\nLog:\nNOJIRA Rollback bad merge from Antranig's working branch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ostermmg@whitman.edu Wed Nov 14 17:24:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 17:24:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 17:24:02 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby fan.mail.umich.edu () with ESMTP id lAEMO0IA013282;\n\tWed, 14 Nov 2007 17:24:00 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 473B757A.C43BC.13535 ; \n\t14 Nov 2007 17:23:57 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C5220744E3;\n\tWed, 14 Nov 2007 22:23:51 +0000 (GMT)\nMessage-ID: <200711142218.lAEMINnY029055@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 489\n          for <source@collab.sakaiproject.org>;\n          Wed, 14 Nov 2007 22:23:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4918323689\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 22:23:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEMIOKT029057\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 17:18:24 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEMINnY029055\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 17:18:23 -0500\nDate: Wed, 14 Nov 2007 17:18:23 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ostermmg@whitman.edu\nSubject: [sakai] svn commit: r38180 - content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/content\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 17:24:02 2007\nX-DSPAM-Confidence: 0.7611\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38180\n\nAuthor: ostermmg@whitman.edu\nDate: 2007-11-14 17:18:18 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38180\n\nModified:\ncontent/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/content/sakai_resources_list.vm\nLog:\nSAK-10289\nIE7 - no outline around the 'add' and 'actions' buttons\n\nsvn merge -c31665 https://source.sakaiproject.org/svn/content/trunk/ .\nU    content-tool/tool/src/webapp/vm/content/sakai_resources_list.vm\n\nsvn log -r31665 https://source.sakaiproject.org/svn/content/trunk/\n------------------------------------------------------------------------\nr31665 | gsilver@umich.edu | 2007-06-19 08:36:50 -0700 (Tue, 19 Jun 2007) | 2 lines\n\nhttp://bugs.sakaiproject.org/jira/browse/SAK-10289\n- IE7 specific renderng via condt. comments\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom josrodri@iupui.edu Wed Nov 14 17:03:41 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 17:03:41 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 17:03:41 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby mission.mail.umich.edu () with ESMTP id lAEM3eYp011461;\n\tWed, 14 Nov 2007 17:03:40 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 473B70B5.CDCA9.21036 ; \n\t14 Nov 2007 17:03:36 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 99D0A7D77C;\n\tWed, 14 Nov 2007 21:40:28 +0000 (GMT)\nMessage-ID: <200711142158.lAELwDor029012@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 461\n          for <source@collab.sakaiproject.org>;\n          Wed, 14 Nov 2007 21:40:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id F356D211F7\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 22:03:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAELwD2J029014\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 16:58:13 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAELwDor029012\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 16:58:13 -0500\nDate: Wed, 14 Nov 2007 16:58:13 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: josrodri@iupui.edu\nSubject: [sakai] svn commit: r38179 - syllabus/trunk/syllabus-impl/src/java/org/sakaiproject/component/app/syllabus\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 17:03:41 2007\nX-DSPAM-Confidence: 0.9818\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38179\n\nAuthor: josrodri@iupui.edu\nDate: 2007-11-14 16:58:10 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38179\n\nModified:\nsyllabus/trunk/syllabus-impl/src/java/org/sakaiproject/component/app/syllabus/SyllabusServiceImpl.java\nLog:\nSAK-10894: had to back out patch due to unresolved legal issues. but added back in my changes that should resolve this.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ostermmg@whitman.edu Wed Nov 14 16:57:09 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 16:57:09 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 16:57:09 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby flawless.mail.umich.edu () with ESMTP id lAELv8SD001829;\n\tWed, 14 Nov 2007 16:57:08 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 473B6F2B.9BA2E.9855 ; \n\t14 Nov 2007 16:57:05 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2C53A7D6B0;\n\tWed, 14 Nov 2007 21:33:54 +0000 (GMT)\nMessage-ID: <200711142151.lAELpgq1029000@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 13\n          for <source@collab.sakaiproject.org>;\n          Wed, 14 Nov 2007 21:33:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 44F3F211F7\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 21:56:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAELpgsE029002\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 16:51:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAELpgq1029000\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 16:51:42 -0500\nDate: Wed, 14 Nov 2007 16:51:42 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ostermmg@whitman.edu\nSubject: [sakai] svn commit: r38178 - content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/content\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 16:57:09 2007\nX-DSPAM-Confidence: 0.7004\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38178\n\nAuthor: ostermmg@whitman.edu\nDate: 2007-11-14 16:51:38 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38178\n\nModified:\ncontent/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/content/chef_resources_webdav.vm\nLog:\nSAK-3008\nInconsistent button style in WebDAV help page\n\nsvn merge -c34373 https://source.sakaiproject.org/svn/content/trunk/ .\nU    content-tool/tool/src/webapp/vm/content/chef_resources_webdav.vm\n\nsvn log -r34373 https://source.sakaiproject.org/svn/content/trunk/\n------------------------------------------------------------------------\nr34373 | gsilver@umich.edu | 2007-08-24 09:08:55 -0700 (Fri, 24 Aug 2007) | 2 lines\n\nhttp://jira.sakaiproject.org/jira/browse/SAK-3008\n- have inner iframed doc bootstrap parent iframe resize\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ostermmg@whitman.edu Wed Nov 14 16:54:41 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 16:54:41 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 16:54:41 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby faithful.mail.umich.edu () with ESMTP id lAELsYRF016594;\n\tWed, 14 Nov 2007 16:54:34 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 473B6E92.22AAA.22325 ; \n\t14 Nov 2007 16:54:29 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C44D77D4F0;\n\tWed, 14 Nov 2007 21:31:20 +0000 (GMT)\nMessage-ID: <200711142149.lAELn66j028988@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 349\n          for <source@collab.sakaiproject.org>;\n          Wed, 14 Nov 2007 21:31:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BE353211F7\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 21:54:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAELn6VS028990\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 16:49:06 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAELn66j028988\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 16:49:06 -0500\nDate: Wed, 14 Nov 2007 16:49:06 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ostermmg@whitman.edu\nSubject: [sakai] svn commit: r38177 - reference/branches/sakai_2-4-x/library/src/webapp/content\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 16:54:41 2007\nX-DSPAM-Confidence: 0.7617\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38177\n\nAuthor: ostermmg@whitman.edu\nDate: 2007-11-14 16:49:02 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38177\n\nModified:\nreference/branches/sakai_2-4-x/library/src/webapp/content/webdav_instructions.html\nLog:\nSAK-3008\nInconsistent button style in WebDAV help page\n\nsvn merge -c34372 https://source.sakaiproject.org/svn/reference/trunk/ .\nU    library/src/webapp/content/webdav_instructions.html\n\nsvn log -r34372 https://source.sakaiproject.org/svn/reference/trunk/\n------------------------------------------------------------------------\nr34372 | gsilver@umich.edu | 2007-08-24 09:08:51 -0700 (Fri, 24 Aug 2007) | 2 lines\n\nhttp://jira.sakaiproject.org/jira/browse/SAK-3008\n- have inner iframed doc bootstrap parent iframe resize\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ostermmg@whitman.edu Wed Nov 14 16:50:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 16:50:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 16:50:25 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby score.mail.umich.edu () with ESMTP id lAELoOGV000308;\n\tWed, 14 Nov 2007 16:50:24 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 473B6D99.58AEE.7494 ; \n\t14 Nov 2007 16:50:20 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 191277D692;\n\tWed, 14 Nov 2007 21:27:10 +0000 (GMT)\nMessage-ID: <200711142144.lAELiooT028965@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 696\n          for <source@collab.sakaiproject.org>;\n          Wed, 14 Nov 2007 21:26:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4AA91211F7\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 21:49:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAELioav028967\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 16:44:50 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAELiooT028965\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 16:44:50 -0500\nDate: Wed, 14 Nov 2007 16:44:50 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ostermmg@whitman.edu\nSubject: [sakai] svn commit: r38176 - content/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/content\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 16:50:25 2007\nX-DSPAM-Confidence: 0.6924\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38176\n\nAuthor: ostermmg@whitman.edu\nDate: 2007-11-14 16:44:44 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38176\n\nModified:\ncontent/branches/sakai_2-4-x/content-tool/tool/src/webapp/vm/content/chef_resources_webdav.vm\nLog:\nSAK-3008\nInconsistent button style in WebDAV help page\n\nsvn merge -c29851 https://source.sakaiproject.org/svn/content/trunk/ .\nU    content-tool/tool/src/webapp/vm/content/chef_resources_webdav.vm\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Wed Nov 14 16:47:52 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 16:47:52 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 16:47:52 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby score.mail.umich.edu () with ESMTP id lAELlpK7030458;\n\tWed, 14 Nov 2007 16:47:51 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 473B6CFE.2828E.6233 ; \n\t14 Nov 2007 16:47:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2730E7D71B;\n\tWed, 14 Nov 2007 21:24:36 +0000 (GMT)\nMessage-ID: <200711142109.lAEL9A78028905@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 376\n          for <source@collab.sakaiproject.org>;\n          Wed, 14 Nov 2007 21:24:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C88A4211F5\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 21:14:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEL9Bxe028907\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 16:09:11 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEL9A78028905\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 16:09:10 -0500\nDate: Wed, 14 Nov 2007 16:09:10 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38175 - site/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 16:47:52 2007\nX-DSPAM-Confidence: 0.9794\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38175\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-14 16:09:10 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38175\n\nAdded:\nsite/branches/SAK-12203/\nLog:\nSite branch for SAK-12203\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom antranig@caret.cam.ac.uk Wed Nov 14 15:55:28 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 15:55:28 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 15:55:28 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby faithful.mail.umich.edu () with ESMTP id lAEKtRFm004282;\n\tWed, 14 Nov 2007 15:55:27 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 473B60B1.BE8AE.27927 ; \n\t14 Nov 2007 15:55:16 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id F351F7D68D;\n\tWed, 14 Nov 2007 20:55:09 +0000 (GMT)\nMessage-ID: <200711142049.lAEKnlDU028879@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 869\n          for <source@collab.sakaiproject.org>;\n          Wed, 14 Nov 2007 20:54:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7FBCB213FD\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 20:54:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEKnlPY028881\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 15:49:47 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEKnlDU028879\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 15:49:47 -0500\nDate: Wed, 14 Nov 2007 15:49:47 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: antranig@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38174 - authz/branches/SAK-12200/authz-impl/impl/src/java/org/sakaiproject/authz/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 15:55:28 2007\nX-DSPAM-Confidence: 0.9808\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38174\n\nAuthor: antranig@caret.cam.ac.uk\nDate: 2007-11-14 15:49:11 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38174\n\nModified:\nauthz/branches/SAK-12200/authz-impl/impl/src/java/org/sakaiproject/authz/impl/BaseAuthzGroup.java\nauthz/branches/SAK-12200/authz-impl/impl/src/java/org/sakaiproject/authz/impl/BaseAuthzGroupService.java\nauthz/branches/SAK-12200/authz-impl/impl/src/java/org/sakaiproject/authz/impl/BaseMember.java\nauthz/branches/SAK-12200/authz-impl/impl/src/java/org/sakaiproject/authz/impl/BaseRole.java\nauthz/branches/SAK-12200/authz-impl/impl/src/java/org/sakaiproject/authz/impl/DbAuthzGroupService.java\nauthz/branches/SAK-12200/authz-impl/impl/src/java/org/sakaiproject/authz/impl/DbAuthzGroupSql.java\nauthz/branches/SAK-12200/authz-impl/impl/src/java/org/sakaiproject/authz/impl/DbAuthzGroupSqlDefault.java\nauthz/branches/SAK-12200/authz-impl/impl/src/java/org/sakaiproject/authz/impl/DbAuthzGroupSqlMySql.java\nauthz/branches/SAK-12200/authz-impl/impl/src/java/org/sakaiproject/authz/impl/FunctionManagerComponent.java\nauthz/branches/SAK-12200/authz-impl/impl/src/java/org/sakaiproject/authz/impl/NoSecurity.java\nauthz/branches/SAK-12200/authz-impl/impl/src/java/org/sakaiproject/authz/impl/SakaiSecurity.java\nLog:\nWorking version with Java 5 plus invalid cast removal.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom antranig@caret.cam.ac.uk Wed Nov 14 15:52:20 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 15:52:20 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 15:52:20 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby flawless.mail.umich.edu () with ESMTP id lAEKqJYe018068;\n\tWed, 14 Nov 2007 15:52:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 473B5FF7.3D709.26544 ; \n\t14 Nov 2007 15:52:12 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D16E07D68A;\n\tWed, 14 Nov 2007 20:52:04 +0000 (GMT)\nMessage-ID: <200711142046.lAEKkcph028867@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 256\n          for <source@collab.sakaiproject.org>;\n          Wed, 14 Nov 2007 20:51:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4B848213FD\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 20:51:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEKkcRq028869\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 15:46:38 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEKkcph028867\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 15:46:38 -0500\nDate: Wed, 14 Nov 2007 15:46:38 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: antranig@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38173 - in authz/branches/SAK-12200/authz-api/api/src/java/org/sakaiproject/authz: api cover\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 15:52:20 2007\nX-DSPAM-Confidence: 0.7544\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38173\n\nAuthor: antranig@caret.cam.ac.uk\nDate: 2007-11-14 15:45:55 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38173\n\nModified:\nauthz/branches/SAK-12200/authz-api/api/src/java/org/sakaiproject/authz/api/AuthzGroup.java\nauthz/branches/SAK-12200/authz-api/api/src/java/org/sakaiproject/authz/api/AuthzGroupService.java\nauthz/branches/SAK-12200/authz-api/api/src/java/org/sakaiproject/authz/api/FunctionManager.java\nauthz/branches/SAK-12200/authz-api/api/src/java/org/sakaiproject/authz/api/GroupProvider.java\nauthz/branches/SAK-12200/authz-api/api/src/java/org/sakaiproject/authz/api/Member.java\nauthz/branches/SAK-12200/authz-api/api/src/java/org/sakaiproject/authz/api/Role.java\nauthz/branches/SAK-12200/authz-api/api/src/java/org/sakaiproject/authz/api/SecurityService.java\nauthz/branches/SAK-12200/authz-api/api/src/java/org/sakaiproject/authz/cover/AuthzGroupService.java\nauthz/branches/SAK-12200/authz-api/api/src/java/org/sakaiproject/authz/cover/FunctionManager.java\nauthz/branches/SAK-12200/authz-api/api/src/java/org/sakaiproject/authz/cover/SecurityService.java\nLog:\nWorking version with Java 5 plus invalid cast removal.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom josrodri@iupui.edu Wed Nov 14 14:59:38 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 14:59:38 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 14:59:38 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby fan.mail.umich.edu () with ESMTP id lAEJxcCO007850;\n\tWed, 14 Nov 2007 14:59:38 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 473B539B.2105E.30996 ; \n\t14 Nov 2007 14:59:27 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 108C67D0EE;\n\tWed, 14 Nov 2007 19:59:17 +0000 (GMT)\nMessage-ID: <200711141953.lAEJrwIb028779@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 712\n          for <source@collab.sakaiproject.org>;\n          Wed, 14 Nov 2007 19:58:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C6D9C1EFB2\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 19:59:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEJrwEM028781\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 14:53:58 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEJrwIb028779\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 14:53:58 -0500\nDate: Wed, 14 Nov 2007 14:53:58 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: josrodri@iupui.edu\nSubject: [sakai] svn commit: r38172 - syllabus/trunk/syllabus-impl/src/java/org/sakaiproject/component/app/syllabus\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 14:59:38 2007\nX-DSPAM-Confidence: 0.9846\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38172\n\nAuthor: josrodri@iupui.edu\nDate: 2007-11-14 14:53:56 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38172\n\nModified:\nsyllabus/trunk/syllabus-impl/src/java/org/sakaiproject/component/app/syllabus/SyllabusServiceImpl.java\nLog:\nSAK-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.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Wed Nov 14 14:14:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 14:14:42 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 14:14:42 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby score.mail.umich.edu () with ESMTP id lAEJEfUX016230;\n\tWed, 14 Nov 2007 14:14:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 473B4919.65EC2.13688 ; \n\t14 Nov 2007 14:14:37 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8B41B7D5F6;\n\tWed, 14 Nov 2007 19:14:30 +0000 (GMT)\nMessage-ID: <200711141908.lAEJ8xgx028727@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 90\n          for <source@collab.sakaiproject.org>;\n          Wed, 14 Nov 2007 19:14:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6AA5D1EDCE\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 19:14:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEJ90jp028729\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 14:09:00 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEJ8xgx028727\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 14:08:59 -0500\nDate: Wed, 14 Nov 2007 14:08:59 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38170 - assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 14:14:42 2007\nX-DSPAM-Confidence: 0.9884\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38170\n\nAuthor: zqian@umich.edu\nDate: 2007-11-14 14:08:58 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38170\n\nModified:\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nfix 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\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Wed Nov 14 12:49:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 12:49:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 12:49:25 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby chaos.mail.umich.edu () with ESMTP id lAEHnOp9029097;\n\tWed, 14 Nov 2007 12:49:24 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 473B3519.1C7B9.20558 ; \n\t14 Nov 2007 12:49:19 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8C7AC7D35A;\n\tWed, 14 Nov 2007 17:48:01 +0000 (GMT)\nMessage-ID: <200711141743.lAEHhcNo028590@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 793\n          for <source@collab.sakaiproject.org>;\n          Wed, 14 Nov 2007 17:47:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5E5D6235DE\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 17:48:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEHhdTC028592\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 12:43:39 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEHhcNo028590\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 12:43:39 -0500\nDate: Wed, 14 Nov 2007 12:43:39 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38168 - authz/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 12:49:25 2007\nX-DSPAM-Confidence: 0.9794\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38168\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-14 12:43:38 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38168\n\nAdded:\nauthz/branches/SAK-12200/\nLog:\nNew branch for SAK-12200\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Wed Nov 14 12:40:47 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 12:40:47 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 12:40:47 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby score.mail.umich.edu () with ESMTP id lAEHekco010790;\n\tWed, 14 Nov 2007 12:40:46 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 473B3319.43ABA.1958 ; \n\t14 Nov 2007 12:40:44 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 96CF47D29A;\n\tWed, 14 Nov 2007 17:40:38 +0000 (GMT)\nMessage-ID: <200711141735.lAEHZM59028574@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 61\n          for <source@collab.sakaiproject.org>;\n          Wed, 14 Nov 2007 17:40:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id F3159235DE\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 17:40:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEHZMwW028576\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 12:35:22 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEHZM59028574\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 12:35:22 -0500\nDate: Wed, 14 Nov 2007 12:35:22 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 12:40:47 2007\nX-DSPAM-Confidence: 0.7552\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38167\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-14 12:35:02 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38167\n\nAdded:\nrwiki/trunk/rwiki-tool/tool/src/webapp/scripts/fckrwikiconfig.js\nModified:\nrwiki/trunk/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/Messages.properties\nrwiki/trunk/rwiki-tool/tool/src/bundle/uk/ac/cam/caret/sakai/rwiki/tool/bundle/Messages_fr_CA.properties\nrwiki/trunk/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/VelocityInlineDispatcher.java\nrwiki/trunk/rwiki-tool/tool/src/webapp/WEB-INF/vm/edit.vm\nrwiki/trunk/rwiki-tool/tool/src/webapp/WEB-INF/vm/macros.vm\nrwiki/trunk/rwiki-tool/tool/src/webapp/WEB-INF/web.xml\nrwiki/trunk/rwiki-tool/tool/src/webapp/scripts/stateswitcher.js\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-8535\n\nFantastic WYSYWIG editor for rWiki,\n\nTom dot Landry at crim.ca did *all* the work.\n\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom antranig@caret.cam.ac.uk Wed Nov 14 11:51:14 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 11:51:14 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 11:51:14 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby godsend.mail.umich.edu () with ESMTP id lAEGpDcF021977;\n\tWed, 14 Nov 2007 11:51:13 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 473B276F.9DC13.22510 ; \n\t14 Nov 2007 11:50:58 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 05A127A42C;\n\tWed, 14 Nov 2007 16:50:52 +0000 (GMT)\nMessage-ID: <200711141645.lAEGjRVc028514@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 878\n          for <source@collab.sakaiproject.org>;\n          Wed, 14 Nov 2007 16:50:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 51B96AF71\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 16:50:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEGjRZa028516\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 11:45:27 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEGjRVc028514\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 11:45:27 -0500\nDate: Wed, 14 Nov 2007 11:45:27 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: antranig@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 11:51:14 2007\nX-DSPAM-Confidence: 0.7554\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38166\n\nAuthor: antranig@caret.cam.ac.uk\nDate: 2007-11-14 11:44:22 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38166\n\nAdded:\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/BeanLocator.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/impl/BeanLocatorAcceptor.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/ClassLoaderUtil.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/ClassVisibilityRecord.java\ncomponent/branches/SAK-12166/component-api/component/src/java/org/sakaiproject/component/util/ReflectUtil.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/api/spring/\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/api/spring/SpringComponentManager.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/ComponentManagerTargetSource.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/ComponentRecord.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/ComponentRecords.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/ContextLoader.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/ContextProcessor.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/StaggeredRefreshApplicationContext.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/BeanRecord.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/ComponentApplicationContextImpl.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/ComponentManagerCore.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/ComponentsLoaderImpl.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/InvocationInterceptor.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/SkeletalBeanFactory.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/impl/spring/support/SpringComponentManagerImpl.java\nRemoved:\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/api/ComponentsLoader.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/impl/ContextLoader.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/impl/SpringCompMgr.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/util/ComponentMap.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/util/ComponentsLoader.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/util/NoisierDefaultListableBeanFactory.java\ncomponent/trunk/component-api/component/src/java/org/springframework/\nModified:\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/api/ComponentManager.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/component/cover/ComponentManager.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/util/ContextLoaderListener.java\ncomponent/trunk/component-api/component/src/java/org/sakaiproject/util/PropertyOverrideConfigurer.java\nLog:\nWorking implementation of Stage 1 Updates to Component Manager \n- still fairly noisy when encountering unproxyable things\nVarious places around the framework require adjustments to new ClassLoader environment\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Wed Nov 14 11:31:45 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 11:31:45 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 11:31:45 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby godsend.mail.umich.edu () with ESMTP id lAEGVigN007132;\n\tWed, 14 Nov 2007 11:31:44 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 473B22E9.32568.9559 ; \n\t14 Nov 2007 11:31:40 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 943177B102;\n\tWed, 14 Nov 2007 16:31:39 +0000 (GMT)\nMessage-ID: <200711141626.lAEGQEWY028500@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 330\n          for <source@collab.sakaiproject.org>;\n          Wed, 14 Nov 2007 16:31:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8AD67235E7\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 16:31:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEGQERh028502\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 11:26:14 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEGQEWY028500\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 11:26:14 -0500\nDate: Wed, 14 Nov 2007 11:26:14 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38165 - in assignment/trunk: assignment-impl/impl/src/java/org/sakaiproject/assignment/impl assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 11:31:45 2007\nX-DSPAM-Confidence: 0.9866\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38165\n\nAuthor: zqian@umich.edu\nDate: 2007-11-14 11:26:11 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38165\n\nModified:\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nassignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm\nLog:\nfix 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\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Wed Nov 14 11:05:44 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 11:05:44 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 11:05:44 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby mission.mail.umich.edu () with ESMTP id lAEG5hZh010010;\n\tWed, 14 Nov 2007 11:05:43 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 473B1CCF.A2338.7551 ; \n\t14 Nov 2007 11:05:39 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EB0FA7D0F0;\n\tWed, 14 Nov 2007 16:05:40 +0000 (GMT)\nMessage-ID: <200711141600.lAEG09mB028431@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 880\n          for <source@collab.sakaiproject.org>;\n          Wed, 14 Nov 2007 16:05:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0AC341E60D\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 16:05:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEG0A03028433\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 11:00:10 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEG09mB028431\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 11:00:09 -0500\nDate: Wed, 14 Nov 2007 11:00:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 11:05:44 2007\nX-DSPAM-Confidence: 0.9920\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38164\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-11-14 11:00:07 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38164\n\nModified:\npostem/branches/sakai_2-5-x/postem-api/src/java/org/sakaiproject/api/app/postem/data/Gradebook.java\npostem/branches/sakai_2-5-x/postem-api/src/java/org/sakaiproject/api/app/postem/data/GradebookManager.java\npostem/branches/sakai_2-5-x/postem-app/src/java/org/sakaiproject/tool/postem/PostemTool.java\npostem/branches/sakai_2-5-x/postem-app/src/webapp/postem/main.jsp\npostem/branches/sakai_2-5-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.hbm.xml\npostem/branches/sakai_2-5-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.java\npostem/branches/sakai_2-5-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.hbm.xml\npostem/branches/sakai_2-5-x/postem-impl/src/java/org/sakaiproject/component/app/postem/GradebookManagerImpl.java\nLog:\nsvn merge -r37683:37718 https://source.sakaiproject.org/svn/postem/trunk\nU    .classpath\nU    components/src/webapp/WEB-INF/components.xml\nU    postem-app/src/java/org/sakaiproject/tool/postem/PostemTool.java\nU    postem-app/src/java/org/sakaiproject/tool/postem/Column.java\nU    postem-app/src/webapp/WEB-INF/components.xml\nU    postem-app/src/webapp/postem/main.jsp\nU    postem-app/pom.xml\nU    postem-impl/src/java/org/sakaiproject/component/app/postem/GradebookManagerImpl.java\nU    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.java\nA    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.java\nU    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.hbm.xml\nU    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.hbm.xml\nA    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.hbm.xml\nA    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.java\nA    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.hbm.xml\nU    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/TemplateImpl.java\nU    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.java\nU    postem-hbm/pom.xml\nA    postem-api/src/java/org/sakaiproject/api/app/postem/data/Heading.java\nA    postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGradeData.java\nU    postem-api/src/java/org/sakaiproject/api/app/postem/data/GradebookManager.java\nU    postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGrades.java\nU    postem-api/src/java/org/sakaiproject/api/app/postem/data/Gradebook.java\n\nsvn merge -r37720:38033 https://source.sakaiproject.org/svn/postem/trunk\nG    .classpath\nG    components/src/webapp/WEB-INF/components.xml\nG    postem-app/src/java/org/sakaiproject/tool/postem/PostemTool.java\nG    postem-app/src/java/org/sakaiproject/tool/postem/Column.java\nG    postem-app/src/webapp/WEB-INF/components.xml\nG    postem-app/pom.xml\nG    postem-impl/src/java/org/sakaiproject/component/app/postem/GradebookManagerImpl.java\nSkipped 'postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.java'\nSkipped 'postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.hbm.xml'\nSkipped 'postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.java'\nSkipped 'postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.hbm.xml'\nG    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.java\nG    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.hbm.xml\nG    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.hbm.xml\nG    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/TemplateImpl.java\nG    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.java\nG    postem-hbm/pom.xml\nSkipped 'postem-api/src/java/org/sakaiproject/api/app/postem/data/Heading.java'\nSkipped 'postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGradeData.java'\nG    postem-api/src/java/org/sakaiproject/api/app/postem/data/GradebookManager.java\nG    postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGrades.java\nG    postem-api/src/java/org/sakaiproject/api/app/postem/data/Gradebook.java\n------------------------------------------------------------------------\nr37684 | wagnermr@iupui.edu | 2007-11-01 14:24:54 -0400 (Thu, 01 Nov 2007) | 3 lines\n\nSAK-12095\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12095\nPerformance problems when tool contains large posts\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gsilver@umich.edu Wed Nov 14 10:49:47 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 10:49:47 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 10:49:47 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby fan.mail.umich.edu () with ESMTP id lAEFnkY4023812;\n\tWed, 14 Nov 2007 10:49:46 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 473B1913.8970A.16540 ; \n\t14 Nov 2007 10:49:42 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 56C8D7B1EC;\n\tWed, 14 Nov 2007 15:47:39 +0000 (GMT)\nMessage-ID: <200711141544.lAEFiKqm028383@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 634\n          for <source@collab.sakaiproject.org>;\n          Wed, 14 Nov 2007 15:47:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 59FC81E99A\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 15:49:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEFiKn1028385\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 10:44:20 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEFiKqm028383\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 10:44:20 -0500\nDate: Wed, 14 Nov 2007 10:44:20 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gsilver@umich.edu\nSubject: [sakai] svn commit: r38163 - reference/trunk/library/src/webapp/content/gateway\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 10:49:47 2007\nX-DSPAM-Confidence: 0.9817\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38163\n\nAuthor: gsilver@umich.edu\nDate: 2007-11-14 10:44:18 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38163\n\nModified:\nreference/trunk/library/src/webapp/content/gateway/acknowledgments.html\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-12182\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gopal.ramasammycook@gmail.com Wed Nov 14 10:46:06 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 10:46:06 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 10:46:06 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby panther.mail.umich.edu () with ESMTP id lAEFk4OI019376;\n\tWed, 14 Nov 2007 10:46:04 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 473B1836.5EB9.20296 ; \n\t14 Nov 2007 10:46:00 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id F1147711BA;\n\tWed, 14 Nov 2007 15:43:40 +0000 (GMT)\nMessage-ID: <200711141540.lAEFeORK028361@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 887\n          for <source@collab.sakaiproject.org>;\n          Wed, 14 Nov 2007 15:43:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EE7731E99A\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 15:45:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEFeOYC028363\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 10:40:24 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEFeORK028361\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 10:40:24 -0500\nDate: Wed, 14 Nov 2007 10:40:24 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f\nTo: source@collab.sakaiproject.org\nFrom: gopal.ramasammycook@gmail.com\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 10:46:06 2007\nX-DSPAM-Confidence: 0.9781\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38162\n\nAuthor: gopal.ramasammycook@gmail.com\nDate: 2007-11-14 10:39:34 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38162\n\nModified:\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/AssessmentSettingsBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/PublishedAssessmentSettingsBean.java\nsam/branches/SAK-12065/samigo-app/src/webapp/jsf/author/publishedSettings.jsp\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/integrated/AuthzQueriesFacade.java\nLog:\nSAK-12065  \n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Wed Nov 14 10:43:32 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 10:43:32 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 10:43:32 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby sleepers.mail.umich.edu () with ESMTP id lAEFhVXJ017429;\n\tWed, 14 Nov 2007 10:43:31 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 473B179D.AC512.10577 ; \n\t14 Nov 2007 10:43:29 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 25CBA7D0CC;\n\tWed, 14 Nov 2007 15:41:24 +0000 (GMT)\nMessage-ID: <200711141537.lAEFb95H028347@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 19\n          for <source@collab.sakaiproject.org>;\n          Wed, 14 Nov 2007 15:40:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1CF681E99A\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 15:42:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEFb9HH028349\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 10:37:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEFb95H028347\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 10:37:09 -0500\nDate: Wed, 14 Nov 2007 10:37:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r38161 - oncourse/branches/sakai_2-4-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 10:43:32 2007\nX-DSPAM-Confidence: 0.9783\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38161\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-11-14 10:37:08 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38161\n\nModified:\noncourse/branches/sakai_2-4-x/\noncourse/branches/sakai_2-4-x/.externals\nLog:\nUpdated externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Wed Nov 14 10:41:20 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 10:41:20 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 10:41:20 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby mission.mail.umich.edu () with ESMTP id lAEFfJPK022110;\n\tWed, 14 Nov 2007 10:41:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 473B1718.A989B.28688 ; \n\t14 Nov 2007 10:41:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5F2497D0CA;\n\tWed, 14 Nov 2007 15:39:10 +0000 (GMT)\nMessage-ID: <200711141535.lAEFZj3B028335@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 122\n          for <source@collab.sakaiproject.org>;\n          Wed, 14 Nov 2007 15:38:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 684561E99A\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 15:40:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEFZjYL028337\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 10:35:45 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEFZj3B028335\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 10:35:45 -0500\nDate: Wed, 14 Nov 2007 10:35:45 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [sakai] svn commit: r38160 - in assignment/branches/oncourse_2-4-x/assignment-tool/tool/src: bundle webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 10:41:20 2007\nX-DSPAM-Confidence: 0.7544\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38160\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-11-14 10:35:44 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38160\n\nModified:\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/bundle/assignment.properties\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm\nLog:\nbacking out merge of sak-9794 and sak-11027 in oncourse \n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Wed Nov 14 10:41:18 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 10:41:18 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 10:41:18 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby sleepers.mail.umich.edu () with ESMTP id lAEFfHuf015612;\n\tWed, 14 Nov 2007 10:41:17 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 473B1717.715D7.28423 ; \n\t14 Nov 2007 10:41:14 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1BB9D7D0AD;\n\tWed, 14 Nov 2007 15:39:10 +0000 (GMT)\nMessage-ID: <200711141535.lAEFZgiY028323@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 147\n          for <source@collab.sakaiproject.org>;\n          Wed, 14 Nov 2007 15:38:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B72C61E99A\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 15:40:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEFZggZ028325\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 10:35:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEFZgiY028323\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 10:35:42 -0500\nDate: Wed, 14 Nov 2007 10:35:42 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [sakai] svn commit: r38159 - in assignment/branches/oncourse_2-4-x/assignment-impl/impl/src: bundle java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 10:41:18 2007\nX-DSPAM-Confidence: 0.9799\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38159\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-11-14 10:35:41 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38159\n\nModified:\nassignment/branches/oncourse_2-4-x/assignment-impl/impl/src/bundle/assignment.properties\nassignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nbacking out merge of sak-9794 and sak-11027 in oncourse \n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Nov 14 09:52:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 09:52:37 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 09:52:37 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby brazil.mail.umich.edu () with ESMTP id lAEEqWvN011213;\n\tWed, 14 Nov 2007 09:52:32 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 473B0BAA.D18FC.31192 ; \n\t14 Nov 2007 09:52:29 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 995617D09A;\n\tWed, 14 Nov 2007 14:52:30 +0000 (GMT)\nMessage-ID: <200711141447.lAEElAA2028156@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 516\n          for <source@collab.sakaiproject.org>;\n          Wed, 14 Nov 2007 14:52:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AA26A21304\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 14:52:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEElADU028158\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 09:47:10 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEElAA2028156\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 09:47:10 -0500\nDate: Wed, 14 Nov 2007 09:47:10 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38158 - component/branches/SAK-12166\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 09:52:37 2007\nX-DSPAM-Confidence: 0.9830\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38158\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-14 09:47:06 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38158\n\nRemoved:\ncomponent/branches/SAK-12166/test/\nLog:\nremoving folder made to test perms\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Nov 14 09:52:14 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 09:52:14 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 09:52:14 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby fan.mail.umich.edu () with ESMTP id lAEEqD6g020080;\n\tWed, 14 Nov 2007 09:52:13 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 473B0B8B.31F38.1456 ; \n\t14 Nov 2007 09:51:58 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0ECC47D056;\n\tWed, 14 Nov 2007 14:51:58 +0000 (GMT)\nMessage-ID: <200711141446.lAEEkYhR028144@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 950\n          for <source@collab.sakaiproject.org>;\n          Wed, 14 Nov 2007 14:51:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BB66B21304\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 14:51:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEEkY6v028146\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 09:46:34 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEEkYhR028144\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 09:46:34 -0500\nDate: Wed, 14 Nov 2007 09:46:34 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38157 - component/branches/SAK-12166\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 09:52:14 2007\nX-DSPAM-Confidence: 0.9808\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38157\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-14 09:46:30 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38157\n\nAdded:\ncomponent/branches/SAK-12166/test/\nLog:\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Wed Nov 14 08:32:26 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 08:32:26 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 08:32:26 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby godsend.mail.umich.edu () with ESMTP id lAEDWPVY014167;\n\tWed, 14 Nov 2007 08:32:25 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 473AF8E3.7E299.19208 ; \n\t14 Nov 2007 08:32:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 853347CEE4;\n\tWed, 14 Nov 2007 13:32:20 +0000 (GMT)\nMessage-ID: <200711141326.lAEDQqgw027896@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 310\n          for <source@collab.sakaiproject.org>;\n          Wed, 14 Nov 2007 13:31:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id ADB032370D\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 13:31:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEDQrb4027898\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 08:26:53 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEDQqgw027896\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 08:26:52 -0500\nDate: Wed, 14 Nov 2007 08:26:52 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r38156 - oncourse/branches/sakai_2-4-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 08:32:26 2007\nX-DSPAM-Confidence: 0.9808\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38156\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-11-14 08:26:52 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38156\n\nModified:\noncourse/branches/sakai_2-4-x/\noncourse/branches/sakai_2-4-x/.externals\nLog:\nUpdated externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Wed Nov 14 08:30:41 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 08:30:41 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 08:30:41 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby casino.mail.umich.edu () with ESMTP id lAEDUesc023111;\n\tWed, 14 Nov 2007 08:30:40 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 473AF87B.449E4.24366 ; \n\t14 Nov 2007 08:30:38 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E97CF7CF59;\n\tWed, 14 Nov 2007 13:30:25 +0000 (GMT)\nMessage-ID: <200711141324.lAEDOvL6027872@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 556\n          for <source@collab.sakaiproject.org>;\n          Wed, 14 Nov 2007 13:29:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1D6222367B\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 13:29:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEDOvtW027874\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 08:24:57 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEDOvL6027872\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 08:24:57 -0500\nDate: Wed, 14 Nov 2007 08:24:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [sakai] svn commit: r38154 - in assignment/branches/oncourse_2-4-x/assignment-impl/impl/src: bundle java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 08:30:41 2007\nX-DSPAM-Confidence: 0.9934\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38154\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-11-14 08:24:55 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38154\n\nModified:\nassignment/branches/oncourse_2-4-x/assignment-impl/impl/src/bundle/assignment.properties\nassignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nsvn merge -r31550:31551 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm\nU    assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm\nU    assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nC    assignment-impl/impl/src/bundle/assignment.properties\n------------------------------------------------------------------------\nr31551 | zqian@umich.edu | 2007-06-12 12:49:35 -0400 (Tue, 12 Jun 2007) | 1 line\n\nfix 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\n------------------------------------------------------------------------\n\nsvn merge -r33859:33860 https://source.sakaiproject.org/svn/assignment/trunk\nSkipped missing target: 'assignment-bundles/assignment.properties'\nSkipped missing target: 'assignment-bundles'\nG    assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm\nU    assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm\nG    assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm\nG    assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\n------------------------------------------------------------------------\nr33860 | zqian@umich.edu | 2007-08-11 10:34:05 -0400 (Sat, 11 Aug 2007) | 1 line\n\nfix to SAK-11027:assignments / grading -draft\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Wed Nov 14 08:30:40 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 08:30:40 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 08:30:40 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby sleepers.mail.umich.edu () with ESMTP id lAEDUe1c029590;\n\tWed, 14 Nov 2007 08:30:40 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 473AF878.E9B52.3417 ; \n\t14 Nov 2007 08:30:35 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1FE427CF56;\n\tWed, 14 Nov 2007 13:30:25 +0000 (GMT)\nMessage-ID: <200711141324.lAEDOxg5027884@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 262\n          for <source@collab.sakaiproject.org>;\n          Wed, 14 Nov 2007 13:29:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2A3E82367C\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 13:30:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAEDOxba027886\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 08:24:59 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAEDOxg5027884\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 08:24:59 -0500\nDate: Wed, 14 Nov 2007 08:24:59 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [sakai] svn commit: r38155 - in assignment/branches/oncourse_2-4-x/assignment-tool/tool/src: bundle webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 08:30:40 2007\nX-DSPAM-Confidence: 0.9935\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38155\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-11-14 08:24:58 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38155\n\nModified:\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/bundle/assignment.properties\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm\nLog:\nsvn merge -r31550:31551 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm\nU    assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm\nU    assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nC    assignment-impl/impl/src/bundle/assignment.properties\n------------------------------------------------------------------------\nr31551 | zqian@umich.edu | 2007-06-12 12:49:35 -0400 (Tue, 12 Jun 2007) | 1 line\n\nfix 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\n------------------------------------------------------------------------\n\nsvn merge -r33859:33860 https://source.sakaiproject.org/svn/assignment/trunk\nSkipped missing target: 'assignment-bundles/assignment.properties'\nSkipped missing target: 'assignment-bundles'\nG    assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm\nU    assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm\nG    assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm\nG    assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\n------------------------------------------------------------------------\nr33860 | zqian@umich.edu | 2007-08-11 10:34:05 -0400 (Sat, 11 Aug 2007) | 1 line\n\nfix to SAK-11027:assignments / grading -draft\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Wed Nov 14 01:58:47 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 14 Nov 2007 01:58:47 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 14 Nov 2007 01:58:47 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby chaos.mail.umich.edu () with ESMTP id lAE6wkGI003652;\n\tWed, 14 Nov 2007 01:58:46 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 473A9CA0.C83B7.25708 ; \n\t14 Nov 2007 01:58:43 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 48AFE76F6B;\n\tWed, 14 Nov 2007 06:47:37 +0000 (GMT)\nMessage-ID: <200711140653.lAE6rIbt026994@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 509\n          for <source@collab.sakaiproject.org>;\n          Wed, 14 Nov 2007 06:47:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B44972363C\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 06:58:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAE6rISl026996\n\tfor <source@collab.sakaiproject.org>; Wed, 14 Nov 2007 01:53:18 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAE6rIbt026994\n\tfor source@collab.sakaiproject.org; Wed, 14 Nov 2007 01:53:18 -0500\nDate: Wed, 14 Nov 2007 01:53:18 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r38153 - polls/trunk/tool/src/java/org/sakaiproject/poll/tool/validators\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov 14 01:58:47 2007\nX-DSPAM-Confidence: 0.9794\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38153\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-11-14 01:53:07 -0500 (Wed, 14 Nov 2007)\nNew Revision: 38153\n\nModified:\npolls/trunk/tool/src/java/org/sakaiproject/poll/tool/validators/OptionValidator.java\nLog:\nSAK-11704 trim value before testing for being empty\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Tue Nov 13 18:21:49 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 13 Nov 2007 18:21:49 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 13 Nov 2007 18:21:49 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby awakenings.mail.umich.edu () with ESMTP id lADNLlGl012127;\n\tTue, 13 Nov 2007 18:21:47 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 473A3186.E3184.16368 ; \n\t13 Nov 2007 18:21:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5D3217C3FD;\n\tTue, 13 Nov 2007 23:21:54 +0000 (GMT)\nMessage-ID: <200711132316.lADNGP4W026486@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 814\n          for <source@collab.sakaiproject.org>;\n          Tue, 13 Nov 2007 23:21:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D96B42347C\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 23:21:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADNGPPw026488\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 18:16:25 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADNGP4W026486\n\tfor source@collab.sakaiproject.org; Tue, 13 Nov 2007 18:16:25 -0500\nDate: Tue, 13 Nov 2007 18:16:25 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [sakai] svn commit: r38152 - component/branches/SAK-8315/component-impl/integration-test/src/test/resources\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 13 18:21:49 2007\nX-DSPAM-Confidence: 0.7545\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38152\n\nAuthor: ray@media.berkeley.edu\nDate: 2007-11-13 18:16:22 -0500 (Tue, 13 Nov 2007)\nNew Revision: 38152\n\nModified:\ncomponent/branches/SAK-8315/component-impl/integration-test/src/test/resources/sakai-configuration.xml\nLog:\nAdd a little explanation to the sample local sakai-configuration.xml file\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ostermmg@whitman.edu Tue Nov 13 16:55:06 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 13 Nov 2007 16:55:06 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 13 Nov 2007 16:55:06 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby flawless.mail.umich.edu () with ESMTP id lADLt5c4007746;\n\tTue, 13 Nov 2007 16:55:05 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 473A1D32.79AD0.32105 ; \n\t13 Nov 2007 16:55:01 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 75F6B7C434;\n\tTue, 13 Nov 2007 21:54:55 +0000 (GMT)\nMessage-ID: <200711132149.lADLnnWY026175@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 741\n          for <source@collab.sakaiproject.org>;\n          Tue, 13 Nov 2007 21:54:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 32D98210D7\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 21:54:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADLnoaL026177\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 16:49:50 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADLnnWY026175\n\tfor source@collab.sakaiproject.org; Tue, 13 Nov 2007 16:49:50 -0500\nDate: Tue, 13 Nov 2007 16:49:50 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ostermmg@whitman.edu\nSubject: [sakai] svn commit: r38151 - content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 13 16:55:06 2007\nX-DSPAM-Confidence: 0.8500\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38151\n\nAuthor: ostermmg@whitman.edu\nDate: 2007-11-13 16:49:43 -0500 (Tue, 13 Nov 2007)\nNew Revision: 38151\n\nModified:\ncontent/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\nLog:\nSAK-12006\nPartial downloads not supported leading to multiple requests from download managers\n\nsvn merge -c38143 https://source.sakaiproject.org/svn/content/trunk/ .\nU    content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\n\nsvn log -r38143 https://source.sakaiproject.org/svn/content/trunk/\n------------------------------------------------------------------------\nr38143 | jimeng@umich.edu | 2007-11-13 12:26:04 -0800 (Tue, 13 Nov 2007) | 3 lines\n\nSAK-12006\nAdded header \"Accept-Ranges:none\" for access servlet response to a request for a resource.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ostermmg@whitman.edu Tue Nov 13 16:51:57 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 13 Nov 2007 16:51:57 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 13 Nov 2007 16:51:57 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby sleepers.mail.umich.edu () with ESMTP id lADLpuNd008102;\n\tTue, 13 Nov 2007 16:51:56 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 473A1C76.2776A.18211 ; \n\t13 Nov 2007 16:51:53 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 900207A5B8;\n\tTue, 13 Nov 2007 21:52:26 +0000 (GMT)\nMessage-ID: <200711132146.lADLkZQ7026162@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 378\n          for <source@collab.sakaiproject.org>;\n          Tue, 13 Nov 2007 21:52:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 982A223330\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 21:51:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADLkZSf026164\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 16:46:35 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADLkZQ7026162\n\tfor source@collab.sakaiproject.org; Tue, 13 Nov 2007 16:46:35 -0500\nDate: Tue, 13 Nov 2007 16:46:35 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ostermmg@whitman.edu\nSubject: [sakai] svn commit: r38150 - content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 13 16:51:57 2007\nX-DSPAM-Confidence: 0.8500\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38150\n\nAuthor: ostermmg@whitman.edu\nDate: 2007-11-13 16:46:29 -0500 (Tue, 13 Nov 2007)\nNew Revision: 38150\n\nModified:\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\nLog:\nSAK-12006\nPartial downloads not supported leading to multiple requests from download managers\n\nsvn merge -c38143 https://source.sakaiproject.org/svn/content/trunk/ .\nU    content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\n\nsvn log -r38143 https://source.sakaiproject.org/svn/content/trunk/\n------------------------------------------------------------------------\nr38143 | jimeng@umich.edu | 2007-11-13 12:26:04 -0800 (Tue, 13 Nov 2007) | 3 lines\n\nSAK-12006\nAdded header \"Accept-Ranges:none\" for access servlet response to a request for a resource.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ostermmg@whitman.edu Tue Nov 13 16:44:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 13 Nov 2007 16:44:42 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 13 Nov 2007 16:44:42 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby faithful.mail.umich.edu () with ESMTP id lADLifkO003033;\n\tTue, 13 Nov 2007 16:44:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 473A1AC2.35064.25823 ; \n\t13 Nov 2007 16:44:37 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 06DAD7A5B8;\n\tTue, 13 Nov 2007 21:45:11 +0000 (GMT)\nMessage-ID: <200711132139.lADLdKH1026141@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 659\n          for <source@collab.sakaiproject.org>;\n          Tue, 13 Nov 2007 21:44:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2374223330\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 21:44:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADLdKZ0026143\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 16:39:20 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADLdKH1026141\n\tfor source@collab.sakaiproject.org; Tue, 13 Nov 2007 16:39:20 -0500\nDate: Tue, 13 Nov 2007 16:39:20 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ostermmg@whitman.edu\nSubject: [sakai] svn commit: r38149 - content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 13 16:44:42 2007\nX-DSPAM-Confidence: 0.7613\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38149\n\nAuthor: ostermmg@whitman.edu\nDate: 2007-11-13 16:39:16 -0500 (Tue, 13 Nov 2007)\nNew Revision: 38149\n\nModified:\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\nLog:\nSAK-12168\nPermissions check can fail for super user on content removal\n\nsvn merge -c38108 https://source.sakaiproject.org/svn/content/trunk/ .\nU    content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\n\nsvn log -r38108 https://source.sakaiproject.org/svn/content/trunk/\n------------------------------------------------------------------------\nr38108 | jimeng@umich.edu | 2007-11-10 17:35:03 -0800 (Sat, 10 Nov 2007) | 3 lines\n\nSAK-12168\nAdded log message in catch block.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ostermmg@whitman.edu Tue Nov 13 16:41:00 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 13 Nov 2007 16:41:00 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 13 Nov 2007 16:41:00 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby flawless.mail.umich.edu () with ESMTP id lADLexa8029514;\n\tTue, 13 Nov 2007 16:40:59 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 473A19E3.4C803.18872 ; \n\t13 Nov 2007 16:40:54 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C54C47AD7E;\n\tTue, 13 Nov 2007 21:41:32 +0000 (GMT)\nMessage-ID: <200711132135.lADLZk7R026127@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 522\n          for <source@collab.sakaiproject.org>;\n          Tue, 13 Nov 2007 21:41:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EB5C923330\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 21:40:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADLZklN026129\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 16:35:46 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADLZk7R026127\n\tfor source@collab.sakaiproject.org; Tue, 13 Nov 2007 16:35:46 -0500\nDate: Tue, 13 Nov 2007 16:35:46 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ostermmg@whitman.edu\nSubject: [sakai] svn commit: r38148 - content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 13 16:41:00 2007\nX-DSPAM-Confidence: 0.7613\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38148\n\nAuthor: ostermmg@whitman.edu\nDate: 2007-11-13 16:35:41 -0500 (Tue, 13 Nov 2007)\nNew Revision: 38148\n\nModified:\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\nLog:\nsvn merge -c38103 https://source.sakaiproject.org/svn/content/trunk/ .\nU    content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\n\nsvn log -r38103 https://source.sakaiproject.org/svn/content/trunk/\n------------------------------------------------------------------------\nr38103 | jimeng@umich.edu | 2007-11-10 11:50:58 -0800 (Sat, 10 Nov 2007) | 3 lines\n\nSAK-12168\nAvoid checking for availability when use is admin (super-user)\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ostermmg@whitman.edu Tue Nov 13 16:36:44 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 13 Nov 2007 16:36:44 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 13 Nov 2007 16:36:44 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby jacknife.mail.umich.edu () with ESMTP id lADLaghO002677;\n\tTue, 13 Nov 2007 16:36:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 473A18E0.18FFF.1233 ; \n\t13 Nov 2007 16:36:40 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 37EA17C4A6;\n\tTue, 13 Nov 2007 21:37:13 +0000 (GMT)\nMessage-ID: <200711132131.lADLVQnc026093@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 402\n          for <source@collab.sakaiproject.org>;\n          Tue, 13 Nov 2007 21:37:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 23B36231AD\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 21:36:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADLVQ6s026095\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 16:31:26 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADLVQnc026093\n\tfor source@collab.sakaiproject.org; Tue, 13 Nov 2007 16:31:26 -0500\nDate: Tue, 13 Nov 2007 16:31:26 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ostermmg@whitman.edu\nSubject: [sakai] svn commit: r38147 - content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 13 16:36:44 2007\nX-DSPAM-Confidence: 0.7610\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38147\n\nAuthor: ostermmg@whitman.edu\nDate: 2007-11-13 16:31:21 -0500 (Tue, 13 Nov 2007)\nNew Revision: 38147\n\nModified:\ncontent/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\nLog:\nSAK-12168\nPermissions check can fail for super user on content removal\n\nsvn merge -c38108 https://source.sakaiproject.org/svn/content/trunk/ .\nU    content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\n\nsvn log -r38108 https://source.sakaiproject.org/svn/content/trunk/\n------------------------------------------------------------------------\nr38108 | jimeng@umich.edu | 2007-11-10 17:35:03 -0800 (Sat, 10 Nov 2007) | 3 lines\n\nSAK-12168\nAdded log message in catch block.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Tue Nov 13 16:36:18 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 13 Nov 2007 16:36:18 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 13 Nov 2007 16:36:18 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby sleepers.mail.umich.edu () with ESMTP id lADLaHCs029133;\n\tTue, 13 Nov 2007 16:36:17 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 473A18C5.7FB3B.27357 ; \n\t13 Nov 2007 16:36:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C72227C4EE;\n\tTue, 13 Nov 2007 21:36:42 +0000 (GMT)\nMessage-ID: <200711132130.lADLUpK1026081@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 314\n          for <source@collab.sakaiproject.org>;\n          Tue, 13 Nov 2007 21:36:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DDD6C231AD\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 21:35:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADLUpO2026083\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 16:30:52 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADLUpK1026081\n\tfor source@collab.sakaiproject.org; Tue, 13 Nov 2007 16:30:51 -0500\nDate: Tue, 13 Nov 2007 16:30:51 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r38146 - oncourse/branches/sakai_2-4-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 13 16:36:18 2007\nX-DSPAM-Confidence: 0.8405\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38146\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-11-13 16:30:50 -0500 (Tue, 13 Nov 2007)\nNew Revision: 38146\n\nModified:\noncourse/branches/sakai_2-4-x/\noncourse/branches/sakai_2-4-x/.externals\nLog:\nUpdated externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ostermmg@whitman.edu Tue Nov 13 16:30:33 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 13 Nov 2007 16:30:33 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 13 Nov 2007 16:30:33 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby chaos.mail.umich.edu () with ESMTP id lADLUWQ4030939;\n\tTue, 13 Nov 2007 16:30:32 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 473A1771.A6EE2.20476 ; \n\t13 Nov 2007 16:30:28 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1EC3E7C4A6;\n\tTue, 13 Nov 2007 21:31:05 +0000 (GMT)\nMessage-ID: <200711132125.lADLPK1U026047@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 186\n          for <source@collab.sakaiproject.org>;\n          Tue, 13 Nov 2007 21:30:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BB9F3231AD\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 21:30:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADLPKRd026049\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 16:25:20 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADLPK1U026047\n\tfor source@collab.sakaiproject.org; Tue, 13 Nov 2007 16:25:20 -0500\nDate: Tue, 13 Nov 2007 16:25:20 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ostermmg@whitman.edu\nSubject: [sakai] svn commit: r38145 - content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 13 16:30:33 2007\nX-DSPAM-Confidence: 0.7002\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38145\n\nAuthor: ostermmg@whitman.edu\nDate: 2007-11-13 16:25:16 -0500 (Tue, 13 Nov 2007)\nNew Revision: 38145\n\nModified:\ncontent/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\nLog:\nSAK-12168\nPermissions check can fail for super user on content removal\n\nsvn merge -c38103 https://source.sakaiproject.org/svn/content/trunk/ .\nU    content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\n\nsvn log -r38103 https://source.sakaiproject.org/svn/content/trunk/\n------------------------------------------------------------------------\nr38103 | jimeng@umich.edu | 2007-11-10 11:50:58 -0800 (Sat, 10 Nov 2007) | 3 lines\n\nSAK-12168\nAvoid checking for availability when use is admin (super-user)\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Tue Nov 13 16:28:28 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 13 Nov 2007 16:28:28 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 13 Nov 2007 16:28:28 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby jacknife.mail.umich.edu () with ESMTP id lADLSQ7j028694;\n\tTue, 13 Nov 2007 16:28:26 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 473A16F4.ED20F.24740 ; \n\t13 Nov 2007 16:28:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A6BA37AD7E;\n\tTue, 13 Nov 2007 21:28:57 +0000 (GMT)\nMessage-ID: <200711132123.lADLN831026032@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 341\n          for <source@collab.sakaiproject.org>;\n          Tue, 13 Nov 2007 21:28:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 88B09231AD\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 21:27:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADLN9LP026034\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 16:23:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADLN831026032\n\tfor source@collab.sakaiproject.org; Tue, 13 Nov 2007 16:23:08 -0500\nDate: Tue, 13 Nov 2007 16:23:08 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r38144 - assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 13 16:28:28 2007\nX-DSPAM-Confidence: 0.8442\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38144\n\nAuthor: cwen@iupui.edu\nDate: 2007-11-13 16:23:06 -0500 (Tue, 13 Nov 2007)\nNew Revision: 38144\n\nModified:\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nsvn merge -r31558:31559 https://source.sakaiproject.org/svn/assignment/trunk\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Tue Nov 13 15:31:24 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 13 Nov 2007 15:31:24 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 13 Nov 2007 15:31:24 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby jacknife.mail.umich.edu () with ESMTP id lADKVNQ4020646;\n\tTue, 13 Nov 2007 15:31:23 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 473A0995.265F5.30697 ; \n\t13 Nov 2007 15:31:19 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3C246521A4;\n\tTue, 13 Nov 2007 20:31:15 +0000 (GMT)\nMessage-ID: <200711132026.lADKQ8dB025894@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 947\n          for <source@collab.sakaiproject.org>;\n          Tue, 13 Nov 2007 20:30:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9AC0EAF7F\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 20:30:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADKQ8sq025896\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 15:26:08 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADKQ8dB025894\n\tfor source@collab.sakaiproject.org; Tue, 13 Nov 2007 15:26:08 -0500\nDate: Tue, 13 Nov 2007 15:26:08 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38143 - content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 13 15:31:24 2007\nX-DSPAM-Confidence: 0.9853\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38143\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-13 15:26:04 -0500 (Tue, 13 Nov 2007)\nNew Revision: 38143\n\nModified:\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\nLog:\nSAK-12006\nAdded header \"Accept-Ranges:none\" for access servlet response to a request for a resource.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom josrodri@iupui.edu Tue Nov 13 14:02:00 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 13 Nov 2007 14:02:00 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 13 Nov 2007 14:02:00 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby flawless.mail.umich.edu () with ESMTP id lADJ1xi9010321;\n\tTue, 13 Nov 2007 14:01:59 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 4739F4A1.2729E.10761 ; \n\t13 Nov 2007 14:01:56 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 83B2479CF1;\n\tTue, 13 Nov 2007 19:01:40 +0000 (GMT)\nMessage-ID: <200711131856.lADIuj0D025423@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 280\n          for <source@collab.sakaiproject.org>;\n          Tue, 13 Nov 2007 19:01:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0BB5723032\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 19:01:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADIujtU025425\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 13:56:45 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADIuj0D025423\n\tfor source@collab.sakaiproject.org; Tue, 13 Nov 2007 13:56:45 -0500\nDate: Tue, 13 Nov 2007 13:56:45 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: josrodri@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 13 14:02:00 2007\nX-DSPAM-Confidence: 0.9794\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38137\n\nAuthor: josrodri@iupui.edu\nDate: 2007-11-13 13:56:44 -0500 (Tue, 13 Nov 2007)\nNew Revision: 38137\n\nModified:\npodcasts/trunk/podcasts-app/src/java/org/sakaiproject/tool/podcasts/podHomeBean.java\npodcasts/trunk/podcasts-app/src/webapp/podcasts/podMain.jsp\npodcasts/trunk/podcasts-impl/impl/src/java/org/sakaiproject/component/app/podcasts/PodcastServiceImpl.java\nLog:\nSAK-11216: refactored how filename is dealt with during revision as well as add and displaying\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Tue Nov 13 12:55:33 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 13 Nov 2007 12:55:33 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 13 Nov 2007 12:55:33 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby chaos.mail.umich.edu () with ESMTP id lADHtWj9028099;\n\tTue, 13 Nov 2007 12:55:32 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 4739E50D.BE63F.5563 ; \n\t13 Nov 2007 12:55:28 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 43FA07A755;\n\tTue, 13 Nov 2007 17:55:19 +0000 (GMT)\nMessage-ID: <200711131750.lADHoRLv025352@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 135\n          for <source@collab.sakaiproject.org>;\n          Tue, 13 Nov 2007 17:55:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 707991F32E\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 17:55:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADHoROZ025354\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 12:50:27 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADHoRLv025352\n\tfor source@collab.sakaiproject.org; Tue, 13 Nov 2007 12:50:27 -0500\nDate: Tue, 13 Nov 2007 12:50:27 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38135 - assignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 13 12:55:33 2007\nX-DSPAM-Confidence: 0.9854\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38135\n\nAuthor: zqian@umich.edu\nDate: 2007-11-13 12:50:22 -0500 (Tue, 13 Nov 2007)\nNew Revision: 38135\n\nModified:\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nmerge the fix to SAK-12167 into post-2-4 branch:svn merge -r 38132:38133 https://source.sakaiproject.org/svn/assignment/trunk/\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Tue Nov 13 12:53:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 13 Nov 2007 12:53:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 13 Nov 2007 12:53:51 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby sleepers.mail.umich.edu () with ESMTP id lADHrn0e017204;\n\tTue, 13 Nov 2007 12:53:49 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4739E498.D46D.3210 ; \n\t13 Nov 2007 12:53:30 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 994B67A754;\n\tTue, 13 Nov 2007 17:53:26 +0000 (GMT)\nMessage-ID: <200711131748.lADHmW4U025340@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 978\n          for <source@collab.sakaiproject.org>;\n          Tue, 13 Nov 2007 17:53:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C288B1F32E\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 17:53:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADHmWIY025342\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 12:48:32 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADHmW4U025340\n\tfor source@collab.sakaiproject.org; Tue, 13 Nov 2007 12:48:32 -0500\nDate: Tue, 13 Nov 2007 12:48:32 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38134 - assignment/branches/sakai_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 13 12:53:51 2007\nX-DSPAM-Confidence: 0.9881\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38134\n\nAuthor: zqian@umich.edu\nDate: 2007-11-13 12:48:29 -0500 (Tue, 13 Nov 2007)\nNew Revision: 38134\n\nModified:\nassignment/branches/sakai_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nmerge the fix to SAK-12167 into 2-4-x branch:svn merge -r 38132:38133 https://source.sakaiproject.org/svn/assignment/trunk/\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Tue Nov 13 12:48:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 13 Nov 2007 12:48:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 13 Nov 2007 12:48:19 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby jacknife.mail.umich.edu () with ESMTP id lADHmHcX030691;\n\tTue, 13 Nov 2007 12:48:17 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 4739E35A.D7F7F.17430 ; \n\t13 Nov 2007 12:48:13 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E51D17A974;\n\tTue, 13 Nov 2007 17:48:08 +0000 (GMT)\nMessage-ID: <200711131743.lADHhEVE025312@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 721\n          for <source@collab.sakaiproject.org>;\n          Tue, 13 Nov 2007 17:47:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9C9E61F32E\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 17:47:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADHhEe3025314\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 12:43:14 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADHhEVE025312\n\tfor source@collab.sakaiproject.org; Tue, 13 Nov 2007 12:43:14 -0500\nDate: Tue, 13 Nov 2007 12:43:14 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38133 - assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 13 12:48:19 2007\nX-DSPAM-Confidence: 0.9841\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38133\n\nAuthor: zqian@umich.edu\nDate: 2007-11-13 12:43:11 -0500 (Tue, 13 Nov 2007)\nNew Revision: 38133\n\nModified:\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nAssignment Grades.csv file downloads with grades in the wrong column\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Tue Nov 13 11:56:48 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 13 Nov 2007 11:56:48 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 13 Nov 2007 11:56:48 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby mission.mail.umich.edu () with ESMTP id lADGulHU020650;\n\tTue, 13 Nov 2007 11:56:47 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 4739D741.5FFDF.17002 ; \n\t13 Nov 2007 11:56:36 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D29277C185;\n\tTue, 13 Nov 2007 16:56:31 +0000 (GMT)\nMessage-ID: <200711131651.lADGpd2O025129@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 87\n          for <source@collab.sakaiproject.org>;\n          Tue, 13 Nov 2007 16:56:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0C16720F8E\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 16:56:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADGpdjT025131\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 11:51:39 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADGpd2O025129\n\tfor source@collab.sakaiproject.org; Tue, 13 Nov 2007 11:51:39 -0500\nDate: Tue, 13 Nov 2007 11:51:39 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38132 - in cafe/trunk: . announcement\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 13 11:56:48 2007\nX-DSPAM-Confidence: 0.9842\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38132\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-13 11:51:34 -0500 (Tue, 13 Nov 2007)\nNew Revision: 38132\n\nAdded:\ncafe/trunk/announcement/\ncafe/trunk/announcement/pom.xml\nLog:\nNOJIRA: Removed the announcement tool from cafe since it now has dependencies on code outside cafe\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Tue Nov 13 11:56:23 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 13 Nov 2007 11:56:23 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 13 Nov 2007 11:56:23 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby godsend.mail.umich.edu () with ESMTP id lADGuMiM025702;\n\tTue, 13 Nov 2007 11:56:22 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 4739D72F.2AA0E.27446 ; \n\t13 Nov 2007 11:56:18 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0EF1676269;\n\tTue, 13 Nov 2007 16:56:12 +0000 (GMT)\nMessage-ID: <200711131651.lADGpIxx025117@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 285\n          for <source@collab.sakaiproject.org>;\n          Tue, 13 Nov 2007 16:55:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E764320F8E\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 16:55:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADGpICC025119\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 11:51:18 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADGpIxx025117\n\tfor source@collab.sakaiproject.org; Tue, 13 Nov 2007 11:51:18 -0500\nDate: Tue, 13 Nov 2007 11:51:18 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38131 - cafe/trunk\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 13 11:56:23 2007\nX-DSPAM-Confidence: 0.9820\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38131\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-13 11:51:14 -0500 (Tue, 13 Nov 2007)\nNew Revision: 38131\n\nModified:\ncafe/trunk/\ncafe/trunk/.externals\nLog:\nNOJIRA: Removed the announcement tool from cafe since it now has dependencies on code outside cafe\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Tue Nov 13 10:28:33 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 13 Nov 2007 10:28:33 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 13 Nov 2007 10:28:33 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby casino.mail.umich.edu () with ESMTP id lADFSXhK003891;\n\tTue, 13 Nov 2007 10:28:33 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 4739C29A.AEA73.24620 ; \n\t13 Nov 2007 10:28:29 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 89CD67BE6B;\n\tTue, 13 Nov 2007 15:27:26 +0000 (GMT)\nMessage-ID: <200711131523.lADFN7nn025014@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 185\n          for <source@collab.sakaiproject.org>;\n          Tue, 13 Nov 2007 15:27:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AB41422D78\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 15:27:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADFN7Gb025016\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 10:23:08 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADFN7nn025014\n\tfor source@collab.sakaiproject.org; Tue, 13 Nov 2007 10:23:07 -0500\nDate: Tue, 13 Nov 2007 10:23:07 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [sakai] svn commit: r38130 - in gradebook/trunk/service: api/src/java/org/sakaiproject/service/gradebook/shared impl/src/java/org/sakaiproject/component/gradebook\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 13 10:28:33 2007\nX-DSPAM-Confidence: 0.9822\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38130\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-11-13 10:23:06 -0500 (Tue, 13 Nov 2007)\nNew Revision: 38130\n\nModified:\ngradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java\ngradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java\nLog:\nSAK-12175\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12175\nCreate methods required for gb integration with the Assignment2 tool\ngetViewableSectionUuidToNameMap\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom hu2@iupui.edu Tue Nov 13 10:20:11 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 13 Nov 2007 10:20:11 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 13 Nov 2007 10:20:11 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby flawless.mail.umich.edu () with ESMTP id lADFKAAa030255;\n\tTue, 13 Nov 2007 10:20:10 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 4739C09C.6785E.29903 ; \n\t13 Nov 2007 10:19:59 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3906A7BF52;\n\tTue, 13 Nov 2007 15:20:02 +0000 (GMT)\nMessage-ID: <200711131512.lADFCgGV025002@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 621\n          for <source@collab.sakaiproject.org>;\n          Tue, 13 Nov 2007 15:17:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C7C8220F4D\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 15:17:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lADFCgdr025004\n\tfor <source@collab.sakaiproject.org>; Tue, 13 Nov 2007 10:12:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lADFCgGV025002\n\tfor source@collab.sakaiproject.org; Tue, 13 Nov 2007 10:12:42 -0500\nDate: Tue, 13 Nov 2007 10:12:42 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to hu2@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: hu2@iupui.edu\nSubject: [sakai] svn commit: r38129 - msgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov 13 10:20:11 2007\nX-DSPAM-Confidence: 0.9793\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38129\n\nAuthor: hu2@iupui.edu\nDate: 2007-11-13 10:12:41 -0500 (Tue, 13 Nov 2007)\nNew Revision: 38129\n\nModified:\nmsgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java\nLog:\nSAK-12073\nhttp://jira.sakaiproject.org/jira/browse/SAK-12073\nAbility to \"Reply All\" in the Messages tool\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom josrodri@iupui.edu Mon Nov 12 16:44:36 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 12 Nov 2007 16:44:36 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 12 Nov 2007 16:44:36 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby casino.mail.umich.edu () with ESMTP id lACLiYJx007904;\n\tMon, 12 Nov 2007 16:44:34 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 4738C93C.C7162.17369 ; \n\t12 Nov 2007 16:44:31 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 559727976F;\n\tMon, 12 Nov 2007 21:44:25 +0000 (GMT)\nMessage-ID: <200711122139.lACLdUjk023869@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 818\n          for <source@collab.sakaiproject.org>;\n          Mon, 12 Nov 2007 21:44:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B1668224CE\n\tfor <source@collab.sakaiproject.org>; Mon, 12 Nov 2007 21:44:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lACLdUsV023871\n\tfor <source@collab.sakaiproject.org>; Mon, 12 Nov 2007 16:39:30 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lACLdUjk023869\n\tfor source@collab.sakaiproject.org; Mon, 12 Nov 2007 16:39:30 -0500\nDate: Mon, 12 Nov 2007 16:39:30 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: josrodri@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 12 16:44:36 2007\nX-DSPAM-Confidence: 0.9817\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38128\n\nAuthor: josrodri@iupui.edu\nDate: 2007-11-12 16:39:28 -0500 (Mon, 12 Nov 2007)\nNew Revision: 38128\n\nModified:\npodcasts/trunk/podcasts-app/src/java/org/sakaiproject/tool/podcasts/podHomeBean.java\npodcasts/trunk/podcasts-app/src/webapp/podcasts/podAdd.jsp\npodcasts/trunk/podcasts-impl/impl/src/java/org/sakaiproject/component/app/podcasts/PodcastServiceImpl.java\nLog:\nSAK-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).\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Mon Nov 12 15:51:29 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 12 Nov 2007 15:51:29 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 12 Nov 2007 15:51:29 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby jacknife.mail.umich.edu () with ESMTP id lACKpRGS010542;\n\tMon, 12 Nov 2007 15:51:27 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 4738BCC9.7E647.23744 ; \n\t12 Nov 2007 15:51:24 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D70D379D32;\n\tMon, 12 Nov 2007 20:51:17 +0000 (GMT)\nMessage-ID: <200711122046.lACKkQSn023766@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 458\n          for <source@collab.sakaiproject.org>;\n          Mon, 12 Nov 2007 20:50:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 314AD1E39B\n\tfor <source@collab.sakaiproject.org>; Mon, 12 Nov 2007 20:51:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lACKkQwe023768\n\tfor <source@collab.sakaiproject.org>; Mon, 12 Nov 2007 15:46:26 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lACKkQSn023766\n\tfor source@collab.sakaiproject.org; Mon, 12 Nov 2007 15:46:26 -0500\nDate: Mon, 12 Nov 2007 15:46:26 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 12 15:51:29 2007\nX-DSPAM-Confidence: 0.9788\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38127\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-11-12 15:46:25 -0500 (Mon, 12 Nov 2007)\nNew Revision: 38127\n\nModified:\ngradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java\ngradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/BaseHibernateManager.java\ngradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java\ngradebook/trunk/service/sakai-pack/src/webapp/WEB-INF/components.xml\nLog:\nSAK-12175\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12175\nCreate methods required for gb integration with the Assignment2 tool\ngetViewableAssignmentsForCurrentUser\nisGradableObjectDefined\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Mon Nov 12 13:59:21 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 12 Nov 2007 13:59:21 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 12 Nov 2007 13:59:21 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby panther.mail.umich.edu () with ESMTP id lACIxKCO019590;\n\tMon, 12 Nov 2007 13:59:20 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 4738A280.7771.13638 ; \n\t12 Nov 2007 13:59:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 176EB7AF8D;\n\tMon, 12 Nov 2007 18:48:14 +0000 (GMT)\nMessage-ID: <200711121854.lACIs6ja023576@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 255\n          for <source@collab.sakaiproject.org>;\n          Mon, 12 Nov 2007 18:47:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C7B9A20E86\n\tfor <source@collab.sakaiproject.org>; Mon, 12 Nov 2007 18:58:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lACIs6n9023578\n\tfor <source@collab.sakaiproject.org>; Mon, 12 Nov 2007 13:54:06 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lACIs6ja023576\n\tfor source@collab.sakaiproject.org; Mon, 12 Nov 2007 13:54:06 -0500\nDate: Mon, 12 Nov 2007 13:54:06 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38122 - in gradebook/trunk/app/sakai-tool/src/webapp: WEB-INF tools\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 12 13:59:21 2007\nX-DSPAM-Confidence: 0.8420\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38122\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-12 13:54:05 -0500 (Mon, 12 Nov 2007)\nNew Revision: 38122\n\nAdded:\ngradebook/trunk/app/sakai-tool/src/webapp/tools/sakai.gradebook.addItem.helper.xml\nModified:\ngradebook/trunk/app/sakai-tool/src/webapp/WEB-INF/web.xml\nLog:\nSAK-12180\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12180\nGradebook / Create Add Gradebook Item Helper Tool\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Mon Nov 12 12:15:20 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 12 Nov 2007 12:15:20 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 12 Nov 2007 12:15:20 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby fan.mail.umich.edu () with ESMTP id lACHFJj5008353;\n\tMon, 12 Nov 2007 12:15:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 47388A1F.CDE9B.5033 ; \n\t12 Nov 2007 12:15:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 409DC74BCC;\n\tMon, 12 Nov 2007 17:15:03 +0000 (GMT)\nMessage-ID: <200711121710.lACHABJJ023410@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 122\n          for <source@collab.sakaiproject.org>;\n          Mon, 12 Nov 2007 17:14:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 914E220DB8\n\tfor <source@collab.sakaiproject.org>; Mon, 12 Nov 2007 17:14:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lACHABr1023412\n\tfor <source@collab.sakaiproject.org>; Mon, 12 Nov 2007 12:10:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lACHABJJ023410\n\tfor source@collab.sakaiproject.org; Mon, 12 Nov 2007 12:10:11 -0500\nDate: Mon, 12 Nov 2007 12:10:11 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38121 - assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 12 12:15:20 2007\nX-DSPAM-Confidence: 0.9830\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38121\n\nAuthor: zqian@umich.edu\nDate: 2007-11-12 12:10:08 -0500 (Mon, 12 Nov 2007)\nNew Revision: 38121\n\nModified:\nassignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nfix to SAK-12164: 'Assign this grade...' function is writing over Grade data\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Mon Nov 12 11:50:14 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 12 Nov 2007 11:50:14 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 12 Nov 2007 11:50:14 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby awakenings.mail.umich.edu () with ESMTP id lACGoD2c018027;\n\tMon, 12 Nov 2007 11:50:13 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4738843E.8D8E3.5600 ; \n\t12 Nov 2007 11:50:10 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7F5607AB62;\n\tMon, 12 Nov 2007 16:49:15 +0000 (GMT)\nMessage-ID: <200711121645.lACGj0Kt023372@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 915\n          for <source@collab.sakaiproject.org>;\n          Mon, 12 Nov 2007 16:48:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 06D712237E\n\tfor <source@collab.sakaiproject.org>; Mon, 12 Nov 2007 16:49:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lACGj0gK023374\n\tfor <source@collab.sakaiproject.org>; Mon, 12 Nov 2007 11:45:00 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lACGj0Kt023372\n\tfor source@collab.sakaiproject.org; Mon, 12 Nov 2007 11:45:00 -0500\nDate: Mon, 12 Nov 2007 11:45:00 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38120 - in assignment/trunk: assignment-bundles assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 12 11:50:14 2007\nX-DSPAM-Confidence: 0.7603\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38120\n\nAuthor: zqian@umich.edu\nDate: 2007-11-12 11:44:57 -0500 (Mon, 12 Nov 2007)\nNew Revision: 38120\n\nModified:\nassignment/trunk/assignment-bundles/assignment.properties\nassignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nfix to SAK-12178: Assignments: Log in as instructor, add assignment, in points field enter 10000000000, Alert message displayed, message should display correct input value\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gopal.ramasammycook@gmail.com Mon Nov 12 10:24:14 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 12 Nov 2007 10:24:14 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 12 Nov 2007 10:24:14 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby score.mail.umich.edu () with ESMTP id lACFOC1W030754;\n\tMon, 12 Nov 2007 10:24:12 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 47387015.911AB.3560 ; \n\t12 Nov 2007 10:24:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A9C367ABE4;\n\tMon, 12 Nov 2007 15:24:07 +0000 (GMT)\nMessage-ID: <200711121519.lACFJAdM023328@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 985\n          for <source@collab.sakaiproject.org>;\n          Mon, 12 Nov 2007 15:23:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 026D422190\n\tfor <source@collab.sakaiproject.org>; Mon, 12 Nov 2007 15:23:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lACFJAEA023330\n\tfor <source@collab.sakaiproject.org>; Mon, 12 Nov 2007 10:19:10 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lACFJAdM023328\n\tfor source@collab.sakaiproject.org; Mon, 12 Nov 2007 10:19:10 -0500\nDate: Mon, 12 Nov 2007 10:19:10 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f\nTo: source@collab.sakaiproject.org\nFrom: gopal.ramasammycook@gmail.com\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 12 10:24:14 2007\nX-DSPAM-Confidence: 0.9755\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38118\n\nAuthor: gopal.ramasammycook@gmail.com\nDate: 2007-11-12 10:18:20 -0500 (Mon, 12 Nov 2007)\nNew Revision: 38118\n\nModified:\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/AssessmentSettingsBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SaveAssessmentSettings.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AuthzQueriesFacadeAPI.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/integrated/AuthzQueriesFacade.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/standalone/AuthzQueriesFacade.java\nLog:\nSAK-12065\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Mon Nov 12 04:58:44 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 12 Nov 2007 04:58:44 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 12 Nov 2007 04:58:44 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby awakenings.mail.umich.edu () with ESMTP id lAC9wgCX002572;\n\tMon, 12 Nov 2007 04:58:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 473823CD.77451.6467 ; \n\t12 Nov 2007 04:58:40 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E5F60744C8;\n\tMon, 12 Nov 2007 09:58:31 +0000 (GMT)\nMessage-ID: <200711120953.lAC9rWva023139@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 267\n          for <source@collab.sakaiproject.org>;\n          Mon, 12 Nov 2007 09:58:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5B1C6221B2\n\tfor <source@collab.sakaiproject.org>; Mon, 12 Nov 2007 09:58:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAC9rWk3023141\n\tfor <source@collab.sakaiproject.org>; Mon, 12 Nov 2007 04:53:32 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAC9rWva023139\n\tfor source@collab.sakaiproject.org; Mon, 12 Nov 2007 04:53:32 -0500\nDate: Mon, 12 Nov 2007 04:53:32 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r38117 - assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 12 04:58:44 2007\nX-DSPAM-Confidence: 0.9740\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38117\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-11-12 04:53:08 -0500 (Mon, 12 Nov 2007)\nNew Revision: 38117\n\nModified:\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nSAK-11787 make use of the new Content review methods\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Mon Nov 12 04:44:46 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 12 Nov 2007 04:44:46 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 12 Nov 2007 04:44:46 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby casino.mail.umich.edu () with ESMTP id lAC9ijOH009761;\n\tMon, 12 Nov 2007 04:44:45 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 47382088.49A44.26084 ; \n\t12 Nov 2007 04:44:43 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 71B057A832;\n\tMon, 12 Nov 2007 09:44:34 +0000 (GMT)\nMessage-ID: <200711120939.lAC9dnjd023127@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 560\n          for <source@collab.sakaiproject.org>;\n          Mon, 12 Nov 2007 09:44:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 73D4A1DC5B\n\tfor <source@collab.sakaiproject.org>; Mon, 12 Nov 2007 09:44:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAC9dnne023129\n\tfor <source@collab.sakaiproject.org>; Mon, 12 Nov 2007 04:39:49 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAC9dnjd023127\n\tfor source@collab.sakaiproject.org; Mon, 12 Nov 2007 04:39:49 -0500\nDate: Mon, 12 Nov 2007 04:39:49 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r38116 - content-review/trunk/content-review-api/public/src/java/org/sakaiproject/contentreview/service\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 12 04:44:46 2007\nX-DSPAM-Confidence: 0.9765\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38116\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-11-12 04:39:21 -0500 (Mon, 12 Nov 2007)\nNew Revision: 38116\n\nModified:\ncontent-review/trunk/content-review-api/public/src/java/org/sakaiproject/contentreview/service/ContentReviewService.java\nLog:\nSAK-11787 deprecate the correct method\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Mon Nov 12 04:42:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 12 Nov 2007 04:42:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 12 Nov 2007 04:42:30 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby awakenings.mail.umich.edu () with ESMTP id lAC9gSBL031831;\n\tMon, 12 Nov 2007 04:42:28 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 47381FFF.1CEDD.30742 ; \n\t12 Nov 2007 04:42:25 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1E0C37468F;\n\tMon, 12 Nov 2007 09:42:18 +0000 (GMT)\nMessage-ID: <200711120937.lAC9bSIk023113@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 11\n          for <source@collab.sakaiproject.org>;\n          Mon, 12 Nov 2007 09:42:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1E53C1DC5B\n\tfor <source@collab.sakaiproject.org>; Mon, 12 Nov 2007 09:42:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAC9bSLu023115\n\tfor <source@collab.sakaiproject.org>; Mon, 12 Nov 2007 04:37:28 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAC9bSIk023113\n\tfor source@collab.sakaiproject.org; Mon, 12 Nov 2007 04:37:28 -0500\nDate: Mon, 12 Nov 2007 04:37:28 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r38115 - content-review/trunk/content-review-api/public/src/java/org/sakaiproject/contentreview/service\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 12 04:42:30 2007\nX-DSPAM-Confidence: 0.9763\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38115\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-11-12 04:36:57 -0500 (Mon, 12 Nov 2007)\nNew Revision: 38115\n\nModified:\ncontent-review/trunk/content-review-api/public/src/java/org/sakaiproject/contentreview/service/ContentReviewService.java\nLog:\nSAK-11787 deprecate the correct method\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Mon Nov 12 04:22:56 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 12 Nov 2007 04:22:56 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 12 Nov 2007 04:22:56 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby jacknife.mail.umich.edu () with ESMTP id lAC9MsB7009028;\n\tMon, 12 Nov 2007 04:22:54 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 47381B69.84FA3.30842 ; \n\t12 Nov 2007 04:22:52 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id AC1AA7468F;\n\tMon, 12 Nov 2007 09:22:45 +0000 (GMT)\nMessage-ID: <200711120917.lAC9HrGm023077@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 410\n          for <source@collab.sakaiproject.org>;\n          Mon, 12 Nov 2007 09:22:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4F30521DF7\n\tfor <source@collab.sakaiproject.org>; Mon, 12 Nov 2007 09:22:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAC9HsGf023079\n\tfor <source@collab.sakaiproject.org>; Mon, 12 Nov 2007 04:17:54 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAC9HrGm023077\n\tfor source@collab.sakaiproject.org; Mon, 12 Nov 2007 04:17:53 -0500\nDate: Mon, 12 Nov 2007 04:17:53 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r38114 - content-review/trunk/content-review-api/public/src/java/org/sakaiproject/contentreview/service\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov 12 04:22:56 2007\nX-DSPAM-Confidence: 0.9757\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38114\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-11-12 04:17:19 -0500 (Mon, 12 Nov 2007)\nNew Revision: 38114\n\nModified:\ncontent-review/trunk/content-review-api/public/src/java/org/sakaiproject/contentreview/service/ContentReviewService.java\nLog:\nSAK-11787 deprecat getReport and replace with getReportInstructor and getReportStrudent\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Sun Nov 11 18:00:36 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 11 Nov 2007 18:00:36 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 11 Nov 2007 18:00:36 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby flawless.mail.umich.edu () with ESMTP id lABN0ZQq013176;\n\tSun, 11 Nov 2007 18:00:35 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 4737898D.BCDC0.15509 ; \n\t11 Nov 2007 18:00:32 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7639F7335D;\n\tSun, 11 Nov 2007 23:00:26 +0000 (GMT)\nMessage-ID: <200711112255.lABMtc8h022266@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 275\n          for <source@collab.sakaiproject.org>;\n          Sun, 11 Nov 2007 23:00:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 832BE21DBF\n\tfor <source@collab.sakaiproject.org>; Sun, 11 Nov 2007 23:00:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lABMtcMY022268\n\tfor <source@collab.sakaiproject.org>; Sun, 11 Nov 2007 17:55:38 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lABMtc8h022266\n\tfor source@collab.sakaiproject.org; Sun, 11 Nov 2007 17:55:38 -0500\nDate: Sun, 11 Nov 2007 17:55:38 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov 11 18:00:36 2007\nX-DSPAM-Confidence: 0.9794\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38113\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-11 17:54:56 -0500 (Sun, 11 Nov 2007)\nNew Revision: 38113\n\nRemoved:\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/loader/shared/SharedComponentManagerMBean.java\nModified:\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/cover/ComponentManager.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/loader/shared/SharedComponentManager.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/proxy/ComponentManagerProxy.java\ncomponent/branches/SAK-12134/component-loader/component-loader-server/impl/src/java/org/sakaiproject/component/loader/server/SakaiLoader.java\nLog:\nRegistration working Ok now.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Sun Nov 11 16:54:49 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 11 Nov 2007 16:54:49 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 11 Nov 2007 16:54:49 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby chaos.mail.umich.edu () with ESMTP id lABLsm1g012565;\n\tSun, 11 Nov 2007 16:54:48 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 47377A23.47994.14236 ; \n\t11 Nov 2007 16:54:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BFC9174BE9;\n\tSun, 11 Nov 2007 21:54:42 +0000 (GMT)\nMessage-ID: <200711112149.lABLngOt022226@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 990\n          for <source@collab.sakaiproject.org>;\n          Sun, 11 Nov 2007 21:54:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3EF3621DE5\n\tfor <source@collab.sakaiproject.org>; Sun, 11 Nov 2007 21:54:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lABLngnE022228\n\tfor <source@collab.sakaiproject.org>; Sun, 11 Nov 2007 16:49:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lABLngOt022226\n\tfor source@collab.sakaiproject.org; Sun, 11 Nov 2007 16:49:42 -0500\nDate: Sun, 11 Nov 2007 16:49:42 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r38112 - event/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov 11 16:54:49 2007\nX-DSPAM-Confidence: 0.9781\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38112\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-11-11 16:49:41 -0500 (Sun, 11 Nov 2007)\nNew Revision: 38112\n\nAdded:\nevent/branches/SAK-11021/\nLog:\nSAK-11021 create branch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Sun Nov 11 10:01:05 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 11 Nov 2007 10:01:05 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 11 Nov 2007 10:01:05 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby sleepers.mail.umich.edu () with ESMTP id lABF14rm008615;\n\tSun, 11 Nov 2007 10:01:04 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4737192A.7A93B.28264 ; \n\t11 Nov 2007 10:01:01 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 622C375CD5;\n\tSun, 11 Nov 2007 15:01:03 +0000 (GMT)\nMessage-ID: <200711111456.lABEu8BB021899@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 357\n          for <source@collab.sakaiproject.org>;\n          Sun, 11 Nov 2007 15:00:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5C37B20083\n\tfor <source@collab.sakaiproject.org>; Sun, 11 Nov 2007 15:00:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lABEu8Tj021901\n\tfor <source@collab.sakaiproject.org>; Sun, 11 Nov 2007 09:56:08 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lABEu8BB021899\n\tfor source@collab.sakaiproject.org; Sun, 11 Nov 2007 09:56:08 -0500\nDate: Sun, 11 Nov 2007 09:56:08 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38111 - content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov 11 10:01:05 2007\nX-DSPAM-Confidence: 0.9828\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38111\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-11 09:56:04 -0500 (Sun, 11 Nov 2007)\nNew Revision: 38111\n\nModified:\ncontent/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java\nLog:\nSAK-12105: Missed out an uncommented bit, now everything should be good to go\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Sun Nov 11 09:53:46 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 11 Nov 2007 09:53:46 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 11 Nov 2007 09:53:46 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby godsend.mail.umich.edu () with ESMTP id lABErjA5026382;\n\tSun, 11 Nov 2007 09:53:45 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 47371774.240FF.3803 ; \n\t11 Nov 2007 09:53:42 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8D55E79842;\n\tSun, 11 Nov 2007 14:53:40 +0000 (GMT)\nMessage-ID: <200711111448.lABEmoIK021844@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 491\n          for <source@collab.sakaiproject.org>;\n          Sun, 11 Nov 2007 14:53:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 252B31DC6F\n\tfor <source@collab.sakaiproject.org>; Sun, 11 Nov 2007 14:53:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lABEmo31021847\n\tfor <source@collab.sakaiproject.org>; Sun, 11 Nov 2007 09:48:50 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lABEmoIK021844\n\tfor source@collab.sakaiproject.org; Sun, 11 Nov 2007 09:48:50 -0500\nDate: Sun, 11 Nov 2007 09:48:50 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38110 - content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov 11 09:53:46 2007\nX-DSPAM-Confidence: 0.9798\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38110\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-11 09:48:45 -0500 (Sun, 11 Nov 2007)\nNew Revision: 38110\n\nModified:\ncontent/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java\nLog:\nSAK-12105: Load tests are completed and passing against this branch, this portion of the branch is complete\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Sun Nov 11 06:15:48 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 11 Nov 2007 06:15:48 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 11 Nov 2007 06:15:48 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby godsend.mail.umich.edu () with ESMTP id lABBFlHm013872;\n\tSun, 11 Nov 2007 06:15:47 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4736E45E.8AEAC.20225 ; \n\t11 Nov 2007 06:15:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9D00C79B6D;\n\tSun, 11 Nov 2007 11:15:28 +0000 (GMT)\nMessage-ID: <200711111110.lABBAfPs021673@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1023\n          for <source@collab.sakaiproject.org>;\n          Sun, 11 Nov 2007 11:15:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 548D71F665\n\tfor <source@collab.sakaiproject.org>; Sun, 11 Nov 2007 11:15:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lABBAf1m021675\n\tfor <source@collab.sakaiproject.org>; Sun, 11 Nov 2007 06:10:41 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lABBAfPs021673\n\tfor source@collab.sakaiproject.org; Sun, 11 Nov 2007 06:10:41 -0500\nDate: Sun, 11 Nov 2007 06:10:41 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38109 - content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov 11 06:15:48 2007\nX-DSPAM-Confidence: 0.9833\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38109\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-11 06:10:33 -0500 (Sun, 11 Nov 2007)\nNew Revision: 38109\n\nAdded:\ncontent/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/util/ListPerformanceTesting.java\nRemoved:\ncontent/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/util/ListPerformanceTest.java\nModified:\ncontent/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/util/ConcurrentList.java\nLog:\nSAK-12105: Tests indicate that best syncronized List performance is acheived using a Vector\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Sat Nov 10 20:40:05 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 10 Nov 2007 20:40:05 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 10 Nov 2007 20:40:05 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby brazil.mail.umich.edu () with ESMTP id lAB1e4Lk027280;\n\tSat, 10 Nov 2007 20:40:04 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 47365D6E.C010A.16683 ; \n\t10 Nov 2007 20:40:01 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 22F5B72BAB;\n\tSun, 11 Nov 2007 01:39:58 +0000 (GMT)\nMessage-ID: <200711110135.lAB1Z68s008386@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 252\n          for <source@collab.sakaiproject.org>;\n          Sun, 11 Nov 2007 01:39:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A9AC821842\n\tfor <source@collab.sakaiproject.org>; Sun, 11 Nov 2007 01:39:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAB1Z6FH008388\n\tfor <source@collab.sakaiproject.org>; Sat, 10 Nov 2007 20:35:06 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAB1Z68s008386\n\tfor source@collab.sakaiproject.org; Sat, 10 Nov 2007 20:35:06 -0500\nDate: Sat, 10 Nov 2007 20:35:06 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38108 - content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Nov 10 20:40:04 2007\nX-DSPAM-Confidence: 0.9850\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38108\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-10 20:35:03 -0500 (Sat, 10 Nov 2007)\nNew Revision: 38108\n\nModified:\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\nLog:\nSAK-12168\nAdded log message in catch block.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Sat Nov 10 19:40:56 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 10 Nov 2007 19:40:56 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 10 Nov 2007 19:40:56 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby brazil.mail.umich.edu () with ESMTP id lAB0eudL013604;\n\tSat, 10 Nov 2007 19:40:56 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 47364F92.E9DFE.18942 ; \n\t10 Nov 2007 19:40:53 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B8C4D79318;\n\tSun, 11 Nov 2007 00:35:45 +0000 (GMT)\nMessage-ID: <200711110036.lAB0a13j008258@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 357\n          for <source@collab.sakaiproject.org>;\n          Sun, 11 Nov 2007 00:35:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1DEF81FCCD\n\tfor <source@collab.sakaiproject.org>; Sun, 11 Nov 2007 00:40:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAB0a1cJ008260\n\tfor <source@collab.sakaiproject.org>; Sat, 10 Nov 2007 19:36:01 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAB0a13j008258\n\tfor source@collab.sakaiproject.org; Sat, 10 Nov 2007 19:36:01 -0500\nDate: Sat, 10 Nov 2007 19:36:01 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38107 - content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Nov 10 19:40:56 2007\nX-DSPAM-Confidence: 0.9811\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38107\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-10 19:35:57 -0500 (Sat, 10 Nov 2007)\nNew Revision: 38107\n\nModified:\ncontent/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/util/ListPerformanceTest.java\nLog:\nSAK-12105: Added experimental list handling code and tests for speed, adjusted numbers\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Sat Nov 10 19:31:41 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 10 Nov 2007 19:31:41 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 10 Nov 2007 19:31:41 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby flawless.mail.umich.edu () with ESMTP id lAB0VeZB019595;\n\tSat, 10 Nov 2007 19:31:40 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 47364D65.B5DED.8538 ; \n\t10 Nov 2007 19:31:36 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 42A1E79318;\n\tSun, 11 Nov 2007 00:26:32 +0000 (GMT)\nMessage-ID: <200711110026.lAB0QfJr008246@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 213\n          for <source@collab.sakaiproject.org>;\n          Sun, 11 Nov 2007 00:26:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EC4481FCCD\n\tfor <source@collab.sakaiproject.org>; Sun, 11 Nov 2007 00:31:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAB0QgxL008248\n\tfor <source@collab.sakaiproject.org>; Sat, 10 Nov 2007 19:26:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAB0QfJr008246\n\tfor source@collab.sakaiproject.org; Sat, 10 Nov 2007 19:26:41 -0500\nDate: Sat, 10 Nov 2007 19:26:41 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38106 - content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Nov 10 19:31:41 2007\nX-DSPAM-Confidence: 0.8428\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38106\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-10 19:26:37 -0500 (Sat, 10 Nov 2007)\nNew Revision: 38106\n\nModified:\ncontent/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/util/ListPerformanceTest.java\nLog:\nSAK-12105: Added experimental list handling code and tests for speed\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Sat Nov 10 18:50:18 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 10 Nov 2007 18:50:18 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 10 Nov 2007 18:50:18 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby score.mail.umich.edu () with ESMTP id lAANoFcn031276;\n\tSat, 10 Nov 2007 18:50:15 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 473643B2.5DBB7.28378 ; \n\t10 Nov 2007 18:50:13 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E4BEE77584;\n\tSat, 10 Nov 2007 23:50:10 +0000 (GMT)\nMessage-ID: <200711102345.lAANjLxd008232@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 292\n          for <source@collab.sakaiproject.org>;\n          Sat, 10 Nov 2007 23:49:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4D1671CDDB\n\tfor <source@collab.sakaiproject.org>; Sat, 10 Nov 2007 23:49:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAANjLMv008234\n\tfor <source@collab.sakaiproject.org>; Sat, 10 Nov 2007 18:45:21 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAANjLxd008232\n\tfor source@collab.sakaiproject.org; Sat, 10 Nov 2007 18:45:21 -0500\nDate: Sat, 10 Nov 2007 18:45:21 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38105 - in content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test: . util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Nov 10 18:50:18 2007\nX-DSPAM-Confidence: 0.9815\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38105\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-10 18:45:13 -0500 (Sat, 10 Nov 2007)\nNew Revision: 38105\n\nAdded:\ncontent/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/util/ListPerformanceTest.java\nModified:\ncontent/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java\ncontent/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/util/ConcurrentList.java\nLog:\nSAK-12105: Added experimental list handling code and tests for speed\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Sat Nov 10 15:42:07 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 10 Nov 2007 15:42:07 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 10 Nov 2007 15:42:07 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby faithful.mail.umich.edu () with ESMTP id lAAKg6xA002541;\n\tSat, 10 Nov 2007 15:42:06 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 47361797.A85EA.17745 ; \n\t10 Nov 2007 15:42:02 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A87F27934F;\n\tSat, 10 Nov 2007 20:41:56 +0000 (GMT)\nMessage-ID: <200711102037.lAAKb46Y007986@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 906\n          for <source@collab.sakaiproject.org>;\n          Sat, 10 Nov 2007 20:41:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5E3CF2185D\n\tfor <source@collab.sakaiproject.org>; Sat, 10 Nov 2007 20:41:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAAKb4lR007988\n\tfor <source@collab.sakaiproject.org>; Sat, 10 Nov 2007 15:37:04 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAAKb46Y007986\n\tfor source@collab.sakaiproject.org; Sat, 10 Nov 2007 15:37:04 -0500\nDate: Sat, 10 Nov 2007 15:37:04 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38104 - component/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Nov 10 15:42:07 2007\nX-DSPAM-Confidence: 0.8427\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38104\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-10 15:37:03 -0500 (Sat, 10 Nov 2007)\nNew Revision: 38104\n\nAdded:\ncomponent/branches/SAK-12166/\nLog:\nSAK-12166\nnew branch /svn/component/branch/SAK-12166\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Sat Nov 10 14:55:55 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 10 Nov 2007 14:55:55 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 10 Nov 2007 14:55:55 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby fan.mail.umich.edu () with ESMTP id lAAJtsbw008126;\n\tSat, 10 Nov 2007 14:55:54 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 47360CC2.F0368.15552 ; \n\t10 Nov 2007 14:55:49 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D2F2B6641F;\n\tSat, 10 Nov 2007 19:55:43 +0000 (GMT)\nMessage-ID: <200711101951.lAAJp1lf007927@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 568\n          for <source@collab.sakaiproject.org>;\n          Sat, 10 Nov 2007 19:55:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 516992187A\n\tfor <source@collab.sakaiproject.org>; Sat, 10 Nov 2007 19:55:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAAJp1vf007929\n\tfor <source@collab.sakaiproject.org>; Sat, 10 Nov 2007 14:51:01 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAAJp1lf007927\n\tfor source@collab.sakaiproject.org; Sat, 10 Nov 2007 14:51:01 -0500\nDate: Sat, 10 Nov 2007 14:51:01 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38103 - content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Nov 10 14:55:55 2007\nX-DSPAM-Confidence: 0.8478\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38103\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-10 14:50:58 -0500 (Sat, 10 Nov 2007)\nNew Revision: 38103\n\nModified:\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\nLog:\nSAK-12168\nAvoid checking for availability when use is admin (super-user)\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Sat Nov 10 14:51:32 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 10 Nov 2007 14:51:32 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 10 Nov 2007 14:51:32 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby score.mail.umich.edu () with ESMTP id lAAJpVKF029478;\n\tSat, 10 Nov 2007 14:51:32 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 47360BBF.3022B.21771 ; \n\t10 Nov 2007 14:51:29 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2BA7879434;\n\tSat, 10 Nov 2007 19:51:27 +0000 (GMT)\nMessage-ID: <200711101946.lAAJkjNj007915@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 138\n          for <source@collab.sakaiproject.org>;\n          Sat, 10 Nov 2007 19:51:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 92E7421871\n\tfor <source@collab.sakaiproject.org>; Sat, 10 Nov 2007 19:51:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAAJkjiG007917\n\tfor <source@collab.sakaiproject.org>; Sat, 10 Nov 2007 14:46:45 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAAJkjNj007915\n\tfor source@collab.sakaiproject.org; Sat, 10 Nov 2007 14:46:45 -0500\nDate: Sat, 10 Nov 2007 14:46:45 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38102 - content/branches/SAK-12105/content-jcr-migration-api\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Nov 10 14:51:32 2007\nX-DSPAM-Confidence: 0.9817\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38102\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-11-10 14:46:40 -0500 (Sat, 10 Nov 2007)\nNew Revision: 38102\n\nRemoved:\ncontent/branches/SAK-12105/content-jcr-migration-api/m2-target/\nLog:\nSAK-12105 forgot to remove target build\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Sat Nov 10 14:50:57 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 10 Nov 2007 14:50:57 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 10 Nov 2007 14:50:57 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby jacknife.mail.umich.edu () with ESMTP id lAAJoupZ015779;\n\tSat, 10 Nov 2007 14:50:56 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 47360B99.39242.9333 ; \n\t10 Nov 2007 14:50:52 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 447C46641F;\n\tSat, 10 Nov 2007 19:50:40 +0000 (GMT)\nMessage-ID: <200711101945.lAAJjtH4007903@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 346\n          for <source@collab.sakaiproject.org>;\n          Sat, 10 Nov 2007 19:50:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 75C5121871\n\tfor <source@collab.sakaiproject.org>; Sat, 10 Nov 2007 19:50:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAAJjukD007905\n\tfor <source@collab.sakaiproject.org>; Sat, 10 Nov 2007 14:45:56 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAAJjtH4007903\n\tfor source@collab.sakaiproject.org; Sat, 10 Nov 2007 14:45:55 -0500\nDate: Sat, 10 Nov 2007 14:45:55 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [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!\n ontent/migration content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Nov 10 14:50:57 2007\nX-DSPAM-Confidence: 0.8480\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38101\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-11-10 14:45:28 -0500 (Sat, 10 Nov 2007)\nNew Revision: 38101\n\nAdded:\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/jcr/migration/ContentToJCRMigratorImpl.java\ncontent/branches/SAK-12105/content-jcr-migration-api/\ncontent/branches/SAK-12105/content-jcr-migration-api/m2-target/\ncontent/branches/SAK-12105/content-jcr-migration-api/m2-target/classes/\ncontent/branches/SAK-12105/content-jcr-migration-api/m2-target/classes/org/\ncontent/branches/SAK-12105/content-jcr-migration-api/m2-target/classes/org/sakaiproject/\ncontent/branches/SAK-12105/content-jcr-migration-api/m2-target/classes/org/sakaiproject/content/\ncontent/branches/SAK-12105/content-jcr-migration-api/m2-target/classes/org/sakaiproject/content/migration/\ncontent/branches/SAK-12105/content-jcr-migration-api/m2-target/classes/org/sakaiproject/content/migration/api/\ncontent/branches/SAK-12105/content-jcr-migration-api/m2-target/classes/org/sakaiproject/content/migration/api/ContentToJCRMigrator.class\ncontent/branches/SAK-12105/content-jcr-migration-api/m2-target/sakai-content-jcr-migration-api-M2.jar\ncontent/branches/SAK-12105/content-jcr-migration-api/pom.xml\ncontent/branches/SAK-12105/content-jcr-migration-api/src/\ncontent/branches/SAK-12105/content-jcr-migration-api/src/java/\ncontent/branches/SAK-12105/content-jcr-migration-api/src/java/org/\ncontent/branches/SAK-12105/content-jcr-migration-api/src/java/org/sakaiproject/\ncontent/branches/SAK-12105/content-jcr-migration-api/src/java/org/sakaiproject/content/\ncontent/branches/SAK-12105/content-jcr-migration-api/src/java/org/sakaiproject/content/migration/\ncontent/branches/SAK-12105/content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api/\ncontent/branches/SAK-12105/content-jcr-migration-api/src/java/org/sakaiproject/content/migration/api/ContentToJCRMigrator.java\nModified:\ncontent/branches/SAK-12105/content-impl-jcr/impl/pom.xml\ncontent/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF/components-jcr.xml\ncontent/branches/SAK-12105/content-impl-jcr/pack/src/webapp/WEB-INF/components.xml\ncontent/branches/SAK-12105/pom.xml\nLog:\nSAK-12105 In process of moving a portion of the migration code from jython scripts to a component\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Sat Nov 10 14:15:45 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 10 Nov 2007 14:15:45 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 10 Nov 2007 14:15:45 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby awakenings.mail.umich.edu () with ESMTP id lAAJFiPV032184;\n\tSat, 10 Nov 2007 14:15:44 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4736035B.4F7FC.12141 ; \n\t10 Nov 2007 14:15:42 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id AE3C371C3C;\n\tSat, 10 Nov 2007 19:15:29 +0000 (GMT)\nMessage-ID: <200711101910.lAAJAqFs007889@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 422\n          for <source@collab.sakaiproject.org>;\n          Sat, 10 Nov 2007 19:15:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6A10A1FCC3\n\tfor <source@collab.sakaiproject.org>; Sat, 10 Nov 2007 19:15:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAAJAqu1007891\n\tfor <source@collab.sakaiproject.org>; Sat, 10 Nov 2007 14:10:52 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAAJAqFs007889\n\tfor source@collab.sakaiproject.org; Sat, 10 Nov 2007 14:10:52 -0500\nDate: Sat, 10 Nov 2007 14:10:52 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38100 - content/branches/SAK-12105/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Nov 10 14:15:45 2007\nX-DSPAM-Confidence: 0.9841\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38100\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-10 14:10:48 -0500 (Sat, 10 Nov 2007)\nNew Revision: 38100\n\nModified:\ncontent/branches/SAK-12105/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\nLog:\nSAK-12168: Fixed remove permissions check to be more efficient and also to work correctly for superuser\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Sat Nov 10 13:44:23 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 10 Nov 2007 13:44:23 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 10 Nov 2007 13:44:23 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby fan.mail.umich.edu () with ESMTP id lAAIiMtf019395;\n\tSat, 10 Nov 2007 13:44:22 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 4735FBF5.F405C.1861 ; \n\t10 Nov 2007 13:44:19 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3F5007933D;\n\tSat, 10 Nov 2007 18:41:11 +0000 (GMT)\nMessage-ID: <200711101839.lAAIdJ7I007875@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 148\n          for <source@collab.sakaiproject.org>;\n          Sat, 10 Nov 2007 18:40:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BB7BB1D604\n\tfor <source@collab.sakaiproject.org>; Sat, 10 Nov 2007 18:43:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAAIdJg5007877\n\tfor <source@collab.sakaiproject.org>; Sat, 10 Nov 2007 13:39:19 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAAIdJ7I007875\n\tfor source@collab.sakaiproject.org; Sat, 10 Nov 2007 13:39:19 -0500\nDate: Sat, 10 Nov 2007 13:39:19 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38099 - content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Nov 10 13:44:23 2007\nX-DSPAM-Confidence: 0.9870\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38099\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-10 13:39:14 -0500 (Sat, 10 Nov 2007)\nNew Revision: 38099\n\nModified:\ncontent/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java\nLog:\nSAK-12105: Fixed error in the test and removed the exception swallowing for permissions\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Sat Nov 10 08:19:22 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 10 Nov 2007 08:19:22 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 10 Nov 2007 08:19:22 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby brazil.mail.umich.edu () with ESMTP id lAADJL0f020690;\n\tSat, 10 Nov 2007 08:19:21 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 4735AFD4.24E4D.17360 ; \n\t10 Nov 2007 08:19:18 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5403C72CE7;\n\tSat, 10 Nov 2007 13:19:13 +0000 (GMT)\nMessage-ID: <200711101314.lAADEVIi007750@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 678\n          for <source@collab.sakaiproject.org>;\n          Sat, 10 Nov 2007 13:19:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EA667215B1\n\tfor <source@collab.sakaiproject.org>; Sat, 10 Nov 2007 13:19:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAADEVtd007752\n\tfor <source@collab.sakaiproject.org>; Sat, 10 Nov 2007 08:14:31 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAADEVIi007750\n\tfor source@collab.sakaiproject.org; Sat, 10 Nov 2007 08:14:31 -0500\nDate: Sat, 10 Nov 2007 08:14:31 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38098 - content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Nov 10 08:19:22 2007\nX-DSPAM-Confidence: 0.9840\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38098\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-10 08:14:27 -0500 (Sat, 10 Nov 2007)\nNew Revision: 38098\n\nModified:\ncontent/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java\nLog:\nSAK-12105: Captured some of the exceptions while testing since we cannot seem to run the tests without getting seemingly random exceptions\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Sat Nov 10 07:57:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 10 Nov 2007 07:57:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 10 Nov 2007 07:57:51 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby godsend.mail.umich.edu () with ESMTP id lAACvpCH017204;\n\tSat, 10 Nov 2007 07:57:51 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4735AACA.4BCFF.20535 ; \n\t10 Nov 2007 07:57:49 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E0B8678CA2;\n\tSat, 10 Nov 2007 12:57:42 +0000 (GMT)\nMessage-ID: <200711101253.lAACr3gj007701@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 998\n          for <source@collab.sakaiproject.org>;\n          Sat, 10 Nov 2007 12:57:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 493391F187\n\tfor <source@collab.sakaiproject.org>; Sat, 10 Nov 2007 12:57:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAACr3QQ007703\n\tfor <source@collab.sakaiproject.org>; Sat, 10 Nov 2007 07:53:03 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAACr3gj007701\n\tfor source@collab.sakaiproject.org; Sat, 10 Nov 2007 07:53:03 -0500\nDate: Sat, 10 Nov 2007 07:53:03 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38097 - cafe/branches/2-5-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Nov 10 07:57:51 2007\nX-DSPAM-Confidence: 0.9816\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38097\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-10 07:52:58 -0500 (Sat, 10 Nov 2007)\nNew Revision: 38097\n\nModified:\ncafe/branches/2-5-x/\ncafe/branches/2-5-x/.externals\nLog:\nCafe 2.5 branch should now actually be working\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Sat Nov 10 07:54:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 10 Nov 2007 07:54:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 10 Nov 2007 07:54:51 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby awakenings.mail.umich.edu () with ESMTP id lAACsp1s027010;\n\tSat, 10 Nov 2007 07:54:51 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 4735AA15.88596.13908 ; \n\t10 Nov 2007 07:54:48 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6A62F78841;\n\tSat, 10 Nov 2007 12:53:37 +0000 (GMT)\nMessage-ID: <200711101249.lAACnk6l007689@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 365\n          for <source@collab.sakaiproject.org>;\n          Sat, 10 Nov 2007 12:53:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8DC281F187\n\tfor <source@collab.sakaiproject.org>; Sat, 10 Nov 2007 12:54:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAACnkHv007691\n\tfor <source@collab.sakaiproject.org>; Sat, 10 Nov 2007 07:49:46 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAACnk6l007689\n\tfor source@collab.sakaiproject.org; Sat, 10 Nov 2007 07:49:46 -0500\nDate: Sat, 10 Nov 2007 07:49:46 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38096 - cafe/branches/2-5-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Nov 10 07:54:51 2007\nX-DSPAM-Confidence: 0.9804\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38096\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-10 07:49:41 -0500 (Sat, 10 Nov 2007)\nNew Revision: 38096\n\nModified:\ncafe/branches/2-5-x/\ncafe/branches/2-5-x/.externals\nLog:\nCafe 2.5 branch should now be working\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Sat Nov 10 07:43:58 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 10 Nov 2007 07:43:58 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 10 Nov 2007 07:43:58 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby panther.mail.umich.edu () with ESMTP id lAAChvJR010248;\n\tSat, 10 Nov 2007 07:43:57 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 4735A77A.3BE35.21446 ; \n\t10 Nov 2007 07:43:52 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7B47C78CB4;\n\tSat, 10 Nov 2007 12:42:36 +0000 (GMT)\nMessage-ID: <200711101238.lAACckYl007677@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 891\n          for <source@collab.sakaiproject.org>;\n          Sat, 10 Nov 2007 12:42:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CA55F211B2\n\tfor <source@collab.sakaiproject.org>; Sat, 10 Nov 2007 12:43:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAACckKD007679\n\tfor <source@collab.sakaiproject.org>; Sat, 10 Nov 2007 07:38:46 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAACckYl007677\n\tfor source@collab.sakaiproject.org; Sat, 10 Nov 2007 07:38:46 -0500\nDate: Sat, 10 Nov 2007 07:38:46 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38095 - cafe/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Nov 10 07:43:58 2007\nX-DSPAM-Confidence: 0.9815\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38095\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-10 07:38:40 -0500 (Sat, 10 Nov 2007)\nNew Revision: 38095\n\nAdded:\ncafe/branches/2-5-x/\nLog:\ncreated 2.5.x branch\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Sat Nov 10 07:38:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sat, 10 Nov 2007 07:38:43 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sat, 10 Nov 2007 07:38:43 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby panther.mail.umich.edu () with ESMTP id lAACcgXD008863;\n\tSat, 10 Nov 2007 07:38:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 4735A64D.26C71.18919 ; \n\t10 Nov 2007 07:38:39 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 25FA078C99;\n\tSat, 10 Nov 2007 12:37:31 +0000 (GMT)\nMessage-ID: <200711101233.lAACXktQ007663@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 769\n          for <source@collab.sakaiproject.org>;\n          Sat, 10 Nov 2007 12:37:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4781D211B2\n\tfor <source@collab.sakaiproject.org>; Sat, 10 Nov 2007 12:38:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lAACXkLK007665\n\tfor <source@collab.sakaiproject.org>; Sat, 10 Nov 2007 07:33:46 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lAACXktQ007663\n\tfor source@collab.sakaiproject.org; Sat, 10 Nov 2007 07:33:46 -0500\nDate: Sat, 10 Nov 2007 07:33:46 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38094 - cafe/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sat Nov 10 07:38:43 2007\nX-DSPAM-Confidence: 0.8436\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38094\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-10 07:33:42 -0500 (Sat, 10 Nov 2007)\nNew Revision: 38094\n\nRemoved:\ncafe/branches/SAK-10971/\nLog:\nRemoving branch as it is no longer needed\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Fri Nov  9 16:35:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 09 Nov 2007 16:35:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 09 Nov 2007 16:35:17 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby brazil.mail.umich.edu () with ESMTP id lA9LZGNe010051;\n\tFri, 9 Nov 2007 16:35:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 4734D28D.3DAC8.26488 ; \n\t 9 Nov 2007 16:35:12 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7F2F8784E9;\n\tFri,  9 Nov 2007 21:35:03 +0000 (GMT)\nMessage-ID: <200711092130.lA9LUk1u006641@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 672\n          for <source@collab.sakaiproject.org>;\n          Fri, 9 Nov 2007 21:34:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 54F2821409\n\tfor <source@collab.sakaiproject.org>; Fri,  9 Nov 2007 21:34:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9LUkmV006643\n\tfor <source@collab.sakaiproject.org>; Fri, 9 Nov 2007 16:30:46 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9LUk1u006641\n\tfor source@collab.sakaiproject.org; Fri, 9 Nov 2007 16:30:46 -0500\nDate: Fri, 9 Nov 2007 16:30:46 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38092 - in msgcntr/branches/oncourse_2-4-x/messageforums-app/src: java/org/sakaiproject/tool/messageforums webapp/jsp/privateMsg\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov  9 16:35:17 2007\nX-DSPAM-Confidence: 0.9892\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38092\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-09 16:30:45 -0500 (Fri, 09 Nov 2007)\nNew Revision: 38092\n\nModified:\nmsgcntr/branches/oncourse_2-4-x/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java\nmsgcntr/branches/oncourse_2-4-x/messageforums-app/src/webapp/jsp/privateMsg/pvtMsg.jsp\nmsgcntr/branches/oncourse_2-4-x/messageforums-app/src/webapp/jsp/privateMsg/topNav.jsp\nLog:\nsvn merge -c 34591 https://source.sakaiproject.org/svn/msgcntr/trunk\nU    messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java\nU    messageforums-app/src/webapp/jsp/privateMsg/topNav.jsp\nU    messageforums-app/src/webapp/jsp/privateMsg/pvtMsg.jsp\nsvn log -r 34591:34591 https://source.sakaiproject.org/svn/msgcntr/trunk\n------------------------------------------------------------------------\nr34591 | josrodri@iupui.edu | 2007-08-30 14:25:51 -0400 (Thu, 30 Aug 2007) | 1 line\n\nSAK-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\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Fri Nov  9 16:34:08 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 09 Nov 2007 16:34:08 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 09 Nov 2007 16:34:08 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby godsend.mail.umich.edu () with ESMTP id lA9LY6xq006549;\n\tFri, 9 Nov 2007 16:34:06 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 4734D23D.92DF3.6043 ; \n\t 9 Nov 2007 16:33:52 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B3DD070FFC;\n\tFri,  9 Nov 2007 21:33:47 +0000 (GMT)\nMessage-ID: <200711092129.lA9LTM15006628@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 611\n          for <source@collab.sakaiproject.org>;\n          Fri, 9 Nov 2007 21:33:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7A1B421409\n\tfor <source@collab.sakaiproject.org>; Fri,  9 Nov 2007 21:33:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9LTMp0006630\n\tfor <source@collab.sakaiproject.org>; Fri, 9 Nov 2007 16:29:22 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9LTM15006628\n\tfor source@collab.sakaiproject.org; Fri, 9 Nov 2007 16:29:22 -0500\nDate: Fri, 9 Nov 2007 16:29:22 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38091 - in msgcntr/branches/oncourse_2-4-x/messageforums-app/src: java/org/sakaiproject/tool/messageforums webapp/jsp/privateMsg\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov  9 16:34:08 2007\nX-DSPAM-Confidence: 0.5949\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38091\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-09 16:29:21 -0500 (Fri, 09 Nov 2007)\nNew Revision: 38091\n\nAdded:\nmsgcntr/branches/oncourse_2-4-x/messageforums-app/src/webapp/jsp/privateMsg/topNav.jsp\nModified:\nmsgcntr/branches/oncourse_2-4-x/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java\nmsgcntr/branches/oncourse_2-4-x/messageforums-app/src/webapp/jsp/privateMsg/pvtMsg.jsp\nmsgcntr/branches/oncourse_2-4-x/messageforums-app/src/webapp/jsp/privateMsg/pvtMsgEx.jsp\nLog:\nsvn merge -c 31877 https://source.sakaiproject.org/svn/msgcntr/trunk\nU    messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java\nA    messageforums-app/src/webapp/jsp/privateMsg/topNav.jsp\nU    messageforums-app/src/webapp/jsp/privateMsg/pvtMsgEx.jsp\nU    messageforums-app/src/webapp/jsp/privateMsg/pvtMsg.jsp\nsvn merge -c 31880 https://source.sakaiproject.org/svn/msgcntr/trunk\nG    messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java\nU    messageforums-app/src/webapp/jsp/privateMsg/topNav.jsp\nsvn merge -c 31885 https://source.sakaiproject.org/svn/msgcntr/trunk\nG    messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java\nsvn log -r 31877:31877 https://source.sakaiproject.org/svn/msgcntr/trunk\n------------------------------------------------------------------------\nr31877 | josrodri@iupui.edu | 2007-06-26 16:33:06 -0400 (Tue, 26 Jun 2007) | 1 line\n\nSAK-10419: fixed breadcrumbs for search results. Also added Previous/Next Folder links. Lastly, moved breadcrumb Previous/Next Folder code to own jsp page.\n------------------------------------------------------------------------\nsvn log -r 31880:31880 https://source.sakaiproject.org/svn/msgcntr/trunk\n------------------------------------------------------------------------\nr31880 | josrodri@iupui.edu | 2007-06-27 09:55:47 -0400 (Wed, 27 Jun 2007) | 1 line\n\nSAK-10419 - missed navigation case\n------------------------------------------------------------------------\nsvn log -r 31885:31885 https://source.sakaiproject.org/svn/msgcntr/trunk\n------------------------------------------------------------------------\nr31885 | josrodri@iupui.edu | 2007-06-27 11:16:48 -0400 (Wed, 27 Jun 2007) | 1 line\n\nSAK-10419\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Fri Nov  9 16:14:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 09 Nov 2007 16:14:37 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 09 Nov 2007 16:14:37 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby godsend.mail.umich.edu () with ESMTP id lA9LEaJT027053;\n\tFri, 9 Nov 2007 16:14:36 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 4734CDB4.6C67B.1526 ; \n\t 9 Nov 2007 16:14:31 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 606B578272;\n\tFri,  9 Nov 2007 21:14:27 +0000 (GMT)\nMessage-ID: <200711092109.lA9L9wNV006546@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 198\n          for <source@collab.sakaiproject.org>;\n          Fri, 9 Nov 2007 21:14:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 51DF0213FC\n\tfor <source@collab.sakaiproject.org>; Fri,  9 Nov 2007 21:14:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9L9wYm006548\n\tfor <source@collab.sakaiproject.org>; Fri, 9 Nov 2007 16:09:58 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9L9wNV006546\n\tfor source@collab.sakaiproject.org; Fri, 9 Nov 2007 16:09:58 -0500\nDate: Fri, 9 Nov 2007 16:09:58 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38089 - in syllabus/branches/sakai_2-4-x/syllabus-app/src: java/org/sakaiproject/tool/syllabus webapp/syllabus\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov  9 16:14:37 2007\nX-DSPAM-Confidence: 0.9888\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38089\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-09 16:09:57 -0500 (Fri, 09 Nov 2007)\nNew Revision: 38089\n\nModified:\nsyllabus/branches/sakai_2-4-x/syllabus-app/src/java/org/sakaiproject/tool/syllabus/SyllabusTool.java\nsyllabus/branches/sakai_2-4-x/syllabus-app/src/webapp/syllabus/main.jsp\nLog:\nsvn merge -c 37803 https://source.sakaiproject.org/svn/syllabus/trunk\nU    syllabus-app/src/java/org/sakaiproject/tool/syllabus/SyllabusTool.java\nU    syllabus-app/src/webapp/syllabus/main.jsp\nsvn log -r 37803:37803 https://source.sakaiproject.org/svn/syllabus/trunk\n------------------------------------------------------------------------\nr37803 | josrodri@iupui.edu | 2007-11-06 14:03:15 -0500 (Tue, 06 Nov 2007) | 1 line\n\nSAK-10333, SAK-10587, SAK-11221: refactored how print friendly url is determined.\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Fri Nov  9 16:13:22 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 09 Nov 2007 16:13:22 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 09 Nov 2007 16:13:22 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby casino.mail.umich.edu () with ESMTP id lA9LDLY2027812;\n\tFri, 9 Nov 2007 16:13:21 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 4734CD68.E004F.10972 ; \n\t 9 Nov 2007 16:13:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4838878423;\n\tFri,  9 Nov 2007 21:13:05 +0000 (GMT)\nMessage-ID: <200711092108.lA9L8aSZ006529@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 369\n          for <source@collab.sakaiproject.org>;\n          Fri, 9 Nov 2007 21:12:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2918DB0C8\n\tfor <source@collab.sakaiproject.org>; Fri,  9 Nov 2007 21:12:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9L8anv006531\n\tfor <source@collab.sakaiproject.org>; Fri, 9 Nov 2007 16:08:36 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9L8aSZ006529\n\tfor source@collab.sakaiproject.org; Fri, 9 Nov 2007 16:08:36 -0500\nDate: Fri, 9 Nov 2007 16:08:36 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov  9 16:13:22 2007\nX-DSPAM-Confidence: 0.7537\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38088\n\nAuthor: ray@media.berkeley.edu\nDate: 2007-11-09 16:08:28 -0500 (Fri, 09 Nov 2007)\nNew Revision: 38088\n\nModified:\ncomponent/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/component/impl/SpringCompMgr.java\ncomponent/branches/SAK-8315/component-impl/impl/src/java/org/sakaiproject/component/impl/BasicConfigurationService.java\nLog:\nRemove some obsolete code and comments\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Fri Nov  9 16:12:48 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 09 Nov 2007 16:12:48 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 09 Nov 2007 16:12:48 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby awakenings.mail.umich.edu () with ESMTP id lA9LCmrj017773;\n\tFri, 9 Nov 2007 16:12:48 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 4734CD28.48B17.8505 ; \n\t 9 Nov 2007 16:12:11 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2168B78272;\n\tFri,  9 Nov 2007 21:11:45 +0000 (GMT)\nMessage-ID: <200711092107.lA9L78xI006516@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 738\n          for <source@collab.sakaiproject.org>;\n          Fri, 9 Nov 2007 21:11:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2ECC4B0C8\n\tfor <source@collab.sakaiproject.org>; Fri,  9 Nov 2007 21:11:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9L78Fd006518\n\tfor <source@collab.sakaiproject.org>; Fri, 9 Nov 2007 16:07:08 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9L78xI006516\n\tfor source@collab.sakaiproject.org; Fri, 9 Nov 2007 16:07:08 -0500\nDate: Fri, 9 Nov 2007 16:07:08 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r38087 - oncourse/branches/sakai_2-4-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov  9 16:12:48 2007\nX-DSPAM-Confidence: 0.9791\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38087\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-11-09 16:07:07 -0500 (Fri, 09 Nov 2007)\nNew Revision: 38087\n\nModified:\noncourse/branches/sakai_2-4-x/\noncourse/branches/sakai_2-4-x/.externals\nLog:\nUpdated externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Fri Nov  9 16:11:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 09 Nov 2007 16:11:42 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 09 Nov 2007 16:11:42 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby flawless.mail.umich.edu () with ESMTP id lA9LBfSR005083;\n\tFri, 9 Nov 2007 16:11:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 4734CD00.A02A6.7585 ; \n\t 9 Nov 2007 16:11:32 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0C3AB70F6A;\n\tFri,  9 Nov 2007 21:11:25 +0000 (GMT)\nMessage-ID: <200711092106.lA9L6n3w006504@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 901\n          for <source@collab.sakaiproject.org>;\n          Fri, 9 Nov 2007 21:11:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 80AE6B0C8\n\tfor <source@collab.sakaiproject.org>; Fri,  9 Nov 2007 21:10:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9L6naK006506\n\tfor <source@collab.sakaiproject.org>; Fri, 9 Nov 2007 16:06:49 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9L6n3w006504\n\tfor source@collab.sakaiproject.org; Fri, 9 Nov 2007 16:06:49 -0500\nDate: Fri, 9 Nov 2007 16:06:49 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38086 - syllabus/branches/sakai_2-4-x/syllabus-app/src/webapp/syllabus\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov  9 16:11:42 2007\nX-DSPAM-Confidence: 0.9899\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38086\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-09 16:06:48 -0500 (Fri, 09 Nov 2007)\nNew Revision: 38086\n\nModified:\nsyllabus/branches/sakai_2-4-x/syllabus-app/src/webapp/syllabus/main.jsp\nLog:\nsvn merge -c 34215 https://source.sakaiproject.org/svn/syllabus/trunk\nU    syllabus-app/src/webapp/syllabus/main.jsp\nsvn log -r 34215:34215 https://source.sakaiproject.org/svn/syllabus/trunk\n------------------------------------------------------------------------\nr34215 | josrodri@iupui.edu | 2007-08-21 14:22:14 -0400 (Tue, 21 Aug 2007) | 1 line\n\nSAK-11221: missed check for https:// prefix when determining what url to redirect to\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Fri Nov  9 15:57:52 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 09 Nov 2007 15:57:52 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 09 Nov 2007 15:57:52 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby faithful.mail.umich.edu () with ESMTP id lA9KvpDc006820;\n\tFri, 9 Nov 2007 15:57:51 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 4734C9CA.3AF33.5445 ; \n\t 9 Nov 2007 15:57:49 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9FA4978469;\n\tFri,  9 Nov 2007 20:48:02 +0000 (GMT)\nMessage-ID: <200711092031.lA9KViML006409@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 43\n          for <source@collab.sakaiproject.org>;\n          Fri, 9 Nov 2007 20:47:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 64AA0214FD\n\tfor <source@collab.sakaiproject.org>; Fri,  9 Nov 2007 20:35:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9KViAT006411\n\tfor <source@collab.sakaiproject.org>; Fri, 9 Nov 2007 15:31:44 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9KViML006409\n\tfor source@collab.sakaiproject.org; Fri, 9 Nov 2007 15:31:44 -0500\nDate: Fri, 9 Nov 2007 15:31:44 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r38081 - oncourse/branches/sakai_2-4-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov  9 15:57:52 2007\nX-DSPAM-Confidence: 0.9797\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38081\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-11-09 15:31:43 -0500 (Fri, 09 Nov 2007)\nNew Revision: 38081\n\nModified:\noncourse/branches/sakai_2-4-x/\noncourse/branches/sakai_2-4-x/.externals\nLog:\nUpdated externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Fri Nov  9 15:57:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 09 Nov 2007 15:57:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 09 Nov 2007 15:57:51 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby fan.mail.umich.edu () with ESMTP id lA9KvohM006281;\n\tFri, 9 Nov 2007 15:57:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 4734C9C8.224A.11561 ; \n\t 9 Nov 2007 15:57:47 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 75DD6783AA;\n\tFri,  9 Nov 2007 20:48:01 +0000 (GMT)\nMessage-ID: <200711092030.lA9KUp2Z006397@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 43\n          for <source@collab.sakaiproject.org>;\n          Fri, 9 Nov 2007 20:47:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CBCF6214F9\n\tfor <source@collab.sakaiproject.org>; Fri,  9 Nov 2007 20:35:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9KUpEU006399\n\tfor <source@collab.sakaiproject.org>; Fri, 9 Nov 2007 15:30:51 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9KUp2Z006397\n\tfor source@collab.sakaiproject.org; Fri, 9 Nov 2007 15:30:51 -0500\nDate: Fri, 9 Nov 2007 15:30:51 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38080 - gradebook/branches/oncourse_2-4-x/app/ui/src/webapp/js\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov  9 15:57:50 2007\nX-DSPAM-Confidence: 0.8511\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38080\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-09 15:30:50 -0500 (Fri, 09 Nov 2007)\nNew Revision: 38080\n\nModified:\ngradebook/branches/oncourse_2-4-x/app/ui/src/webapp/js/spreadsheetUI.js\nLog:\nsvn merge -c 37820 https://source.sakaiproject.org/svn/gradebook/trunk\nC    app/ui/src/webapp/js/spreadsheetUI.js\nvi app/ui/src/webapp/js/spreadsheetUI.js\nsvn resolved app/ui/src/webapp/js/spreadsheetUI.js\nResolved conflicted state of 'app/ui/src/webapp/js/spreadsheetUI.js'\nin-143-146:oncourse_2-4-x rjlowe$ svn log -r 37820:37820 https://source.sakaiproject.org/svn/gradebook/trunk\n------------------------------------------------------------------------\nr37820 | rjlowe@iupui.edu | 2007-11-06 16:17:54 -0500 (Tue, 06 Nov 2007) | 1 line\n\nSAK-11588 - All Grades page crashes IE when large number of students/gb items viewed at once\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Fri Nov  9 15:41:56 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 09 Nov 2007 15:41:55 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 09 Nov 2007 15:41:55 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby score.mail.umich.edu () with ESMTP id lA9Kftxd016646;\n\tFri, 9 Nov 2007 15:41:55 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 4734C60A.EC27D.32128 ; \n\t 9 Nov 2007 15:41:50 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3DFC675D85;\n\tFri,  9 Nov 2007 20:32:03 +0000 (GMT)\nMessage-ID: <200711092037.lA9KbJUW006445@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 138\n          for <source@collab.sakaiproject.org>;\n          Fri, 9 Nov 2007 20:31:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9B5F1B0C8\n\tfor <source@collab.sakaiproject.org>; Fri,  9 Nov 2007 20:41:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9KbJ1E006447\n\tfor <source@collab.sakaiproject.org>; Fri, 9 Nov 2007 15:37:19 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9KbJUW006445\n\tfor source@collab.sakaiproject.org; Fri, 9 Nov 2007 15:37:19 -0500\nDate: Fri, 9 Nov 2007 15:37:19 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38084 - gradebook/branches/oncourse_2-4-x/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov  9 15:41:55 2007\nX-DSPAM-Confidence: 0.7615\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38084\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-09 15:37:18 -0500 (Fri, 09 Nov 2007)\nNew Revision: 38084\n\nModified:\ngradebook/branches/oncourse_2-4-x/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\nLog:\nsvn merge -c 38079 https://source.sakaiproject.org/svn/gradebook/trunk\nU    app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\nsvn log -r 38079:38079 https://source.sakaiproject.org/svn/gradebook/trunk\n------------------------------------------------------------------------\nr38079 | cwen@iupui.edu | 2007-11-09 14:43:01 -0500 (Fri, 09 Nov 2007) | 5 lines\n\nhttp://128.196.219.68/jira/browse/SAK-12163\nSAK-12163\n=>\nhttps://uisapp2.iu.edu/jira/browse/ONC-233\nexceptions thrown while attempting to rename the gradebook item.\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Fri Nov  9 15:39:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 09 Nov 2007 15:39:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 09 Nov 2007 15:39:30 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby panther.mail.umich.edu () with ESMTP id lA9KdTMg023493;\n\tFri, 9 Nov 2007 15:39:29 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 4734C57A.AAD9A.15932 ; \n\t 9 Nov 2007 15:39:26 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4C00B75D85;\n\tFri,  9 Nov 2007 20:29:39 +0000 (GMT)\nMessage-ID: <200711092034.lA9KYuGu006421@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 821\n          for <source@collab.sakaiproject.org>;\n          Fri, 9 Nov 2007 20:29:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D96F421503\n\tfor <source@collab.sakaiproject.org>; Fri,  9 Nov 2007 20:39:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9KYuGJ006423\n\tfor <source@collab.sakaiproject.org>; Fri, 9 Nov 2007 15:34:56 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9KYuGu006421\n\tfor source@collab.sakaiproject.org; Fri, 9 Nov 2007 15:34:56 -0500\nDate: Fri, 9 Nov 2007 15:34:56 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r38082 - gradebook/branches/oncourse_2-4-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov  9 15:39:30 2007\nX-DSPAM-Confidence: 0.6964\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38082\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-09 15:34:55 -0500 (Fri, 09 Nov 2007)\nNew Revision: 38082\n\nModified:\ngradebook/branches/oncourse_2-4-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/SpreadsheetUploadBean.java\nLog:\nsvn merge -c 37823 https://source.sakaiproject.org/svn/gradebook/trunk\nU    app/ui/src/java/org/sakaiproject/tool/gradebook/ui/SpreadsheetUploadBean.java\nsvn log -r 37823:37823 https://source.sakaiproject.org/svn/gradebook/trunk\n------------------------------------------------------------------------\nr37823 | josrodri@iupui.edu | 2007-11-06 16:40:05 -0500 (Tue, 06 Nov 2007) | 3 lines\n\nSAK-12133: spreadsheet item add, if item already exists but no points possible is in spreadsheet for that item, just keep current value\n\nSAK-9762: added an init() method to do code currently processed in constructor. Kept an empty constructor for easy backing out.\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Nov  9 14:47:46 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 09 Nov 2007 14:47:46 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 09 Nov 2007 14:47:46 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby mission.mail.umich.edu () with ESMTP id lA9Jljan017862;\n\tFri, 9 Nov 2007 14:47:45 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 4734B951.B5D44.15068 ; \n\t 9 Nov 2007 14:47:32 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1550371382;\n\tFri,  9 Nov 2007 19:47:27 +0000 (GMT)\nMessage-ID: <200711091943.lA9Jh2xU006304@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 852\n          for <source@collab.sakaiproject.org>;\n          Fri, 9 Nov 2007 19:47:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AB3C81C80D\n\tfor <source@collab.sakaiproject.org>; Fri,  9 Nov 2007 19:47:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9Jh2Vt006306\n\tfor <source@collab.sakaiproject.org>; Fri, 9 Nov 2007 14:43:02 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9Jh2xU006304\n\tfor source@collab.sakaiproject.org; Fri, 9 Nov 2007 14:43:02 -0500\nDate: Fri, 9 Nov 2007 14:43:02 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r38079 - gradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov  9 14:47:46 2007\nX-DSPAM-Confidence: 0.7608\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38079\n\nAuthor: cwen@iupui.edu\nDate: 2007-11-09 14:43:01 -0500 (Fri, 09 Nov 2007)\nNew Revision: 38079\n\nModified:\ngradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\nLog:\nhttp://128.196.219.68/jira/browse/SAK-12163\nSAK-12163\n=>\nhttps://uisapp2.iu.edu/jira/browse/ONC-233\nexceptions thrown while attempting to rename the gradebook item.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom bkirschn@umich.edu Fri Nov  9 13:19:45 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 09 Nov 2007 13:19:45 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 09 Nov 2007 13:19:45 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby flawless.mail.umich.edu () with ESMTP id lA9IJi9w001531;\n\tFri, 9 Nov 2007 13:19:44 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4734A4B9.4AE09.28570 ; \n\t 9 Nov 2007 13:19:40 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D5C6376716;\n\tFri,  9 Nov 2007 18:13:43 +0000 (GMT)\nMessage-ID: <200711091815.lA9IF7Ew006103@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 637\n          for <source@collab.sakaiproject.org>;\n          Fri, 9 Nov 2007 18:13:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C0D951C7F2\n\tfor <source@collab.sakaiproject.org>; Fri,  9 Nov 2007 18:19:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9IF7ZQ006105\n\tfor <source@collab.sakaiproject.org>; Fri, 9 Nov 2007 13:15:07 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9IF7Ew006103\n\tfor source@collab.sakaiproject.org; Fri, 9 Nov 2007 13:15:07 -0500\nDate: Fri, 9 Nov 2007 13:15:07 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: bkirschn@umich.edu\nSubject: [sakai] svn commit: r38078 - mailtool/branches/sakai_2-5-x/mailtool/src/bundle/org/sakaiproject/tool/mailtool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov  9 13:19:45 2007\nX-DSPAM-Confidence: 0.9848\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38078\n\nAuthor: bkirschn@umich.edu\nDate: 2007-11-09 13:15:05 -0500 (Fri, 09 Nov 2007)\nNew Revision: 38078\n\nModified:\nmailtool/branches/sakai_2-5-x/mailtool/src/bundle/org/sakaiproject/tool/mailtool/Messages_ko.properties\nLog:\nSAK-12159 merge to 2.5.x\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gsilver@umich.edu Fri Nov  9 13:09:31 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 09 Nov 2007 13:09:31 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 09 Nov 2007 13:09:31 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby flawless.mail.umich.edu () with ESMTP id lA9I9Qbx027504;\n\tFri, 9 Nov 2007 13:09:26 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 4734A24E.846.23204 ; \n\t 9 Nov 2007 13:09:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4F53278071;\n\tFri,  9 Nov 2007 18:04:18 +0000 (GMT)\nMessage-ID: <200711091804.lA9I4aMT006072@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 679\n          for <source@collab.sakaiproject.org>;\n          Fri, 9 Nov 2007 18:04:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D0AA82120E\n\tfor <source@collab.sakaiproject.org>; Fri,  9 Nov 2007 18:08:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9I4a9k006074\n\tfor <source@collab.sakaiproject.org>; Fri, 9 Nov 2007 13:04:36 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9I4aMT006072\n\tfor source@collab.sakaiproject.org; Fri, 9 Nov 2007 13:04:36 -0500\nDate: Fri, 9 Nov 2007 13:04:36 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gsilver@umich.edu\nSubject: [sakai] svn commit: r38077 - reference/trunk/library/src/webapp/skin/default\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov  9 13:09:31 2007\nX-DSPAM-Confidence: 0.9819\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38077\n\nAuthor: gsilver@umich.edu\nDate: 2007-11-09 13:04:35 -0500 (Fri, 09 Nov 2007)\nNew Revision: 38077\n\nModified:\nreference/trunk/library/src/webapp/skin/default/portal.css\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-12161\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom john.ellis@rsmart.com Fri Nov  9 11:23:15 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 09 Nov 2007 11:23:15 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 09 Nov 2007 11:23:15 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby brazil.mail.umich.edu () with ESMTP id lA9GNF3u020361;\n\tFri, 9 Nov 2007 11:23:15 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 47348968.69BA4.2087 ; \n\t 9 Nov 2007 11:23:07 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id AFB6C78014;\n\tFri,  9 Nov 2007 16:23:03 +0000 (GMT)\nMessage-ID: <200711091618.lA9GIeYb005890@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 551\n          for <source@collab.sakaiproject.org>;\n          Fri, 9 Nov 2007 16:22:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 670731CBD5\n\tfor <source@collab.sakaiproject.org>; Fri,  9 Nov 2007 16:22:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9GIeHQ005892\n\tfor <source@collab.sakaiproject.org>; Fri, 9 Nov 2007 11:18:40 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9GIeYb005890\n\tfor source@collab.sakaiproject.org; Fri, 9 Nov 2007 11:18:40 -0500\nDate: Fri, 9 Nov 2007 11:18:40 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to john.ellis@rsmart.com using -f\nTo: source@collab.sakaiproject.org\nFrom: john.ellis@rsmart.com\nSubject: [sakai] svn commit: r38076 - osp/trunk/presentation/api-impl/src/resources/org/theospi/portfolio/presentation\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov  9 11:23:15 2007\nX-DSPAM-Confidence: 0.8433\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38076\n\nAuthor: john.ellis@rsmart.com\nDate: 2007-11-09 11:18:33 -0500 (Fri, 09 Nov 2007)\nNew Revision: 38076\n\nModified:\nosp/trunk/presentation/api-impl/src/resources/org/theospi/portfolio/presentation/freeform_template.xsl\nLog:\nSAK-11979\nadded code to render output as html\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Fri Nov  9 11:23:04 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 09 Nov 2007 11:23:04 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 09 Nov 2007 11:23:04 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby casino.mail.umich.edu () with ESMTP id lA9GN36o008819;\n\tFri, 9 Nov 2007 11:23:03 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 47348959.E105A.1409 ; \n\t 9 Nov 2007 11:22:52 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7816878003;\n\tFri,  9 Nov 2007 16:22:43 +0000 (GMT)\nMessage-ID: <200711091618.lA9GIDkb005867@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 59\n          for <source@collab.sakaiproject.org>;\n          Fri, 9 Nov 2007 16:22:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D99761CC18\n\tfor <source@collab.sakaiproject.org>; Fri,  9 Nov 2007 16:22:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9GIDIf005869\n\tfor <source@collab.sakaiproject.org>; Fri, 9 Nov 2007 11:18:13 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9GIDkb005867\n\tfor source@collab.sakaiproject.org; Fri, 9 Nov 2007 11:18:13 -0500\nDate: Fri, 9 Nov 2007 11:18:13 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38075 - in content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test: . util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov  9 11:23:04 2007\nX-DSPAM-Confidence: 0.8471\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38075\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-09 11:18:06 -0500 (Fri, 09 Nov 2007)\nNew Revision: 38075\n\nAdded:\ncontent/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/util/\ncontent/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/util/ConcurrentList.java\nModified:\ncontent/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java\nLog:\nSAK-12105: Added in testing for reads (partial) and a concurrent list\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom bkirschn@umich.edu Fri Nov  9 11:01:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 09 Nov 2007 11:01:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 09 Nov 2007 11:01:25 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby casino.mail.umich.edu () with ESMTP id lA9G1ODL028539;\n\tFri, 9 Nov 2007 11:01:24 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4734844E.8ACD7.6208 ; \n\t 9 Nov 2007 11:01:21 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CEC7377FD7;\n\tFri,  9 Nov 2007 16:01:04 +0000 (GMT)\nMessage-ID: <200711091556.lA9FumTU005814@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 824\n          for <source@collab.sakaiproject.org>;\n          Fri, 9 Nov 2007 16:00:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C3EEA1EF36\n\tfor <source@collab.sakaiproject.org>; Fri,  9 Nov 2007 16:00:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9FumFY005816\n\tfor <source@collab.sakaiproject.org>; Fri, 9 Nov 2007 10:56:48 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9FumTU005814\n\tfor source@collab.sakaiproject.org; Fri, 9 Nov 2007 10:56:48 -0500\nDate: Fri, 9 Nov 2007 10:56:48 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: bkirschn@umich.edu\nSubject: [sakai] svn commit: r38074 - mailtool/trunk/mailtool/src/bundle/org/sakaiproject/tool/mailtool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov  9 11:01:25 2007\nX-DSPAM-Confidence: 0.9829\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38074\n\nAuthor: bkirschn@umich.edu\nDate: 2007-11-09 10:56:46 -0500 (Fri, 09 Nov 2007)\nNew Revision: 38074\n\nModified:\nmailtool/trunk/mailtool/src/bundle/org/sakaiproject/tool/mailtool/Messages_ko.properties\nLog:\nSAK-12159 update Korean translation\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gopal.ramasammycook@gmail.com Fri Nov  9 10:36:57 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 09 Nov 2007 10:36:57 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 09 Nov 2007 10:36:57 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby sleepers.mail.umich.edu () with ESMTP id lA9Fau2I001930;\n\tFri, 9 Nov 2007 10:36:56 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 47347E91.E3536.21288 ; \n\t 9 Nov 2007 10:36:53 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 197D7763DC;\n\tFri,  9 Nov 2007 15:34:54 +0000 (GMT)\nMessage-ID: <200711091532.lA9FWM8o005778@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 24\n          for <source@collab.sakaiproject.org>;\n          Fri, 9 Nov 2007 15:34:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 007191E5F2\n\tfor <source@collab.sakaiproject.org>; Fri,  9 Nov 2007 15:36:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9FWM2M005780\n\tfor <source@collab.sakaiproject.org>; Fri, 9 Nov 2007 10:32:22 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9FWM8o005778\n\tfor source@collab.sakaiproject.org; Fri, 9 Nov 2007 10:32:22 -0500\nDate: Fri, 9 Nov 2007 10:32:22 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f\nTo: source@collab.sakaiproject.org\nFrom: gopal.ramasammycook@gmail.com\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov  9 10:36:57 2007\nX-DSPAM-Confidence: 0.9759\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38072\n\nAuthor: gopal.ramasammycook@gmail.com\nDate: 2007-11-09 10:31:08 -0500 (Fri, 09 Nov 2007)\nNew Revision: 38072\n\nModified:\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/AssessmentSettingsBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/PublishedAssessmentSettingsBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SaveAssessmentSettings.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AuthzQueriesFacadeAPI.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/integrated/AuthzQueriesFacade.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/standalone/AuthzQueriesFacade.java\nLog:\nSAK-12065 AuthzQueriesFacade.isUserAuthorizedToTakeAssessmentReleasedToGroups(String assessmentId)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Fri Nov  9 09:30:58 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 09 Nov 2007 09:30:58 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 09 Nov 2007 09:30:58 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby mission.mail.umich.edu () with ESMTP id lA9EUftX027811;\n\tFri, 9 Nov 2007 09:30:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 47346F0B.4D600.15656 ; \n\t 9 Nov 2007 09:30:38 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0650A77C69;\n\tFri,  9 Nov 2007 14:30:32 +0000 (GMT)\nMessage-ID: <200711091426.lA9EQ5fl005694@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 973\n          for <source@collab.sakaiproject.org>;\n          Fri, 9 Nov 2007 14:30:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CD89921322\n\tfor <source@collab.sakaiproject.org>; Fri,  9 Nov 2007 14:30:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9EQ5IP005696\n\tfor <source@collab.sakaiproject.org>; Fri, 9 Nov 2007 09:26:05 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9EQ5fl005694\n\tfor source@collab.sakaiproject.org; Fri, 9 Nov 2007 09:26:05 -0500\nDate: Fri, 9 Nov 2007 09:26:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38068 - announcement/trunk/announcement-tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov  9 09:30:58 2007\nX-DSPAM-Confidence: 0.9791\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38068\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-09 09:26:04 -0500 (Fri, 09 Nov 2007)\nNew Revision: 38068\n\nModified:\nannouncement/trunk/announcement-tool/.classpath\nLog:\nFixing eclipse classpath\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Fri Nov  9 09:27:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 09 Nov 2007 09:27:25 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 09 Nov 2007 09:27:25 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby awakenings.mail.umich.edu () with ESMTP id lA9EROg9012678;\n\tFri, 9 Nov 2007 09:27:24 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 47346E38.DF6A0.6750 ; \n\t 9 Nov 2007 09:27:07 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A866A77DB8;\n\tFri,  9 Nov 2007 14:27:01 +0000 (GMT)\nMessage-ID: <200711091422.lA9EMcKa005678@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 492\n          for <source@collab.sakaiproject.org>;\n          Fri, 9 Nov 2007 14:26:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DCF7121322\n\tfor <source@collab.sakaiproject.org>; Fri,  9 Nov 2007 14:26:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9EMcnD005680\n\tfor <source@collab.sakaiproject.org>; Fri, 9 Nov 2007 09:22:38 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9EMcKa005678\n\tfor source@collab.sakaiproject.org; Fri, 9 Nov 2007 09:22:38 -0500\nDate: Fri, 9 Nov 2007 09:22:38 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38067 - site-manage/trunk/pageorder\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov  9 09:27:25 2007\nX-DSPAM-Confidence: 0.9787\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38067\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-09 09:22:37 -0500 (Fri, 09 Nov 2007)\nNew Revision: 38067\n\nModified:\nsite-manage/trunk/pageorder/.classpath\nLog:\nFixing eclipse classpath\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Fri Nov  9 09:27:03 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 09 Nov 2007 09:27:03 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 09 Nov 2007 09:27:03 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby casino.mail.umich.edu () with ESMTP id lA9ER2KI005446;\n\tFri, 9 Nov 2007 09:27:02 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 47346E30.A2134.7903 ; \n\t 9 Nov 2007 09:26:59 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 59F3777DBA;\n\tFri,  9 Nov 2007 14:26:50 +0000 (GMT)\nMessage-ID: <200711091422.lA9EMQig005666@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 241\n          for <source@collab.sakaiproject.org>;\n          Fri, 9 Nov 2007 14:26:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A3E8A21322\n\tfor <source@collab.sakaiproject.org>; Fri,  9 Nov 2007 14:26:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9EMQcX005668\n\tfor <source@collab.sakaiproject.org>; Fri, 9 Nov 2007 09:22:26 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9EMQig005666\n\tfor source@collab.sakaiproject.org; Fri, 9 Nov 2007 09:22:26 -0500\nDate: Fri, 9 Nov 2007 09:22:26 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38066 - blog/trunk\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov  9 09:27:03 2007\nX-DSPAM-Confidence: 0.9810\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38066\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-09 09:22:24 -0500 (Fri, 09 Nov 2007)\nNew Revision: 38066\n\nModified:\nblog/trunk/.classpath\nLog:\nFixing eclipse classpath\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Fri Nov  9 09:01:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 09 Nov 2007 09:01:43 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 09 Nov 2007 09:01:43 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby flawless.mail.umich.edu () with ESMTP id lA9E1gaD012573;\n\tFri, 9 Nov 2007 09:01:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 4734683B.52C08.20990 ; \n\t 9 Nov 2007 09:01:39 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 20BF077D02;\n\tFri,  9 Nov 2007 14:01:04 +0000 (GMT)\nMessage-ID: <200711091357.lA9Dv51r005516@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 480\n          for <source@collab.sakaiproject.org>;\n          Fri, 9 Nov 2007 14:00:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 46AE0212FA\n\tfor <source@collab.sakaiproject.org>; Fri,  9 Nov 2007 14:01:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9Dv5oj005518\n\tfor <source@collab.sakaiproject.org>; Fri, 9 Nov 2007 08:57:06 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9Dv51r005516\n\tfor source@collab.sakaiproject.org; Fri, 9 Nov 2007 08:57:05 -0500\nDate: Fri, 9 Nov 2007 08:57:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r38065 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov  9 09:01:43 2007\nX-DSPAM-Confidence: 0.9861\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38065\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-09 08:57:03 -0500 (Fri, 09 Nov 2007)\nNew Revision: 38065\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties\nLog:\nCTools: updated CT 294 patch for 2.4.xP\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Fri Nov  9 09:01:07 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 09 Nov 2007 09:01:07 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 09 Nov 2007 09:01:07 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby score.mail.umich.edu () with ESMTP id lA9E165i027033;\n\tFri, 9 Nov 2007 09:01:06 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 47346812.4D9C5.21466 ; \n\t 9 Nov 2007 09:00:58 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4B75775FE4;\n\tFri,  9 Nov 2007 14:00:42 +0000 (GMT)\nMessage-ID: <200711091356.lA9DuKWR005504@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 990\n          for <source@collab.sakaiproject.org>;\n          Fri, 9 Nov 2007 14:00:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C7DC121336\n\tfor <source@collab.sakaiproject.org>; Fri,  9 Nov 2007 14:00:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9DuKlA005506\n\tfor <source@collab.sakaiproject.org>; Fri, 9 Nov 2007 08:56:20 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9DuKWR005504\n\tfor source@collab.sakaiproject.org; Fri, 9 Nov 2007 08:56:20 -0500\nDate: Fri, 9 Nov 2007 08:56:20 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r38064 - ctools/trunk/builds/ctools_2-4/patches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov  9 09:01:07 2007\nX-DSPAM-Confidence: 0.8478\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38064\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-09 08:56:17 -0500 (Fri, 09 Nov 2007)\nNew Revision: 38064\n\nModified:\nctools/trunk/builds/ctools_2-4/patches/CT-294.patch\nLog:\nCTools: update CT 294 patch to not change synoptic announcement.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Fri Nov  9 08:47:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 09 Nov 2007 08:47:13 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 09 Nov 2007 08:47:13 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby faithful.mail.umich.edu () with ESMTP id lA9DlD3V018238;\n\tFri, 9 Nov 2007 08:47:13 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 473464D8.E62F1.19321 ; \n\t 9 Nov 2007 08:47:10 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DA14277D03;\n\tFri,  9 Nov 2007 13:44:54 +0000 (GMT)\nMessage-ID: <200711091341.lA9DfiqF005484@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 545\n          for <source@collab.sakaiproject.org>;\n          Fri, 9 Nov 2007 13:44:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B16F921336\n\tfor <source@collab.sakaiproject.org>; Fri,  9 Nov 2007 13:45:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9DfikV005486\n\tfor <source@collab.sakaiproject.org>; Fri, 9 Nov 2007 08:41:44 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9DfiqF005484\n\tfor source@collab.sakaiproject.org; Fri, 9 Nov 2007 08:41:44 -0500\nDate: Fri, 9 Nov 2007 08:41:44 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r38063 - oncourse/branches/sakai_2-4-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov  9 08:47:13 2007\nX-DSPAM-Confidence: 0.9803\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38063\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-11-09 08:41:43 -0500 (Fri, 09 Nov 2007)\nNew Revision: 38063\n\nModified:\noncourse/branches/sakai_2-4-x/\noncourse/branches/sakai_2-4-x/.externals\nLog:\nUpdated externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Fri Nov  9 07:22:24 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 09 Nov 2007 07:22:24 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 09 Nov 2007 07:22:24 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby sleepers.mail.umich.edu () with ESMTP id lA9CMNUB032384;\n\tFri, 9 Nov 2007 07:22:23 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 473450F9.AE9FE.14568 ; \n\t 9 Nov 2007 07:22:20 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D85647624D;\n\tFri,  9 Nov 2007 12:22:11 +0000 (GMT)\nMessage-ID: <200711091217.lA9CHrb9005418@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 315\n          for <source@collab.sakaiproject.org>;\n          Fri, 9 Nov 2007 12:21:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 93BFC21309\n\tfor <source@collab.sakaiproject.org>; Fri,  9 Nov 2007 12:21:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9CHrrC005420\n\tfor <source@collab.sakaiproject.org>; Fri, 9 Nov 2007 07:17:53 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9CHrb9005418\n\tfor source@collab.sakaiproject.org; Fri, 9 Nov 2007 07:17:53 -0500\nDate: Fri, 9 Nov 2007 07:17:53 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38062 - content/branches/SAK-12105\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov  9 07:22:24 2007\nX-DSPAM-Confidence: 0.9819\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38062\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-09 07:17:49 -0500 (Fri, 09 Nov 2007)\nNew Revision: 38062\n\nModified:\ncontent/branches/SAK-12105/pom.xml\nLog:\nSAK-12105: got rid of the default modules and placed everything in profiles\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Fri Nov  9 06:53:59 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 09 Nov 2007 06:53:59 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 09 Nov 2007 06:53:59 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby godsend.mail.umich.edu () with ESMTP id lA9BrwNZ012133;\n\tFri, 9 Nov 2007 06:53:58 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 47344A50.B36BD.25464 ; \n\t 9 Nov 2007 06:53:55 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 71C7F77A2C;\n\tFri,  9 Nov 2007 11:53:49 +0000 (GMT)\nMessage-ID: <200711091149.lA9BnXY8005365@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 791\n          for <source@collab.sakaiproject.org>;\n          Fri, 9 Nov 2007 11:53:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4EEE820E1D\n\tfor <source@collab.sakaiproject.org>; Fri,  9 Nov 2007 11:53:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9BnXco005367\n\tfor <source@collab.sakaiproject.org>; Fri, 9 Nov 2007 06:49:33 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9BnXY8005365\n\tfor source@collab.sakaiproject.org; Fri, 9 Nov 2007 06:49:33 -0500\nDate: Fri, 9 Nov 2007 06:49:33 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38061 - content/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov  9 06:53:59 2007\nX-DSPAM-Confidence: 0.7552\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38061\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-11-09 06:49:25 -0500 (Fri, 09 Nov 2007)\nNew Revision: 38061\n\nModified:\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRContentService.java\ncontent/branches/SAK-12105/content-impl-jcr/impl/src/java/org/sakaiproject/content/impl/JCRStorageUser.java\nLog:\nSAK-12105 Implemented getCollectionSize for JCR.  Probably not terribly efficient need to write a JCR XPATH query for it.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Fri Nov  9 06:32:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 09 Nov 2007 06:32:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 09 Nov 2007 06:32:17 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby flawless.mail.umich.edu () with ESMTP id lA9BWGMa025835;\n\tFri, 9 Nov 2007 06:32:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 4734453A.8AFC9.25512 ; \n\t 9 Nov 2007 06:32:13 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 33730779E1;\n\tFri,  9 Nov 2007 11:32:05 +0000 (GMT)\nMessage-ID: <200711091127.lA9BRhgT005351@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 730\n          for <source@collab.sakaiproject.org>;\n          Fri, 9 Nov 2007 11:31:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9818D212E7\n\tfor <source@collab.sakaiproject.org>; Fri,  9 Nov 2007 11:31:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA9BRhaH005353\n\tfor <source@collab.sakaiproject.org>; Fri, 9 Nov 2007 06:27:43 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA9BRhgT005351\n\tfor source@collab.sakaiproject.org; Fri, 9 Nov 2007 06:27:43 -0500\nDate: Fri, 9 Nov 2007 06:27:43 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38060 - content/branches/SAK-12105/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov  9 06:32:17 2007\nX-DSPAM-Confidence: 0.8443\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38060\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-09 06:27:35 -0500 (Fri, 09 Nov 2007)\nNew Revision: 38060\n\nAdded:\ncontent/branches/SAK-12105/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/ProfileTestSerializer.java\nRemoved:\ncontent/branches/SAK-12105/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/ProfileSerializerTest.java\nModified:\ncontent/branches/SAK-12105/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/AllTests.java\nLog:\nSAK-12105: Updated naming of the tests\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Fri Nov  9 00:10:41 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 09 Nov 2007 00:10:41 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 09 Nov 2007 00:10:41 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby mission.mail.umich.edu () with ESMTP id lA95AeGG030201;\n\tFri, 9 Nov 2007 00:10:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 4733EBCB.C0F9A.20994 ; \n\t 9 Nov 2007 00:10:38 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A834D76E81;\n\tFri,  9 Nov 2007 05:10:34 +0000 (GMT)\nMessage-ID: <200711090506.lA956FEX004573@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 73\n          for <source@collab.sakaiproject.org>;\n          Fri, 9 Nov 2007 05:10:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EC8EA1FBF4\n\tfor <source@collab.sakaiproject.org>; Fri,  9 Nov 2007 05:10:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA956Fmu004575\n\tfor <source@collab.sakaiproject.org>; Fri, 9 Nov 2007 00:06:15 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA956FEX004573\n\tfor source@collab.sakaiproject.org; Fri, 9 Nov 2007 00:06:15 -0500\nDate: Fri, 9 Nov 2007 00:06:15 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38059 - content/trunk/content-impl/impl/src/java/org/sakaiproject/content/types\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov  9 00:10:41 2007\nX-DSPAM-Confidence: 0.8472\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38059\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-09 00:06:12 -0500 (Fri, 09 Nov 2007)\nNew Revision: 38059\n\nModified:\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/types/FolderType.java\nLog:\nSAK-11790\nRemove member-count as a condition of removing a folder\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ostermmg@whitman.edu Thu Nov  8 23:52:18 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 08 Nov 2007 23:52:18 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 08 Nov 2007 23:52:18 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby fan.mail.umich.edu () with ESMTP id lA94qI1b004576;\n\tThu, 8 Nov 2007 23:52:18 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 4733E77C.DA2CE.14360 ; \n\t 8 Nov 2007 23:52:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7AA057757F;\n\tFri,  9 Nov 2007 04:52:19 +0000 (GMT)\nMessage-ID: <200711090447.lA94lidO004553@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 335\n          for <source@collab.sakaiproject.org>;\n          Fri, 9 Nov 2007 04:51:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8BE0021272\n\tfor <source@collab.sakaiproject.org>; Fri,  9 Nov 2007 04:51:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA94liOq004555\n\tfor <source@collab.sakaiproject.org>; Thu, 8 Nov 2007 23:47:44 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA94lidO004553\n\tfor source@collab.sakaiproject.org; Thu, 8 Nov 2007 23:47:44 -0500\nDate: Thu, 8 Nov 2007 23:47:44 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ostermmg@whitman.edu\nSubject: [sakai] svn commit: r38058 - content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  8 23:52:18 2007\nX-DSPAM-Confidence: 0.8443\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38058\n\nAuthor: ostermmg@whitman.edu\nDate: 2007-11-08 23:47:37 -0500 (Thu, 08 Nov 2007)\nNew Revision: 38058\n\nModified:\ncontent/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\nLog:\nSAK-12126\nFailure to remove Collection and swallowed exception yields warning\n\nsvn merge -c38056 https://source.sakaiproject.org/svn/content/trunk/ .\nU    content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ostermmg@whitman.edu Thu Nov  8 23:43:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 08 Nov 2007 23:43:37 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 08 Nov 2007 23:43:37 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby fan.mail.umich.edu () with ESMTP id lA94hbNB002136;\n\tThu, 8 Nov 2007 23:43:37 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 4733E571.6B5F3.12570 ; \n\t 8 Nov 2007 23:43:32 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 255CE772A7;\n\tFri,  9 Nov 2007 04:43:22 +0000 (GMT)\nMessage-ID: <200711090439.lA94d7w6004529@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 947\n          for <source@collab.sakaiproject.org>;\n          Fri, 9 Nov 2007 04:42:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 52B9221268\n\tfor <source@collab.sakaiproject.org>; Fri,  9 Nov 2007 04:43:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA94d7Uk004531\n\tfor <source@collab.sakaiproject.org>; Thu, 8 Nov 2007 23:39:07 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA94d7w6004529\n\tfor source@collab.sakaiproject.org; Thu, 8 Nov 2007 23:39:07 -0500\nDate: Thu, 8 Nov 2007 23:39:07 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ostermmg@whitman.edu\nSubject: [sakai] svn commit: r38057 - content/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  8 23:43:37 2007\nX-DSPAM-Confidence: 0.8476\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38057\n\nAuthor: ostermmg@whitman.edu\nDate: 2007-11-08 23:39:04 -0500 (Thu, 08 Nov 2007)\nNew Revision: 38057\n\nModified:\ncontent/branches/sakai_2-4-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\nLog:\nSAK-12126\nFailure to remove Collection and swallowed exception yields warning\n\nsvn merge -c38056 https://source.sakaiproject.org/svn/content/trunk/ .\nU    content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Thu Nov  8 23:28:35 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 08 Nov 2007 23:28:35 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 08 Nov 2007 23:28:35 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby mission.mail.umich.edu () with ESMTP id lA94SYIE016404;\n\tThu, 8 Nov 2007 23:28:34 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 4733E1ED.51862.23315 ; \n\t 8 Nov 2007 23:28:32 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id AD1E475C04;\n\tFri,  9 Nov 2007 04:28:28 +0000 (GMT)\nMessage-ID: <200711090423.lA94NvhU004506@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 367\n          for <source@collab.sakaiproject.org>;\n          Fri, 9 Nov 2007 04:28:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 87C7221270\n\tfor <source@collab.sakaiproject.org>; Fri,  9 Nov 2007 04:27:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA94NvH1004508\n\tfor <source@collab.sakaiproject.org>; Thu, 8 Nov 2007 23:23:57 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA94NvhU004506\n\tfor source@collab.sakaiproject.org; Thu, 8 Nov 2007 23:23:57 -0500\nDate: Thu, 8 Nov 2007 23:23:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r38056 - content/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  8 23:28:35 2007\nX-DSPAM-Confidence: 0.9859\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38056\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-08 23:23:54 -0500 (Thu, 08 Nov 2007)\nNew Revision: 38056\n\nModified:\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\nLog:\nSAK-12126\nClear thread-local cache when removing resources.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Thu Nov  8 14:25:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 08 Nov 2007 14:25:50 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 08 Nov 2007 14:25:50 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby chaos.mail.umich.edu () with ESMTP id lA8JPn9X018984;\n\tThu, 8 Nov 2007 14:25:49 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 473362B5.9C610.6087 ; \n\t 8 Nov 2007 14:25:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3B86176803;\n\tThu,  8 Nov 2007 19:25:40 +0000 (GMT)\nMessage-ID: <200711081920.lA8JKXBu003766@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 984\n          for <source@collab.sakaiproject.org>;\n          Thu, 8 Nov 2007 19:25:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7CF7E1CBE0\n\tfor <source@collab.sakaiproject.org>; Thu,  8 Nov 2007 19:24:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8JKXWJ003768\n\tfor <source@collab.sakaiproject.org>; Thu, 8 Nov 2007 14:20:33 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8JKXBu003766\n\tfor source@collab.sakaiproject.org; Thu, 8 Nov 2007 14:20:33 -0500\nDate: Thu, 8 Nov 2007 14:20:33 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38055 - in content/branches/SAK-12105/content-test/test/src: java/org/sakaiproject/content/test resources\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  8 14:25:50 2007\nX-DSPAM-Confidence: 0.9852\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38055\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-08 14:20:25 -0500 (Thu, 08 Nov 2007)\nNew Revision: 38055\n\nModified:\ncontent/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java\ncontent/branches/SAK-12105/content-test/test/src/resources/testBeans.xml\nLog:\nSAK-12105: Updates to the testbeans timing and the load test\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Thu Nov  8 14:09:15 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 08 Nov 2007 14:09:15 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 08 Nov 2007 14:09:15 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby brazil.mail.umich.edu () with ESMTP id lA8J9EHv020496;\n\tThu, 8 Nov 2007 14:09:14 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 47335ED3.7BDAE.1708 ; \n\t 8 Nov 2007 14:09:11 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3F05776EBD;\n\tThu,  8 Nov 2007 19:09:04 +0000 (GMT)\nMessage-ID: <200711081904.lA8J4mBp003703@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 525\n          for <source@collab.sakaiproject.org>;\n          Thu, 8 Nov 2007 19:08:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0A82D21036\n\tfor <source@collab.sakaiproject.org>; Thu,  8 Nov 2007 19:08:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8J4mkZ003705\n\tfor <source@collab.sakaiproject.org>; Thu, 8 Nov 2007 14:04:48 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8J4mBp003703\n\tfor source@collab.sakaiproject.org; Thu, 8 Nov 2007 14:04:48 -0500\nDate: Thu, 8 Nov 2007 14:04:48 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38054 - content/branches/SAK-12105\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  8 14:09:15 2007\nX-DSPAM-Confidence: 0.9811\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38054\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-08 14:04:44 -0500 (Thu, 08 Nov 2007)\nNew Revision: 38054\n\nModified:\ncontent/branches/SAK-12105/pom.xml\nLog:\nSAK-12105: added profiles options to the base pom\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Thu Nov  8 13:19:06 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 08 Nov 2007 13:19:06 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 08 Nov 2007 13:19:06 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby panther.mail.umich.edu () with ESMTP id lA8IJ5OJ029317;\n\tThu, 8 Nov 2007 13:19:05 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 4733530B.578CA.15321 ; \n\t 8 Nov 2007 13:18:55 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7DD0476D39;\n\tThu,  8 Nov 2007 18:14:22 +0000 (GMT)\nMessage-ID: <200711081757.lA8HvWcQ003638@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 759\n          for <source@collab.sakaiproject.org>;\n          Thu, 8 Nov 2007 18:01:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 270FC21043\n\tfor <source@collab.sakaiproject.org>; Thu,  8 Nov 2007 18:01:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8HvW61003640\n\tfor <source@collab.sakaiproject.org>; Thu, 8 Nov 2007 12:57:32 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8HvWcQ003638\n\tfor source@collab.sakaiproject.org; Thu, 8 Nov 2007 12:57:32 -0500\nDate: Thu, 8 Nov 2007 12:57:32 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r38053 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  8 13:19:06 2007\nX-DSPAM-Confidence: 0.8479\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38053\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-08 12:57:29 -0500 (Thu, 08 Nov 2007)\nNew Revision: 38053\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties\nLog:\nCTools: update CT 314 for build.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Thu Nov  8 12:43:33 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 08 Nov 2007 12:43:33 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 08 Nov 2007 12:43:33 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby awakenings.mail.umich.edu () with ESMTP id lA8HhW9C000657;\n\tThu, 8 Nov 2007 12:43:32 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 47334AB8.1039A.9976 ; \n\t 8 Nov 2007 12:43:24 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C098976DFC;\n\tThu,  8 Nov 2007 17:43:20 +0000 (GMT)\nMessage-ID: <200711081739.lA8Hd3A7003626@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 149\n          for <source@collab.sakaiproject.org>;\n          Thu, 8 Nov 2007 17:43:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D29F41F2BB\n\tfor <source@collab.sakaiproject.org>; Thu,  8 Nov 2007 17:43:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8Hd3po003628\n\tfor <source@collab.sakaiproject.org>; Thu, 8 Nov 2007 12:39:03 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8Hd3A7003626\n\tfor source@collab.sakaiproject.org; Thu, 8 Nov 2007 12:39:03 -0500\nDate: Thu, 8 Nov 2007 12:39:03 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r38052 - ctools/trunk/ctools-reference/config\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  8 12:43:33 2007\nX-DSPAM-Confidence: 0.9870\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38052\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-08 12:38:58 -0500 (Thu, 08 Nov 2007)\nNew Revision: 38052\n\nModified:\nctools/trunk/ctools-reference/config/09PrepopulatePages.properties\nLog:\nCTools: CT 314 update typo for default wiki pages.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Thu Nov  8 12:25:21 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 08 Nov 2007 12:25:21 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 08 Nov 2007 12:25:21 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby jacknife.mail.umich.edu () with ESMTP id lA8HPKX7026998;\n\tThu, 8 Nov 2007 12:25:20 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 47334676.EB847.31556 ; \n\t 8 Nov 2007 12:25:17 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 38A3576E05;\n\tThu,  8 Nov 2007 17:25:12 +0000 (GMT)\nMessage-ID: <200711081720.lA8HKok7003565@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 311\n          for <source@collab.sakaiproject.org>;\n          Thu, 8 Nov 2007 17:24:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B3A331F212\n\tfor <source@collab.sakaiproject.org>; Thu,  8 Nov 2007 17:24:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8HKpMC003567\n\tfor <source@collab.sakaiproject.org>; Thu, 8 Nov 2007 12:20:51 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8HKok7003565\n\tfor source@collab.sakaiproject.org; Thu, 8 Nov 2007 12:20:50 -0500\nDate: Thu, 8 Nov 2007 12:20:50 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r38051 - ctools/branches/ctools_2-4/ctools-reference/config\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  8 12:25:21 2007\nX-DSPAM-Confidence: 0.9854\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38051\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-08 12:20:45 -0500 (Thu, 08 Nov 2007)\nNew Revision: 38051\n\nModified:\nctools/branches/ctools_2-4/ctools-reference/config/09PrepopulatePages.properties\nLog:\nCTools: CT-314, fix extra blank line in default wiki pages specification.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Thu Nov  8 11:21:22 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 08 Nov 2007 11:21:22 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 08 Nov 2007 11:21:22 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby brazil.mail.umich.edu () with ESMTP id lA8GLLGZ002684;\n\tThu, 8 Nov 2007 11:21:21 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4733377B.E893F.3822 ; \n\t 8 Nov 2007 11:21:18 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E6CFE76C4F;\n\tThu,  8 Nov 2007 16:21:15 +0000 (GMT)\nMessage-ID: <200711081617.lA8GH36u003504@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 746\n          for <source@collab.sakaiproject.org>;\n          Thu, 8 Nov 2007 16:21:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 300BB1F22A\n\tfor <source@collab.sakaiproject.org>; Thu,  8 Nov 2007 16:21:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8GH3Ep003506\n\tfor <source@collab.sakaiproject.org>; Thu, 8 Nov 2007 11:17:03 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8GH36u003504\n\tfor source@collab.sakaiproject.org; Thu, 8 Nov 2007 11:17:03 -0500\nDate: Thu, 8 Nov 2007 11:17:03 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r38050 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  8 11:21:22 2007\nX-DSPAM-Confidence: 0.9854\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38050\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-08 11:17:01 -0500 (Thu, 08 Nov 2007)\nNew Revision: 38050\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties\nLog:\nCTools: update CT 294 patch yet again\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Thu Nov  8 11:20:06 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 08 Nov 2007 11:20:05 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 08 Nov 2007 11:20:05 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby sleepers.mail.umich.edu () with ESMTP id lA8GK4Z8028757;\n\tThu, 8 Nov 2007 11:20:04 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 4733372E.B3E13.26983 ; \n\t 8 Nov 2007 11:20:01 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 941AF76C54;\n\tThu,  8 Nov 2007 16:19:57 +0000 (GMT)\nMessage-ID: <200711081615.lA8GFgoU003492@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 189\n          for <source@collab.sakaiproject.org>;\n          Thu, 8 Nov 2007 16:19:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6E4E71F06E\n\tfor <source@collab.sakaiproject.org>; Thu,  8 Nov 2007 16:19:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8GFgkG003494\n\tfor <source@collab.sakaiproject.org>; Thu, 8 Nov 2007 11:15:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8GFgoU003492\n\tfor source@collab.sakaiproject.org; Thu, 8 Nov 2007 11:15:42 -0500\nDate: Thu, 8 Nov 2007 11:15:42 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r38049 - ctools/trunk/builds/ctools_2-4/patches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  8 11:20:05 2007\nX-DSPAM-Confidence: 0.9839\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38049\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-08 11:15:40 -0500 (Thu, 08 Nov 2007)\nNew Revision: 38049\n\nModified:\nctools/trunk/builds/ctools_2-4/patches/CT-294.patch\nLog:\nCTools: CT 294 patch yet again.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Thu Nov  8 11:05:09 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 08 Nov 2007 11:05:09 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 08 Nov 2007 11:05:09 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby sleepers.mail.umich.edu () with ESMTP id lA8G58Xc017622;\n\tThu, 8 Nov 2007 11:05:08 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 473333AE.5F8E3.28435 ; \n\t 8 Nov 2007 11:05:05 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 928B274FD8;\n\tThu,  8 Nov 2007 16:04:59 +0000 (GMT)\nMessage-ID: <200711081600.lA8G0fmR003454@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 872\n          for <source@collab.sakaiproject.org>;\n          Thu, 8 Nov 2007 16:04:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DDB991F06E\n\tfor <source@collab.sakaiproject.org>; Thu,  8 Nov 2007 16:04:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8G0fvP003456\n\tfor <source@collab.sakaiproject.org>; Thu, 8 Nov 2007 11:00:41 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8G0fmR003454\n\tfor source@collab.sakaiproject.org; Thu, 8 Nov 2007 11:00:41 -0500\nDate: Thu, 8 Nov 2007 11:00:41 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r38048 - content/branches/SAK-12105/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  8 11:05:09 2007\nX-DSPAM-Confidence: 0.7608\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38048\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-11-08 11:00:34 -0500 (Thu, 08 Nov 2007)\nNew Revision: 38048\n\nModified:\ncontent/branches/SAK-12105/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java\nLog:\nSAK-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).\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Thu Nov  8 10:53:27 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 08 Nov 2007 10:53:27 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 08 Nov 2007 10:53:27 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby fan.mail.umich.edu () with ESMTP id lA8FrQ5n020918;\n\tThu, 8 Nov 2007 10:53:26 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 473330F0.DDBC0.6651 ; \n\t 8 Nov 2007 10:53:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2097B76B77;\n\tThu,  8 Nov 2007 15:48:23 +0000 (GMT)\nMessage-ID: <200711081549.lA8Fn5bY003409@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 46\n          for <source@collab.sakaiproject.org>;\n          Thu, 8 Nov 2007 15:48:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D461D20F83\n\tfor <source@collab.sakaiproject.org>; Thu,  8 Nov 2007 15:53:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8Fn5GY003411\n\tfor <source@collab.sakaiproject.org>; Thu, 8 Nov 2007 10:49:05 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8Fn5bY003409\n\tfor source@collab.sakaiproject.org; Thu, 8 Nov 2007 10:49:05 -0500\nDate: Thu, 8 Nov 2007 10:49:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r38047 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  8 10:53:27 2007\nX-DSPAM-Confidence: 0.9874\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38047\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-08 10:49:04 -0500 (Thu, 08 Nov 2007)\nNew Revision: 38047\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties\nLog:\nCTools: update CT 294 patch for 2.4.xP\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Thu Nov  8 10:52:12 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 08 Nov 2007 10:52:12 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 08 Nov 2007 10:52:12 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby faithful.mail.umich.edu () with ESMTP id lA8FqBkP029564;\n\tThu, 8 Nov 2007 10:52:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 473330A5.C99A8.8703 ; \n\t 8 Nov 2007 10:52:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3603276B61;\n\tThu,  8 Nov 2007 15:47:07 +0000 (GMT)\nMessage-ID: <200711081547.lA8FlpZX003397@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 309\n          for <source@collab.sakaiproject.org>;\n          Thu, 8 Nov 2007 15:46:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0577920F83\n\tfor <source@collab.sakaiproject.org>; Thu,  8 Nov 2007 15:51:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8FlphV003399\n\tfor <source@collab.sakaiproject.org>; Thu, 8 Nov 2007 10:47:52 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8FlpZX003397\n\tfor source@collab.sakaiproject.org; Thu, 8 Nov 2007 10:47:51 -0500\nDate: Thu, 8 Nov 2007 10:47:51 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r38046 - ctools/trunk/builds/ctools_2-4/patches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  8 10:52:12 2007\nX-DSPAM-Confidence: 0.8488\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38046\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-08 10:47:50 -0500 (Thu, 08 Nov 2007)\nNew Revision: 38046\n\nModified:\nctools/trunk/builds/ctools_2-4/patches/CT-294.patch\nLog:\nCTools: update CT-294.patch for 2.4.xP\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gopal.ramasammycook@gmail.com Thu Nov  8 10:39:39 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 08 Nov 2007 10:39:39 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 08 Nov 2007 10:39:39 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby godsend.mail.umich.edu () with ESMTP id lA8Fdcgw007203;\n\tThu, 8 Nov 2007 10:39:38 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 47332DB2.53532.10676 ; \n\t 8 Nov 2007 10:39:34 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4E5C576B55;\n\tThu,  8 Nov 2007 15:34:29 +0000 (GMT)\nMessage-ID: <200711081535.lA8FZD3S003383@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 826\n          for <source@collab.sakaiproject.org>;\n          Thu, 8 Nov 2007 15:34:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D561620F77\n\tfor <source@collab.sakaiproject.org>; Thu,  8 Nov 2007 15:39:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8FZD6i003385\n\tfor <source@collab.sakaiproject.org>; Thu, 8 Nov 2007 10:35:13 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8FZD3S003383\n\tfor source@collab.sakaiproject.org; Thu, 8 Nov 2007 10:35:13 -0500\nDate: Thu, 8 Nov 2007 10:35:13 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f\nTo: source@collab.sakaiproject.org\nFrom: gopal.ramasammycook@gmail.com\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  8 10:39:39 2007\nX-DSPAM-Confidence: 0.9830\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38045\n\nAuthor: gopal.ramasammycook@gmail.com\nDate: 2007-11-08 10:34:14 -0500 (Thu, 08 Nov 2007)\nNew Revision: 38045\n\nModified:\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/AssessmentSettingsBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/PublishedAssessmentSettingsBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SaveAssessmentSettings.java\nsam/branches/SAK-12065/samigo-app/src/webapp/jsf/author/publishedSettings.jsp\nsam/branches/SAK-12065/samigo-hibernate/src/java/org/sakaiproject/tool/assessment/data/dao/assessment/AssessmentAccessControl.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AuthzQueriesFacadeAPI.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/integrated/AuthzQueriesFacade.java\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/authz/standalone/AuthzQueriesFacade.java\nLog:\nSAK-12065. Gopal 8 N0v 2007. Added code to copy authz data to published assessments - not yet tested. \n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Nov  8 10:33:49 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 08 Nov 2007 10:33:49 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 08 Nov 2007 10:33:49 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby jacknife.mail.umich.edu () with ESMTP id lA8FXmKx013408;\n\tThu, 8 Nov 2007 10:33:48 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 47332C49.BC1E1.23848 ; \n\t 8 Nov 2007 10:33:33 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 33A0B757F2;\n\tThu,  8 Nov 2007 15:30:49 +0000 (GMT)\nMessage-ID: <200711081528.lA8FSZlX003371@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 996\n          for <source@collab.sakaiproject.org>;\n          Thu, 8 Nov 2007 15:30:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9BE1F20F77\n\tfor <source@collab.sakaiproject.org>; Thu,  8 Nov 2007 15:32:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8FSZbj003373\n\tfor <source@collab.sakaiproject.org>; Thu, 8 Nov 2007 10:28:35 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8FSZlX003371\n\tfor source@collab.sakaiproject.org; Thu, 8 Nov 2007 10:28:35 -0500\nDate: Thu, 8 Nov 2007 10:28:35 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38044 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  8 10:33:49 2007\nX-DSPAM-Confidence: 0.9883\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38044\n\nAuthor: zqian@umich.edu\nDate: 2007-11-08 10:28:34 -0500 (Thu, 08 Nov 2007)\nNew Revision: 38044\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerge the fix to SAK-11748 into post-2-4: svn merge -r 35972:35973 https://source.sakaiproject.org/svn/assignment/trunk/\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Nov  8 09:31:39 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 08 Nov 2007 09:31:39 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 08 Nov 2007 09:31:39 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby chaos.mail.umich.edu () with ESMTP id lA8EVc9N009714;\n\tThu, 8 Nov 2007 09:31:38 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 47331DB3.6A154.11351 ; \n\t 8 Nov 2007 09:31:18 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6EF32766AD;\n\tThu,  8 Nov 2007 14:31:15 +0000 (GMT)\nMessage-ID: <200711081426.lA8EQrjc003236@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 459\n          for <source@collab.sakaiproject.org>;\n          Thu, 8 Nov 2007 14:30:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DBEA220F48\n\tfor <source@collab.sakaiproject.org>; Thu,  8 Nov 2007 14:30:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8EQs8x003238\n\tfor <source@collab.sakaiproject.org>; Thu, 8 Nov 2007 09:26:54 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8EQrjc003236\n\tfor source@collab.sakaiproject.org; Thu, 8 Nov 2007 09:26:53 -0500\nDate: Thu, 8 Nov 2007 09:26:53 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38041 - osp/trunk/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  8 09:31:39 2007\nX-DSPAM-Confidence: 0.9842\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38041\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-08 09:26:53 -0500 (Thu, 08 Nov 2007)\nNew Revision: 38041\n\nModified:\nosp/trunk/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle/Messages.properties\nosp/trunk/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle/Messages_sv.properties\nLog:\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12137\nChange wording to match\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Nov  8 09:24:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 08 Nov 2007 09:24:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 08 Nov 2007 09:24:17 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby casino.mail.umich.edu () with ESMTP id lA8EOGIN013103;\n\tThu, 8 Nov 2007 09:24:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 47331C0A.EFCA7.18839 ; \n\t 8 Nov 2007 09:24:13 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D42AF76969;\n\tThu,  8 Nov 2007 14:24:09 +0000 (GMT)\nMessage-ID: <200711081419.lA8EJtkC003204@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 686\n          for <source@collab.sakaiproject.org>;\n          Thu, 8 Nov 2007 14:23:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2DF5220F46\n\tfor <source@collab.sakaiproject.org>; Thu,  8 Nov 2007 14:23:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8EJtSZ003206\n\tfor <source@collab.sakaiproject.org>; Thu, 8 Nov 2007 09:19:55 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8EJtkC003204\n\tfor source@collab.sakaiproject.org; Thu, 8 Nov 2007 09:19:55 -0500\nDate: Thu, 8 Nov 2007 09:19:55 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38039 - osp/trunk/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  8 09:24:17 2007\nX-DSPAM-Confidence: 0.9850\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38039\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-08 09:19:54 -0500 (Thu, 08 Nov 2007)\nNew Revision: 38039\n\nModified:\nosp/trunk/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle/Messages.properties\nosp/trunk/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle/Messages_sv.properties\nLog:\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12135\nFixing typo\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Thu Nov  8 09:13:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 08 Nov 2007 09:13:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 08 Nov 2007 09:13:17 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby awakenings.mail.umich.edu () with ESMTP id lA8EDGKM014154;\n\tThu, 8 Nov 2007 09:13:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 47331976.9F7F3.32191 ; \n\t 8 Nov 2007 09:13:13 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 74C7B743D3;\n\tThu,  8 Nov 2007 14:13:10 +0000 (GMT)\nMessage-ID: <200711081408.lA8E8qI0003192@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 217\n          for <source@collab.sakaiproject.org>;\n          Thu, 8 Nov 2007 14:12:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C0E7720F51\n\tfor <source@collab.sakaiproject.org>; Thu,  8 Nov 2007 14:12:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8E8qRt003194\n\tfor <source@collab.sakaiproject.org>; Thu, 8 Nov 2007 09:08:52 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8E8qI0003192\n\tfor source@collab.sakaiproject.org; Thu, 8 Nov 2007 09:08:52 -0500\nDate: Thu, 8 Nov 2007 09:08:52 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r38038 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  8 09:13:17 2007\nX-DSPAM-Confidence: 0.8484\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38038\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-08 09:08:51 -0500 (Thu, 08 Nov 2007)\nNew Revision: 38038\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties\nLog:\nCTools: update 2.4.xP for SAK 10788\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Thu Nov  8 09:12:03 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 08 Nov 2007 09:12:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 08 Nov 2007 09:12:02 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby chaos.mail.umich.edu () with ESMTP id lA8EC1fB030280;\n\tThu, 8 Nov 2007 09:12:01 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 47331923.4AC95.24691 ; \n\t 8 Nov 2007 09:11:50 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id F059A727B6;\n\tThu,  8 Nov 2007 14:11:46 +0000 (GMT)\nMessage-ID: <200711081407.lA8E7Z7a003175@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 811\n          for <source@collab.sakaiproject.org>;\n          Thu, 8 Nov 2007 14:11:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E463D20F51\n\tfor <source@collab.sakaiproject.org>; Thu,  8 Nov 2007 14:11:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8E7Ztb003177\n\tfor <source@collab.sakaiproject.org>; Thu, 8 Nov 2007 09:07:35 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8E7Z7a003175\n\tfor source@collab.sakaiproject.org; Thu, 8 Nov 2007 09:07:35 -0500\nDate: Thu, 8 Nov 2007 09:07:35 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  8 09:12:02 2007\nX-DSPAM-Confidence: 0.9915\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38037\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-11-08 09:07:31 -0500 (Thu, 08 Nov 2007)\nNew Revision: 38037\n\nRemoved:\npostem/branches/oncourse_2-4-x/postem-api/src/java/org/sakaiproject/api/app/postem/data/Heading.java\npostem/branches/oncourse_2-4-x/postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGradeData.java\npostem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.hbm.xml\npostem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.java\npostem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.hbm.xml\npostem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.java\nModified:\npostem/branches/oncourse_2-4-x/.classpath\npostem/branches/oncourse_2-4-x/components/src/webapp/WEB-INF/components.xml\npostem/branches/oncourse_2-4-x/postem-api/src/java/org/sakaiproject/api/app/postem/data/Gradebook.java\npostem/branches/oncourse_2-4-x/postem-api/src/java/org/sakaiproject/api/app/postem/data/GradebookManager.java\npostem/branches/oncourse_2-4-x/postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGrades.java\npostem/branches/oncourse_2-4-x/postem-app/pom.xml\npostem/branches/oncourse_2-4-x/postem-app/src/java/org/sakaiproject/tool/postem/Column.java\npostem/branches/oncourse_2-4-x/postem-app/src/java/org/sakaiproject/tool/postem/PostemTool.java\npostem/branches/oncourse_2-4-x/postem-app/src/webapp/WEB-INF/components.xml\npostem/branches/oncourse_2-4-x/postem-hbm/pom.xml\npostem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.hbm.xml\npostem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.java\npostem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.hbm.xml\npostem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.java\npostem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/TemplateImpl.java\npostem/branches/oncourse_2-4-x/postem-impl/src/java/org/sakaiproject/component/app/postem/GradebookManagerImpl.java\nLog:\nsvn merge -r38031:38032 https://source.sakaiproject.org/svn/postem/trunk\nU    .classpath\nU    components/src/webapp/WEB-INF/components.xml\nU    postem-app/src/java/org/sakaiproject/tool/postem/PostemTool.java\nU    postem-app/src/java/org/sakaiproject/tool/postem/Column.java\nU    postem-app/src/webapp/WEB-INF/components.xml\nC    postem-app/pom.xml\nU    postem-impl/src/java/org/sakaiproject/component/app/postem/GradebookManagerImpl.java\nD    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.java\nD    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.hbm.xml\nD    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.java\nD    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.hbm.xml\nU    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.java\nU    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.hbm.xml\nC    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.hbm.xml\nU    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/TemplateImpl.java\nC    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.java\nU    postem-hbm/pom.xml\nD    postem-api/src/java/org/sakaiproject/api/app/postem/data/Heading.java\nD    postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGradeData.java\nC    postem-api/src/java/org/sakaiproject/api/app/postem/data/GradebookManager.java\nU    postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGrades.java\nU    postem-api/src/java/org/sakaiproject/api/app/postem/data/Gradebook.java\n------------------------------------------------------------------------\nr38032 | wagnermr@iupui.edu | 2007-11-08 08:17:45 -0500 (Thu, 08 Nov 2007) | 4 lines\n\nSAK-12095\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12095\nPerformance problems when tool contains large posts\nBack out original strategy for improving performance and implement new strategy\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Thu Nov  8 08:58:48 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 08 Nov 2007 08:58:47 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 08 Nov 2007 08:58:47 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby faithful.mail.umich.edu () with ESMTP id lA8DwkWg016870;\n\tThu, 8 Nov 2007 08:58:46 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 47331610.C05CE.32338 ; \n\t 8 Nov 2007 08:58:44 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id AC5307695B;\n\tThu,  8 Nov 2007 13:58:39 +0000 (GMT)\nMessage-ID: <200711081354.lA8DsPIN003095@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 648\n          for <source@collab.sakaiproject.org>;\n          Thu, 8 Nov 2007 13:58:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6FB1B1EEC1\n\tfor <source@collab.sakaiproject.org>; Thu,  8 Nov 2007 13:58:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8DsPQw003097\n\tfor <source@collab.sakaiproject.org>; Thu, 8 Nov 2007 08:54:25 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8DsPIN003095\n\tfor source@collab.sakaiproject.org; Thu, 8 Nov 2007 08:54:25 -0500\nDate: Thu, 8 Nov 2007 08:54:25 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38035 - entitybroker/trunk/pack\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  8 08:58:47 2007\nX-DSPAM-Confidence: 0.9828\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38035\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-08 08:54:21 -0500 (Thu, 08 Nov 2007)\nNew Revision: 38035\n\nModified:\nentitybroker/trunk/pack/project.xml\nLog:\nNOJIRA: fixed the maven 1 build\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Nov  8 08:34:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 08 Nov 2007 08:34:42 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 08 Nov 2007 08:34:42 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby faithful.mail.umich.edu () with ESMTP id lA8DYfoi004325;\n\tThu, 8 Nov 2007 08:34:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 4733106B.7FCCB.24044 ; \n\t 8 Nov 2007 08:34:38 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2A9CC74FDF;\n\tThu,  8 Nov 2007 13:33:34 +0000 (GMT)\nMessage-ID: <200711081330.lA8DUL9J002966@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 35\n          for <source@collab.sakaiproject.org>;\n          Thu, 8 Nov 2007 13:33:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EFBD01EF4A\n\tfor <source@collab.sakaiproject.org>; Thu,  8 Nov 2007 13:34:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8DUL6s002968\n\tfor <source@collab.sakaiproject.org>; Thu, 8 Nov 2007 08:30:21 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8DUL9J002966\n\tfor source@collab.sakaiproject.org; Thu, 8 Nov 2007 08:30:21 -0500\nDate: Thu, 8 Nov 2007 08:30:21 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38034 - osp/tags/sakai_2-5-0_QA_013_GMT\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  8 08:34:42 2007\nX-DSPAM-Confidence: 0.8461\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38034\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-08 08:30:19 -0500 (Thu, 08 Nov 2007)\nNew Revision: 38034\n\nModified:\nosp/tags/sakai_2-5-0_QA_013_GMT/\nosp/tags/sakai_2-5-0_QA_013_GMT/.externals\nosp/tags/sakai_2-5-0_QA_013_GMT/pom.xml\nLog:\nCUtting osp +gmt 2.5.013 qa tag\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Nov  8 08:30:04 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 08 Nov 2007 08:30:04 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 08 Nov 2007 08:30:04 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby sleepers.mail.umich.edu () with ESMTP id lA8DU3ML011490;\n\tThu, 8 Nov 2007 08:30:03 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 47330F55.29955.16080 ; \n\t 8 Nov 2007 08:30:00 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 033AE74FDF;\n\tThu,  8 Nov 2007 13:28:54 +0000 (GMT)\nMessage-ID: <200711081325.lA8DPeO5002917@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 151\n          for <source@collab.sakaiproject.org>;\n          Thu, 8 Nov 2007 13:28:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 193C320F4B\n\tfor <source@collab.sakaiproject.org>; Thu,  8 Nov 2007 13:29:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8DPeOl002919\n\tfor <source@collab.sakaiproject.org>; Thu, 8 Nov 2007 08:25:40 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8DPeO5002917\n\tfor source@collab.sakaiproject.org; Thu, 8 Nov 2007 08:25:40 -0500\nDate: Thu, 8 Nov 2007 08:25:40 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r38033 - osp/tags\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  8 08:30:04 2007\nX-DSPAM-Confidence: 0.8479\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38033\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-11-08 08:25:39 -0500 (Thu, 08 Nov 2007)\nNew Revision: 38033\n\nAdded:\nosp/tags/sakai_2-5-0_QA_013_GMT/\nLog:\nPrep for osp +gmt 2.5.013 qa tag\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Thu Nov  8 08:22:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 08 Nov 2007 08:22:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 08 Nov 2007 08:22:17 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby brazil.mail.umich.edu () with ESMTP id lA8DMG4m012309;\n\tThu, 8 Nov 2007 08:22:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 47330D82.EFE26.31751 ; \n\t 8 Nov 2007 08:22:13 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D3BAB768AE;\n\tThu,  8 Nov 2007 13:21:10 +0000 (GMT)\nMessage-ID: <200711081317.lA8DHoF8002899@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 164\n          for <source@collab.sakaiproject.org>;\n          Thu, 8 Nov 2007 13:20:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7EF1E20F46\n\tfor <source@collab.sakaiproject.org>; Thu,  8 Nov 2007 13:21:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8DHoS9002901\n\tfor <source@collab.sakaiproject.org>; Thu, 8 Nov 2007 08:17:50 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8DHoF8002899\n\tfor source@collab.sakaiproject.org; Thu, 8 Nov 2007 08:17:50 -0500\nDate: Thu, 8 Nov 2007 08:17:50 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  8 08:22:17 2007\nX-DSPAM-Confidence: 0.9855\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38032\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-11-08 08:17:45 -0500 (Thu, 08 Nov 2007)\nNew Revision: 38032\n\nRemoved:\npostem/trunk/postem-api/src/java/org/sakaiproject/api/app/postem/data/Heading.java\npostem/trunk/postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGradeData.java\npostem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.hbm.xml\npostem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.java\npostem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.hbm.xml\npostem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.java\nModified:\npostem/trunk/.classpath\npostem/trunk/components/src/webapp/WEB-INF/components.xml\npostem/trunk/postem-api/src/java/org/sakaiproject/api/app/postem/data/Gradebook.java\npostem/trunk/postem-api/src/java/org/sakaiproject/api/app/postem/data/GradebookManager.java\npostem/trunk/postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGrades.java\npostem/trunk/postem-app/pom.xml\npostem/trunk/postem-app/src/java/org/sakaiproject/tool/postem/Column.java\npostem/trunk/postem-app/src/java/org/sakaiproject/tool/postem/PostemTool.java\npostem/trunk/postem-app/src/webapp/WEB-INF/components.xml\npostem/trunk/postem-hbm/pom.xml\npostem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.hbm.xml\npostem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.java\npostem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.hbm.xml\npostem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.java\npostem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/TemplateImpl.java\npostem/trunk/postem-impl/src/java/org/sakaiproject/component/app/postem/GradebookManagerImpl.java\nLog:\nSAK-12095\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12095\nPerformance problems when tool contains large posts\nBack out original strategy for improving performance and implement new strategy\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Thu Nov  8 08:03:06 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 08 Nov 2007 08:03:06 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 08 Nov 2007 08:03:06 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby godsend.mail.umich.edu () with ESMTP id lA8D35sp016873;\n\tThu, 8 Nov 2007 08:03:05 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 47330903.608CB.9114 ; \n\t 8 Nov 2007 08:03:02 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B0784750AD;\n\tThu,  8 Nov 2007 13:02:55 +0000 (GMT)\nMessage-ID: <200711081247.lA8ClTD3002885@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 416\n          for <source@collab.sakaiproject.org>;\n          Thu, 8 Nov 2007 12:51:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D34BA20F25\n\tfor <source@collab.sakaiproject.org>; Thu,  8 Nov 2007 12:51:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8ClUaM002887\n\tfor <source@collab.sakaiproject.org>; Thu, 8 Nov 2007 07:47:30 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8ClTD3002885\n\tfor source@collab.sakaiproject.org; Thu, 8 Nov 2007 07:47:29 -0500\nDate: Thu, 8 Nov 2007 07:47:29 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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!\n 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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  8 08:03:06 2007\nX-DSPAM-Confidence: 0.5430\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38031\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-08 07:45:52 -0500 (Thu, 08 Nov 2007)\nNew Revision: 38031\n\nAdded:\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/api/ComponentManagerException.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/api/ComponentManagerNotAvailableException.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/loader/\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/loader/shared/\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/loader/shared/SharedComponentManager.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/loader/shared/SharedComponentManagerMBean.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/proxy/\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/proxy/ComponentManagerProxy.java\ncomponent/branches/SAK-12134/component-loader/\ncomponent/branches/SAK-12134/component-loader/component-loader-common/\ncomponent/branches/SAK-12134/component-loader/component-loader-common/impl/\ncomponent/branches/SAK-12134/component-loader/component-loader-common/impl/.classpath\ncomponent/branches/SAK-12134/component-loader/component-loader-common/impl/.project\ncomponent/branches/SAK-12134/component-loader/component-loader-common/impl/.settings/\ncomponent/branches/SAK-12134/component-loader/component-loader-common/impl/.settings/org.eclipse.jdt.core.prefs\ncomponent/branches/SAK-12134/component-loader/component-loader-common/impl/pom.xml\ncomponent/branches/SAK-12134/component-loader/component-loader-common/impl/src/\ncomponent/branches/SAK-12134/component-loader/component-loader-common/impl/src/java/\ncomponent/branches/SAK-12134/component-loader/component-loader-common/impl/src/java/org/\ncomponent/branches/SAK-12134/component-loader/component-loader-common/impl/src/java/org/sakaiproject/\ncomponent/branches/SAK-12134/component-loader/component-loader-common/impl/src/java/org/sakaiproject/component/\ncomponent/branches/SAK-12134/component-loader/component-loader-common/impl/src/java/org/sakaiproject/component/loader/\ncomponent/branches/SAK-12134/component-loader/component-loader-common/impl/src/java/org/sakaiproject/component/loader/common/\ncomponent/branches/SAK-12134/component-loader/component-loader-common/impl/src/java/org/sakaiproject/component/loader/common/CommonLifecycle.java\ncomponent/branches/SAK-12134/component-loader/component-loader-common/impl/src/java/org/sakaiproject/component/loader/common/CommonLifecycleEvent.java\ncomponent/branches/SAK-12134/component-loader/component-loader-common/impl/src/java/org/sakaiproject/component/loader/common/CommonLifecycleListener.java\ncomponent/branches/SAK-12134/component-loader/component-loader-server/\ncomponent/branches/SAK-12134/component-loader/component-loader-server/impl/\ncomponent/branches/SAK-12134/component-loader/component-loader-server/impl/.classpath\ncomponent/branches/SAK-12134/component-loader/component-loader-server/impl/.project\ncomponent/branches/SAK-12134/component-loader/component-loader-server/impl/.settings/\ncomponent/branches/SAK-12134/component-loader/component-loader-server/impl/.settings/org.eclipse.jdt.core.prefs\ncomponent/branches/SAK-12134/component-loader/component-loader-server/impl/pom.xml\ncomponent/branches/SAK-12134/component-loader/component-loader-server/impl/src/\ncomponent/branches/SAK-12134/component-loader/component-loader-server/impl/src/java/\ncomponent/branches/SAK-12134/component-loader/component-loader-server/impl/src/java/org/\ncomponent/branches/SAK-12134/component-loader/component-loader-server/impl/src/java/org/sakaiproject/\ncomponent/branches/SAK-12134/component-loader/component-loader-server/impl/src/java/org/sakaiproject/component/\ncomponent/branches/SAK-12134/component-loader/component-loader-server/impl/src/java/org/sakaiproject/component/loader/\ncomponent/branches/SAK-12134/component-loader/component-loader-server/impl/src/java/org/sakaiproject/component/loader/server/\ncomponent/branches/SAK-12134/component-loader/component-loader-server/impl/src/java/org/sakaiproject/component/loader/server/SakaiLoader.java\ncomponent/branches/SAK-12134/component-loader/pom.xml\nModified:\ncomponent/branches/SAK-12134/component-api/.classpath\ncomponent/branches/SAK-12134/component-api/component/pom.xml\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/api/ComponentManager.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/cover/ComponentManager.java\ncomponent/branches/SAK-12134/component-api/component/src/java/org/sakaiproject/component/impl/SpringCompMgr.java\ncomponent/branches/SAK-12134/pom.xml\nLog:\nSAK-12134\n\nThis 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.\nIt injects the a component manager mbean into the MBeanServer and this is then used by the static cover to recover the Component Manager.\n\nThe 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\nThis bean can be created eg new instance and it will associated itself with the component manager on construction.\n\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Thu Nov  8 07:44:03 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 08 Nov 2007 07:44:03 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 08 Nov 2007 07:44:03 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby faithful.mail.umich.edu () with ESMTP id lA8Ci2OV018915;\n\tThu, 8 Nov 2007 07:44:02 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4733048D.A7F2.27514 ; \n\t 8 Nov 2007 07:43:59 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id F17D5750AD;\n\tThu,  8 Nov 2007 12:43:53 +0000 (GMT)\nMessage-ID: <200711081239.lA8CdcVd002873@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 113\n          for <source@collab.sakaiproject.org>;\n          Thu, 8 Nov 2007 12:43:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B98661EF16\n\tfor <source@collab.sakaiproject.org>; Thu,  8 Nov 2007 12:43:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8Cdcne002875\n\tfor <source@collab.sakaiproject.org>; Thu, 8 Nov 2007 07:39:38 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8CdcVd002873\n\tfor source@collab.sakaiproject.org; Thu, 8 Nov 2007 07:39:38 -0500\nDate: Thu, 8 Nov 2007 07:39:38 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38030 - content/branches/SAK-12105/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  8 07:44:03 2007\nX-DSPAM-Confidence: 0.9886\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38030\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-08 07:39:33 -0500 (Thu, 08 Nov 2007)\nNew Revision: 38030\n\nModified:\ncontent/branches/SAK-12105/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\nLog:\nSAK-12126: committed fix for this bug to the branch that Steve and I are working on JCR in\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Thu Nov  8 07:40:01 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 08 Nov 2007 07:40:01 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 08 Nov 2007 07:40:01 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby mission.mail.umich.edu () with ESMTP id lA8Ce0ID021102;\n\tThu, 8 Nov 2007 07:40:01 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 47330399.EBBEC.7781 ; \n\t 8 Nov 2007 07:39:56 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6CC9674311;\n\tThu,  8 Nov 2007 12:39:52 +0000 (GMT)\nMessage-ID: <200711081235.lA8CZeFn002859@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 946\n          for <source@collab.sakaiproject.org>;\n          Thu, 8 Nov 2007 12:39:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 08C101EF16\n\tfor <source@collab.sakaiproject.org>; Thu,  8 Nov 2007 12:39:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8CZewN002861\n\tfor <source@collab.sakaiproject.org>; Thu, 8 Nov 2007 07:35:40 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8CZeFn002859\n\tfor source@collab.sakaiproject.org; Thu, 8 Nov 2007 07:35:40 -0500\nDate: Thu, 8 Nov 2007 07:35:40 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38029 - content/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  8 07:40:01 2007\nX-DSPAM-Confidence: 0.9872\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38029\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-08 07:35:34 -0500 (Thu, 08 Nov 2007)\nNew Revision: 38029\n\nModified:\ncontent/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java\nLog:\nSAK-12105: Fixed the simulated items size for testing\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Thu Nov  8 07:36:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 08 Nov 2007 07:36:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 08 Nov 2007 07:36:02 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby faithful.mail.umich.edu () with ESMTP id lA8Ca15E016868;\n\tThu, 8 Nov 2007 07:36:01 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 473302AB.E556A.12769 ; \n\t 8 Nov 2007 07:35:58 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0A8FE74311;\n\tThu,  8 Nov 2007 12:35:53 +0000 (GMT)\nMessage-ID: <200711081231.lA8CVdG6002847@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 640\n          for <source@collab.sakaiproject.org>;\n          Thu, 8 Nov 2007 12:35:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 556AD1EF16\n\tfor <source@collab.sakaiproject.org>; Thu,  8 Nov 2007 12:35:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8CVdQN002849\n\tfor <source@collab.sakaiproject.org>; Thu, 8 Nov 2007 07:31:39 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8CVdG6002847\n\tfor source@collab.sakaiproject.org; Thu, 8 Nov 2007 07:31:39 -0500\nDate: Thu, 8 Nov 2007 07:31:39 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  8 07:36:02 2007\nX-DSPAM-Confidence: 0.7565\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38028\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-08 07:30:42 -0500 (Thu, 08 Nov 2007)\nNew Revision: 38028\n\nAdded:\nportal/trunk/portal-api/api/src/java/org/sakaiproject/portal/api/PageFilter.java\nModified:\nportal/trunk/portal-api/api/src/java/org/sakaiproject/portal/api/Portal.java\nportal/trunk/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java\nportal/trunk/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/GalleryHandler.java\nportal/trunk/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/SiteHandler.java\nportal/trunk/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/WorksiteHandler.java\nportal/trunk/portal-util/.classpath\nportal/trunk/portal-util/util/pom.xml\nportal/trunk/portal-util/util/src/java/org/sakaiproject/portal/util/PortalSiteHelper.java\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-9620\n\nFixed the way the page lists are processed to generate structure and filtering.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Thu Nov  8 06:43:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 08 Nov 2007 06:43:42 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 08 Nov 2007 06:43:42 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby score.mail.umich.edu () with ESMTP id lA8BhfaL023590;\n\tThu, 8 Nov 2007 06:43:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 4732F667.B69E6.24847 ; \n\t 8 Nov 2007 06:43:38 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C5FC77683D;\n\tThu,  8 Nov 2007 11:43:34 +0000 (GMT)\nMessage-ID: <200711081139.lA8BdHdk002833@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 465\n          for <source@collab.sakaiproject.org>;\n          Thu, 8 Nov 2007 11:43:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1A96020F1A\n\tfor <source@collab.sakaiproject.org>; Thu,  8 Nov 2007 11:43:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8BdHF8002835\n\tfor <source@collab.sakaiproject.org>; Thu, 8 Nov 2007 06:39:17 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8BdHdk002833\n\tfor source@collab.sakaiproject.org; Thu, 8 Nov 2007 06:39:17 -0500\nDate: Thu, 8 Nov 2007 06:39:17 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38027 - content/branches/SAK-12105\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  8 06:43:42 2007\nX-DSPAM-Confidence: 0.9849\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38027\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-08 06:39:13 -0500 (Thu, 08 Nov 2007)\nNew Revision: 38027\n\nModified:\ncontent/branches/SAK-12105/pom.xml\nLog:\nSAK-12105: updated POM again to make it so providers can be left out\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Thu Nov  8 06:41:36 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 08 Nov 2007 06:41:36 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 08 Nov 2007 06:41:36 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby casino.mail.umich.edu () with ESMTP id lA8BfZLe015073;\n\tThu, 8 Nov 2007 06:41:35 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 4732F5EA.7793C.23940 ; \n\t 8 Nov 2007 06:41:33 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DBDE976835;\n\tThu,  8 Nov 2007 11:41:28 +0000 (GMT)\nMessage-ID: <200711081137.lA8BbGhZ002819@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 809\n          for <source@collab.sakaiproject.org>;\n          Thu, 8 Nov 2007 11:41:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0271E20F1A\n\tfor <source@collab.sakaiproject.org>; Thu,  8 Nov 2007 11:41:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8BbGqv002821\n\tfor <source@collab.sakaiproject.org>; Thu, 8 Nov 2007 06:37:16 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8BbGhZ002819\n\tfor source@collab.sakaiproject.org; Thu, 8 Nov 2007 06:37:16 -0500\nDate: Thu, 8 Nov 2007 06:37:16 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38026 - content/branches/SAK-12105/content-tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  8 06:41:36 2007\nX-DSPAM-Confidence: 0.9831\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38026\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-08 06:37:12 -0500 (Thu, 08 Nov 2007)\nNew Revision: 38026\n\nRemoved:\ncontent/branches/SAK-12105/content-tool/pom.xml\nLog:\nSAK-12105: Removed unneeded pom file\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Thu Nov  8 06:21:52 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 08 Nov 2007 06:21:52 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 08 Nov 2007 06:21:52 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby flawless.mail.umich.edu () with ESMTP id lA8BLpQk004393;\n\tThu, 8 Nov 2007 06:21:51 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 4732F149.AF1AE.12965 ; \n\t 8 Nov 2007 06:21:48 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 520597679E;\n\tThu,  8 Nov 2007 11:21:43 +0000 (GMT)\nMessage-ID: <200711081117.lA8BHVcB002772@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 172\n          for <source@collab.sakaiproject.org>;\n          Thu, 8 Nov 2007 11:21:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1DE291EE2B\n\tfor <source@collab.sakaiproject.org>; Thu,  8 Nov 2007 11:21:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA8BHVlU002774\n\tfor <source@collab.sakaiproject.org>; Thu, 8 Nov 2007 06:17:31 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA8BHVcB002772\n\tfor source@collab.sakaiproject.org; Thu, 8 Nov 2007 06:17:31 -0500\nDate: Thu, 8 Nov 2007 06:17:31 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38025 - content/branches/SAK-12105\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  8 06:21:52 2007\nX-DSPAM-Confidence: 0.9845\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38025\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-08 06:17:25 -0500 (Thu, 08 Nov 2007)\nNew Revision: 38025\n\nModified:\ncontent/branches/SAK-12105/pom.xml\nLog:\nSAK-12105: updated pom file to use profiles with the JCR stuff\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Wed Nov  7 16:59:09 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 16:59:09 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 16:59:09 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby brazil.mail.umich.edu () with ESMTP id lA7Lx8wI013841;\n\tWed, 7 Nov 2007 16:59:08 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 47323526.8766D.16306 ; \n\t 7 Nov 2007 16:59:05 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DCBE175D5C;\n\tWed,  7 Nov 2007 21:58:57 +0000 (GMT)\nMessage-ID: <200711072154.lA7Lsown001587@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 876\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 21:58:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EA474AEEC\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 21:58:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7LsoTj001589\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 16:54:50 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7Lsown001587\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 16:54:50 -0500\nDate: Wed, 7 Nov 2007 16:54:50 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r38024 - site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 16:59:09 2007\nX-DSPAM-Confidence: 0.9876\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38024\n\nAuthor: zqian@umich.edu\nDate: 2007-11-07 16:54:46 -0500 (Wed, 07 Nov 2007)\nNew Revision: 38024\n\nModified:\nsite-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nLog:\nFix 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\n\nWatch for enrollments object being null and concatenate provider ids when there are more than one.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Nov  7 15:54:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 15:54:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 15:54:02 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby panther.mail.umich.edu () with ESMTP id lA7Ks1MO024156;\n\tWed, 7 Nov 2007 15:54:01 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 473225DE.A238A.8341 ; \n\t 7 Nov 2007 15:53:54 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 119FB75CF0;\n\tWed,  7 Nov 2007 20:53:50 +0000 (GMT)\nMessage-ID: <200711072049.lA7KnZNm001503@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 66\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 20:53:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E8D0B1A37B\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 20:53:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7KnZ5Q001505\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 15:49:35 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7KnZNm001503\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 15:49:35 -0500\nDate: Wed, 7 Nov 2007 15:49:35 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38021 - in content/branches/SAK-12105/content-test: pack/src/webapp/WEB-INF tool/src/webapp/WEB-INF\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 15:54:02 2007\nX-DSPAM-Confidence: 0.9826\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38021\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-07 15:49:27 -0500 (Wed, 07 Nov 2007)\nNew Revision: 38021\n\nModified:\ncontent/branches/SAK-12105/content-test/pack/src/webapp/WEB-INF/components.xml\ncontent/branches/SAK-12105/content-test/tool/src/webapp/WEB-INF/applicationContext.xml\nLog:\nSAK-12105: Fixed up comments\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Nov  7 15:53:20 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 15:53:20 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 15:53:20 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby mission.mail.umich.edu () with ESMTP id lA7KrI3g030125;\n\tWed, 7 Nov 2007 15:53:18 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 473225B6.7440E.11564 ; \n\t 7 Nov 2007 15:53:14 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D113175CE9;\n\tWed,  7 Nov 2007 20:53:02 +0000 (GMT)\nMessage-ID: <200711072048.lA7KmoL3001491@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 739\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 20:52:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C80EE1A37B\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 20:52:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7Kmo1H001493\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 15:48:50 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7KmoL3001491\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 15:48:50 -0500\nDate: Wed, 7 Nov 2007 15:48:50 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38020 - memory/branches/SAK-11913/memory-test\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 15:53:20 2007\nX-DSPAM-Confidence: 0.9851\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38020\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-07 15:48:46 -0500 (Wed, 07 Nov 2007)\nNew Revision: 38020\n\nModified:\nmemory/branches/SAK-11913/memory-test/.classpath\nLog:\nSAK-11913: Fixed up the classpath\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Nov  7 15:51:29 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 15:51:29 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 15:51:29 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby chaos.mail.umich.edu () with ESMTP id lA7KpPNP013146;\n\tWed, 7 Nov 2007 15:51:25 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 47322545.7C246.16186 ; \n\t 7 Nov 2007 15:51:21 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 36B6575CE7;\n\tWed,  7 Nov 2007 20:51:17 +0000 (GMT)\nMessage-ID: <200711072047.lA7Kl6fL001479@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 56\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 20:51:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 298931A37B\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 20:51:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7Kl7fk001481\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 15:47:07 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7Kl6fL001479\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 15:47:06 -0500\nDate: Wed, 7 Nov 2007 15:47:06 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 15:51:29 2007\nX-DSPAM-Confidence: 0.9884\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38019\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-07 15:46:48 -0500 (Wed, 07 Nov 2007)\nNew Revision: 38019\n\nAdded:\nmemory/branches/SAK-11913/memory-test/test/\nmemory/branches/SAK-11913/memory-test/test/pom.xml\nmemory/branches/SAK-11913/memory-test/test/src/\nmemory/branches/SAK-11913/memory-test/test/src/resources/\nmemory/branches/SAK-11913/memory-test/test/src/resources/testBeans.xml\nmemory/branches/SAK-11913/memory-test/tool/\nmemory/branches/SAK-11913/memory-test/tool/pom.xml\nmemory/branches/SAK-11913/memory-test/tool/src/\nmemory/branches/SAK-11913/memory-test/tool/src/webapp/\nmemory/branches/SAK-11913/memory-test/tool/src/webapp/WEB-INF/\nmemory/branches/SAK-11913/memory-test/tool/src/webapp/WEB-INF/applicationContext.xml\nmemory/branches/SAK-11913/memory-test/tool/src/webapp/WEB-INF/web.xml\nRemoved:\nmemory/branches/SAK-11913/memory-test/impl/\nmemory/branches/SAK-11913/memory-test/test/pom.xml\nmemory/branches/SAK-11913/memory-test/test/src/\nModified:\nmemory/branches/SAK-11913/memory-test/.classpath\nmemory/branches/SAK-11913/memory-test/pack/pom.xml\nmemory/branches/SAK-11913/memory-test/pack/src/webapp/WEB-INF/components.xml\nmemory/branches/SAK-11913/memory-test/pom.xml\nLog:\nSAK-11913: Fixed up the test structure to use the more flexible duplex deployment option\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom kimsooil@bu.edu Wed Nov  7 15:51:07 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 15:51:07 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 15:51:07 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby awakenings.mail.umich.edu () with ESMTP id lA7Kp1qv031386;\n\tWed, 7 Nov 2007 15:51:01 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 47322529.59F61.5081 ; \n\t 7 Nov 2007 15:50:55 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E94D975CE3;\n\tWed,  7 Nov 2007 20:50:48 +0000 (GMT)\nMessage-ID: <200711072046.lA7Kkdf0001467@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 435\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 20:50:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BA3881A37B\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 20:50:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7Kkds1001469\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 15:46:39 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7Kkdf0001467\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 15:46:39 -0500\nDate: Wed, 7 Nov 2007 15:46:39 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to kimsooil@bu.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: kimsooil@bu.edu\nSubject: [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!\n 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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 15:51:07 2007\nX-DSPAM-Confidence: 0.6959\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38018\n\nAuthor: kimsooil@bu.edu\nDate: 2007-11-07 15:45:18 -0500 (Wed, 07 Nov 2007)\nNew Revision: 38018\n\nAdded:\nmailtool/branches/2.5.0-SAK-11046/.classpath\nmailtool/branches/2.5.0-SAK-11046/.project\nmailtool/branches/2.5.0-SAK-11046/bin/\nmailtool/branches/2.5.0-SAK-11046/help/\nmailtool/branches/2.5.0-SAK-11046/help/m2-target/\nmailtool/branches/2.5.0-SAK-11046/help/m2-target/classes/\nmailtool/branches/2.5.0-SAK-11046/help/m2-target/classes/sakai_mailtool/\nmailtool/branches/2.5.0-SAK-11046/help/m2-target/classes/sakai_mailtool/compose.htm\nmailtool/branches/2.5.0-SAK-11046/help/m2-target/classes/sakai_mailtool/help.xml\nmailtool/branches/2.5.0-SAK-11046/help/m2-target/classes/sakai_mailtool/options.htm\nmailtool/branches/2.5.0-SAK-11046/help/m2-target/classes/sakai_mailtool/overview.htm\nmailtool/branches/2.5.0-SAK-11046/help/m2-target/sakai-mailtool-help-M2.jar\nmailtool/branches/2.5.0-SAK-11046/help/pom.xml\nmailtool/branches/2.5.0-SAK-11046/help/src/\nmailtool/branches/2.5.0-SAK-11046/help/src/sakai_mailtool/\nmailtool/branches/2.5.0-SAK-11046/help/src/sakai_mailtool/compose.htm\nmailtool/branches/2.5.0-SAK-11046/help/src/sakai_mailtool/help.xml\nmailtool/branches/2.5.0-SAK-11046/help/src/sakai_mailtool/options.htm\nmailtool/branches/2.5.0-SAK-11046/help/src/sakai_mailtool/overview.htm\nmailtool/branches/2.5.0-SAK-11046/mailtool/\nmailtool/branches/2.5.0-SAK-11046/mailtool/META-INF/\nmailtool/branches/2.5.0-SAK-11046/mailtool/META-INF/MANIFEST.MF\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/Attachment.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/Configuration.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/EmailGroup.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/EmailRole.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/EmailUser.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/FoothillSelector$ListboxEntry.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/FoothillSelector$ListboxGroup.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/FoothillSelector.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/Mailtool.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/Messages.properties\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/Messages_ca.properties\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/Messages_es.properties\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/Messages_ko.properties\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/Messages_nl.properties\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/OptionsBean.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/RecipientSelector.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/SelectByTree$TableEntry.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/SelectByTree.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/SelectByUserTable$TableEntry.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/SelectByUserTable.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/SelectorComponent.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/SelectorTag.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/SideBySideModel$ListboxEntry.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/SideBySideModel.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/SideBySideSelector.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/TreeSelector.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/classes/org/sakaiproject/tool/mailtool/UserSelector.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2.war\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/META-INF/\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/.faces-config.xml.faceside\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/Attachment.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/Configuration.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/EmailGroup.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/EmailRole.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/EmailUser.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/FoothillSelector$ListboxEntry.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/FoothillSelector$ListboxGroup.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/FoothillSelector.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/Mailtool.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/Messages.properties\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/Messages_ca.properties\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/Messages_es.properties\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/Messages_ko.properties\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/Messages_nl.properties\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/OptionsBean.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/RecipientSelector.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/SelectByTree$TableEntry.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/SelectByTree.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/SelectByUserTable$TableEntry.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/SelectByUserTable.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/SelectorComponent.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/SelectorTag.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/SideBySideModel$ListboxEntry.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/SideBySideModel.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/SideBySideSelector.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/TreeSelector.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/classes/org/sakaiproject/tool/mailtool/UserSelector.class\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/faces-config.xml\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/lib/\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/lib/commons-beanutils-1.6.jar\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/lib/commons-digester-1.6.jar\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/lib/jmock-1.1.0.jar\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/lib/jsf-api-1.1.01.jar\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/lib/jsf-impl-1.1.01.jar\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/lib/sakai-jsf-app-M2.jar\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/lib/sakai-jsf-tool-M2.jar\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/lib/sakai-jsf-widgets-M2.jar\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/lib/sakai-jsf-widgets-sun-M2.jar\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/lib/sakai-util-M2.jar\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/local.xml\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/mailtool_jsf.tld\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/WEB-INF/web.xml\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/hidediv.js\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/images/\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/images/blank.gif\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/images/disk.gif\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/images/paperclip.gif\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/index.html\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/mailtool.js\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/mailtool/\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/mailtool/config_refactor.jsp\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/mailtool/main_onepage.jsp\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/mailtool/prelude.jspf\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/mailtool/results.jsp\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/mailtool/selectByFoothill.jsp\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/mailtool/selectByFoothill_option.jsp\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/mailtool/selectByTree.jsp\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/mailtool/selectByTree_option.jsp\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/mailtool/selectByUser.jsp\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/mailtool/selectByUser_option.jsp\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/mailtool/selectSideBySide.jsp\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/mailtool/selectSideBySide_option.jsp\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/tools/\nmailtool/branches/2.5.0-SAK-11046/mailtool/m2-target/mailtool-M2/tools/sakai.mailtool.xml\nmailtool/branches/2.5.0-SAK-11046/mailtool/pom.xml\nmailtool/branches/2.5.0-SAK-11046/mailtool/scripts/\nmailtool/branches/2.5.0-SAK-11046/mailtool/scripts/build_medium_class.xml\nmailtool/branches/2.5.0-SAK-11046/mailtool/scripts/build_real_test.xml\nmailtool/branches/2.5.0-SAK-11046/mailtool/scripts/build_small_class.py\nmailtool/branches/2.5.0-SAK-11046/mailtool/scripts/build_small_class.xml\nmailtool/branches/2.5.0-SAK-11046/mailtool/scripts/build_users.xml\nmailtool/branches/2.5.0-SAK-11046/mailtool/scripts/removedemo.xml\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/bundle/\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/bundle/org/\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/bundle/org/sakaiproject/\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/bundle/org/sakaiproject/tool/\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/bundle/org/sakaiproject/tool/mailtool/\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/bundle/org/sakaiproject/tool/mailtool/Messages.properties\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/bundle/org/sakaiproject/tool/mailtool/Messages_ca.properties\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/bundle/org/sakaiproject/tool/mailtool/Messages_es.properties\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/bundle/org/sakaiproject/tool/mailtool/Messages_ko.properties\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/bundle/org/sakaiproject/tool/mailtool/Messages_nl.properties\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/java/\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/Attachment.java\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/Configuration.java\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/EmailGroup.java\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/EmailRole.java\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/EmailUser.java\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/FoothillSelector.java\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/OptionsBean.java\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/RecipientSelector.java\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/SelectByTree.java\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/SelectByUserTable.java\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/SelectorComponent.java\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/SelectorTag.java\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/SideBySideModel.java\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/SideBySideSelector.java\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/TreeSelector.java\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/java/org/sakaiproject/tool/mailtool/UserSelector.java\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/test/\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/test/org/\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/test/org/sakaiproject/\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/test/org/sakaiproject/tool/\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/test/org/sakaiproject/tool/mailtool/\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/test/org/sakaiproject/tool/mailtool/BaseMailtoolTest.java\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/test/org/sakaiproject/tool/mailtool/MailtoolEmailListValidationTest.java\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/test/org/sakaiproject/tool/mailtool/MailtoolEmailSenderTest.java\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/test/org/sakaiproject/tool/mailtool/MailtoolRecipientsTest.java\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/test/org/sakaiproject/tool/mailtool/MimeMessageFromConstraint.java\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/test/org/sakaiproject/tool/mailtool/MimeMessageSender.java\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/test/org/sakaiproject/tool/mailtool/MimeMessageToConstraint.java\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/test/org/sakaiproject/tool/mailtool/StubMailtool.java\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/test/org/sakaiproject/tool/mailtool/StubMailtoolWithMessageSink.java\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/WEB-INF/\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/WEB-INF/.faces-config.xml.faceside\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/WEB-INF/faces-config.xml\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/WEB-INF/local.xml\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/WEB-INF/mailtool_jsf.tld\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/WEB-INF/web.xml\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/hidediv.js\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/images/\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/images/blank.gif\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/images/disk.gif\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/images/paperclip.gif\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/index.html\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/mailtool.js\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/mailtool/\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/mailtool/config_refactor.jsp\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/mailtool/main_onepage.jsp\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/mailtool/prelude.jspf\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/mailtool/results.jsp\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/mailtool/selectByFoothill.jsp\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/mailtool/selectByFoothill_option.jsp\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/mailtool/selectByTree.jsp\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/mailtool/selectByTree_option.jsp\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/mailtool/selectByUser.jsp\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/mailtool/selectByUser_option.jsp\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/mailtool/selectSideBySide.jsp\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/mailtool/selectSideBySide_option.jsp\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/tools/\nmailtool/branches/2.5.0-SAK-11046/mailtool/src/webapp/tools/sakai.mailtool.xml\nmailtool/branches/2.5.0-SAK-11046/mailtool/target/\nmailtool/branches/2.5.0-SAK-11046/pom.xml\nLog:\ntrying to fix SAK-11046\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom kimsooil@bu.edu Wed Nov  7 15:47:05 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 15:47:05 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 15:47:05 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby mission.mail.umich.edu () with ESMTP id lA7Kl45N026414;\n\tWed, 7 Nov 2007 15:47:04 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 47322436.4220D.4044 ; \n\t 7 Nov 2007 15:46:50 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C5C3375672;\n\tWed,  7 Nov 2007 20:46:42 +0000 (GMT)\nMessage-ID: <200711072042.lA7KgVDG001431@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 863\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 20:46:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B1B171A37B\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 20:46:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7KgVKA001433\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 15:42:31 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7KgVDG001431\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 15:42:31 -0500\nDate: Wed, 7 Nov 2007 15:42:31 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to kimsooil@bu.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: kimsooil@bu.edu\nSubject: [sakai] svn commit: r38015 - mailtool/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 15:47:05 2007\nX-DSPAM-Confidence: 0.9791\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38015\n\nAuthor: kimsooil@bu.edu\nDate: 2007-11-07 15:42:28 -0500 (Wed, 07 Nov 2007)\nNew Revision: 38015\n\nAdded:\nmailtool/branches/2.5.0-SAK-11046/\nLog:\nInitial import.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Nov  7 11:04:45 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 11:04:45 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 11:04:45 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby chaos.mail.umich.edu () with ESMTP id lA7G4iHD015040;\n\tWed, 7 Nov 2007 11:04:44 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 4731E213.A623C.12063 ; \n\t 7 Nov 2007 11:04:38 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 130D675862;\n\tWed,  7 Nov 2007 16:04:33 +0000 (GMT)\nMessage-ID: <200711071600.lA7G0EDs000763@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 171\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 16:04:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2CFB720DA1\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 16:04:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7G0Elo000765\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 11:00:14 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7G0EDs000763\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 11:00:14 -0500\nDate: Wed, 7 Nov 2007 11:00:14 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r38011 - in content/branches/SAK-12105/content-test: . test/src/resources tool tool/src/webapp/WEB-INF\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 11:04:45 2007\nX-DSPAM-Confidence: 0.9890\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38011\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-07 10:58:39 -0500 (Wed, 07 Nov 2007)\nNew Revision: 38011\n\nModified:\ncontent/branches/SAK-12105/content-test/.classpath\ncontent/branches/SAK-12105/content-test/pom.xml\ncontent/branches/SAK-12105/content-test/test/src/resources/testBeans.xml\ncontent/branches/SAK-12105/content-test/tool/pom.xml\ncontent/branches/SAK-12105/content-test/tool/src/webapp/WEB-INF/applicationContext.xml\nLog:\nSAK-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\nBuilding 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\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom nuno@ufp.pt Wed Nov  7 10:57:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 10:57:37 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 10:57:37 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby flawless.mail.umich.edu () with ESMTP id lA7FvZmT005410;\n\tWed, 7 Nov 2007 10:57:35 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 4731E069.65D5B.4624 ; \n\t 7 Nov 2007 10:57:32 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B7262747FB;\n\tWed,  7 Nov 2007 15:53:27 +0000 (GMT)\nMessage-ID: <200711071553.lA7Fr9Ot000715@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 895\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 15:53:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7412820CA4\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 15:57:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7Fr9hp000717\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 10:53:10 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7Fr9Ot000715\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 10:53:09 -0500\nDate: Wed, 7 Nov 2007 10:53:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f\nTo: source@collab.sakaiproject.org\nFrom: nuno@ufp.pt\nSubject: [sakai] svn commit: r38010 - in usermembership/trunk/tool/src: bundle/org/sakaiproject/umem/tool/bundle java/org/sakaiproject/umem/tool/ui webapp/usermembership\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 10:57:37 2007\nX-DSPAM-Confidence: 0.9780\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=38010\n\nAuthor: nuno@ufp.pt\nDate: 2007-11-07 10:52:53 -0500 (Wed, 07 Nov 2007)\nNew Revision: 38010\n\nModified:\nusermembership/trunk/tool/src/bundle/org/sakaiproject/umem/tool/bundle/Messages.properties\nusermembership/trunk/tool/src/java/org/sakaiproject/umem/tool/ui/UserListBean.java\nusermembership/trunk/tool/src/webapp/usermembership/userlist.jsp\nLog:\nSAK-12087: include the created and last modified date on the screen and csv export\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom arwhyte@umich.edu Wed Nov  7 10:12:05 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 10:12:05 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 10:12:05 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby flawless.mail.umich.edu () with ESMTP id lA7FC4fX004734;\n\tWed, 7 Nov 2007 10:12:04 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4731D5BF.1E110.13380 ; \n\t 7 Nov 2007 10:12:02 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CD8FF72E2C;\n\tWed,  7 Nov 2007 15:11:57 +0000 (GMT)\nMessage-ID: <200711071507.lA7F7iTN032078@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 477\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 15:11:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9CEE91CF1B\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 15:11:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7F7i7v032080\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 10:07:49 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7F7iTN032078\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 10:07:44 -0500\nDate: Wed, 7 Nov 2007 10:07:44 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: arwhyte@umich.edu\nSubject: [sakai] svn commit: r37936 - sakai/tags\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 10:12:05 2007\nX-DSPAM-Confidence: 0.9830\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37936\n\nAuthor: arwhyte@umich.edu\nDate: 2007-11-07 10:07:43 -0500 (Wed, 07 Nov 2007)\nNew Revision: 37936\n\nAdded:\nsakai/tags/sakai_2-5-0_QA_013/\nLog:\nprep QA_013 tag\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Wed Nov  7 10:03:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 10:03:37 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 10:03:37 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby fan.mail.umich.edu () with ESMTP id lA7F3a3i028119;\n\tWed, 7 Nov 2007 10:03:36 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 4731D3BA.97BFB.588 ; \n\t 7 Nov 2007 10:03:26 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D62A675730;\n\tWed,  7 Nov 2007 15:03:14 +0000 (GMT)\nMessage-ID: <200711071458.lA7EwwEW032003@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 453\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 15:02:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E29CB1DE75\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 15:02:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7Eww0G032005\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 09:58:58 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7EwwEW032003\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 09:58:58 -0500\nDate: Wed, 7 Nov 2007 09:58:58 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37934 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 10:03:37 2007\nX-DSPAM-Confidence: 0.9858\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37934\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-07 09:58:19 -0500 (Wed, 07 Nov 2007)\nNew Revision: 37934\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties\nLog:\nCTools: add SAK 10785 to 2.4.xP build.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Wed Nov  7 10:01:20 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 10:01:20 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 10:01:20 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby panther.mail.umich.edu () with ESMTP id lA7F1JoI023026;\n\tWed, 7 Nov 2007 10:01:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4731D326.E3669.30485 ; \n\t 7 Nov 2007 10:00:57 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 67A3C7570E;\n\tWed,  7 Nov 2007 15:00:53 +0000 (GMT)\nMessage-ID: <200711071456.lA7EuTt3031990@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 883\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 15:00:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1CE5620C4E\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 15:00:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7EuT7f031992\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 09:56:29 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7EuTt3031990\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 09:56:29 -0500\nDate: Wed, 7 Nov 2007 09:56:29 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37933 - ctools/trunk/builds/ctools_2-4/patches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 10:01:20 2007\nX-DSPAM-Confidence: 0.9853\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37933\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-07 09:56:16 -0500 (Wed, 07 Nov 2007)\nNew Revision: 37933\n\nAdded:\nctools/trunk/builds/ctools_2-4/patches/SAK-10785.patch\nLog:\nCTools: add patch for SAK 10785\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Wed Nov  7 09:55:55 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 09:55:55 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 09:55:55 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby godsend.mail.umich.edu () with ESMTP id lA7Etsgm017735;\n\tWed, 7 Nov 2007 09:55:54 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 4731D1DE.60151.11463 ; \n\t 7 Nov 2007 09:55:29 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C522F756C1;\n\tWed,  7 Nov 2007 14:55:23 +0000 (GMT)\nMessage-ID: <200711071451.lA7EpDDg031975@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 153\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 14:55:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E983D1DE75\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 14:55:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7EpDF9031977\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 09:51:13 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7EpDDg031975\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 09:51:13 -0500\nDate: Wed, 7 Nov 2007 09:51:13 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37932 - oncourse/branches/sakai_2-4-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 09:55:55 2007\nX-DSPAM-Confidence: 0.9768\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37932\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-11-07 09:51:12 -0500 (Wed, 07 Nov 2007)\nNew Revision: 37932\n\nModified:\noncourse/branches/sakai_2-4-x/\noncourse/branches/sakai_2-4-x/.externals\nLog:\nUpdated externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Wed Nov  7 09:51:05 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 09:51:05 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 09:51:05 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby score.mail.umich.edu () with ESMTP id lA7Ep4T9032217;\n\tWed, 7 Nov 2007 09:51:04 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 4731D0D2.A33BD.27438 ; \n\t 7 Nov 2007 09:51:01 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 049B8756BA;\n\tWed,  7 Nov 2007 14:50:59 +0000 (GMT)\nMessage-ID: <200711071446.lA7Ekif7031927@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 465\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 14:50:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 125201DE75\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 14:50:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7EkiAu031929\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 09:46:44 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7Ekif7031927\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 09:46:44 -0500\nDate: Wed, 7 Nov 2007 09:46:44 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37931 - assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 09:51:05 2007\nX-DSPAM-Confidence: 0.7006\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37931\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-07 09:46:41 -0500 (Wed, 07 Nov 2007)\nNew Revision: 37931\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nsvn merge -r 37906:37907 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nin-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 37906:37907 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr37907 | zqian@umich.edu | 2007-11-06 20:44:29 -0500 (Tue, 06 Nov 2007) | 3 lines\n\nFix to SAK-11497:Issues with editing assignment submissions that are past the due date\n\nNeed to check the grade type before scaling the grades\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Wed Nov  7 09:50:29 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 09:50:29 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 09:50:29 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby brazil.mail.umich.edu () with ESMTP id lA7EoSii032063;\n\tWed, 7 Nov 2007 09:50:28 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4731D0AD.9555A.31760 ; \n\t 7 Nov 2007 09:50:24 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 13D60756B5;\n\tWed,  7 Nov 2007 14:50:14 +0000 (GMT)\nMessage-ID: <200711071445.lA7EjvXb031915@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 791\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 14:49:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 522581DE75\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 14:49:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7EjvjB031917\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 09:45:58 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7EjvXb031915\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 09:45:57 -0500\nDate: Wed, 7 Nov 2007 09:45:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37930 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 09:50:29 2007\nX-DSPAM-Confidence: 0.9850\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37930\n\nAuthor: zqian@umich.edu\nDate: 2007-11-07 09:45:55 -0500 (Wed, 07 Nov 2007)\nNew Revision: 37930\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerge into post-2-4  fix to SAK-10785: Student should not receive textarea after re-submission when viewing assignment\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Wed Nov  7 09:49:27 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 09:49:26 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 09:49:26 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby mission.mail.umich.edu () with ESMTP id lA7EnQGj007508;\n\tWed, 7 Nov 2007 09:49:26 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4731D063.176E0.10479 ; \n\t 7 Nov 2007 09:49:10 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D635D756A9;\n\tWed,  7 Nov 2007 14:49:06 +0000 (GMT)\nMessage-ID: <200711071444.lA7EiRa3031891@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 317\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 14:48:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 652B11DE75\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 14:48:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7EiSXT031893\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 09:44:33 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7EiRa3031891\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 09:44:27 -0500\nDate: Wed, 7 Nov 2007 09:44:27 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 09:49:26 2007\nX-DSPAM-Confidence: 0.7000\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37928\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-07 09:44:18 -0500 (Wed, 07 Nov 2007)\nNew Revision: 37928\n\nAdded:\nsearch/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/SequenceGeneratorDisabled.java\nRemoved:\nsearch/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/SequenceGeneratorTest.java\nModified:\nsearch/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/transaction/impl/LocalTransactionSequenceImpl.java\nsearch/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/transaction/impl/TransactionSequenceImpl.java\nsearch/branches/sakai_2-5-x/search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/JournalTests.java\nLog:\nsvn merge -r 36523:36524 https://source.sakaiproject.org/svn/search/trunk\nD    search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/SequenceGeneratorTest.java\nA    search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/SequenceGeneratorDisabled.java\nU    search-impl/impl/src/test/org/sakaiproject/search/indexer/impl/test/JournalTests.java\nU    search-impl/impl/src/java/org/sakaiproject/search/transaction/impl/TransactionSequenceImpl.java\nU    search-impl/impl/src/java/org/sakaiproject/search/transaction/impl/LocalTransactionSequenceImpl.java\nin-143-196:~/java/2-5/sakai_2-5-x/search mmmay$ svn log -r 36523:36524 https://source.sakaiproject.org/svn/search/trunk\n------------------------------------------------------------------------\nr36524 | ian@caret.cam.ac.uk | 2007-10-05 13:12:26 -0400 (Fri, 05 Oct 2007) | 3 lines\n\nSequence Generator causes problems with maven unit tests, so diabling it.\n\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Wed Nov  7 09:49:15 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 09:49:15 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 09:49:15 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby brazil.mail.umich.edu () with ESMTP id lA7EnFKs031428;\n\tWed, 7 Nov 2007 09:49:15 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 4731D065.B5F75.23425 ; \n\t 7 Nov 2007 09:49:12 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 71FE0756B2;\n\tWed,  7 Nov 2007 14:49:07 +0000 (GMT)\nMessage-ID: <200711071444.lA7EiTmZ031900@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 632\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 14:48:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8E2011DE75\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 14:48:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7EiTik031902\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 09:44:34 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7EiTmZ031900\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 09:44:29 -0500\nDate: Wed, 7 Nov 2007 09:44:29 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37929 - oncourse/branches/sakai_2-4-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 09:49:15 2007\nX-DSPAM-Confidence: 0.9782\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37929\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-11-07 09:44:28 -0500 (Wed, 07 Nov 2007)\nNew Revision: 37929\n\nModified:\noncourse/branches/sakai_2-4-x/\noncourse/branches/sakai_2-4-x/.externals\nLog:\nUpdated externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Wed Nov  7 09:47:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 09:47:53 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 09:47:53 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby godsend.mail.umich.edu () with ESMTP id lA7ElqVp010205;\n\tWed, 7 Nov 2007 09:47:52 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4731D013.1719C.24937 ; \n\t 7 Nov 2007 09:47:50 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A9F1274FD8;\n\tWed,  7 Nov 2007 14:47:45 +0000 (GMT)\nMessage-ID: <200711071443.lA7EhYtg031879@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 795\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 14:47:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B92951DE75\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 14:47:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7EhY9B031881\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 09:43:34 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7EhYtg031879\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 09:43:34 -0500\nDate: Wed, 7 Nov 2007 09:43:34 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r37927 - gradebook/branches/oncourse_2-4-x/service/hibernate/src/java/org/sakaiproject/tool/gradebook\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 09:47:53 2007\nX-DSPAM-Confidence: 0.9908\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37927\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-07 09:43:32 -0500 (Wed, 07 Nov 2007)\nNew Revision: 37927\n\nModified:\ngradebook/branches/oncourse_2-4-x/service/hibernate/src/java/org/sakaiproject/tool/gradebook/CourseGradeRecord.java\nLog:\nsvn merge -c 37926 https://source.sakaiproject.org/svn/gradebook/trunk\nU    service/hibernate/src/java/org/sakaiproject/tool/gradebook/CourseGradeRecord.java\nsvn log -r 37926:37926 https://source.sakaiproject.org/svn/gradebook/trunk\n------------------------------------------------------------------------\nr37926 | rjlowe@iupui.edu | 2007-11-07 09:39:25 -0500 (Wed, 07 Nov 2007) | 4 lines\n\nSAK-12017\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12017\nGB / \"All Grades\" sort by course grade\nFails when you have a student with a null course grade record - Fixed\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Wed Nov  7 09:43:56 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 09:43:56 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 09:43:56 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby score.mail.umich.edu () with ESMTP id lA7EhsCt027981;\n\tWed, 7 Nov 2007 09:43:54 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4731CF20.63326.703 ; \n\t 7 Nov 2007 09:43:47 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4854B75682;\n\tWed,  7 Nov 2007 14:43:42 +0000 (GMT)\nMessage-ID: <200711071439.lA7EdRTx031846@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 135\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 14:43:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A74201DE75\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 14:43:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7EdR1G031848\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 09:39:27 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7EdRTx031846\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 09:39:27 -0500\nDate: Wed, 7 Nov 2007 09:39:27 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r37926 - gradebook/trunk/service/hibernate/src/java/org/sakaiproject/tool/gradebook\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 09:43:56 2007\nX-DSPAM-Confidence: 0.9858\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37926\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-07 09:39:25 -0500 (Wed, 07 Nov 2007)\nNew Revision: 37926\n\nModified:\ngradebook/trunk/service/hibernate/src/java/org/sakaiproject/tool/gradebook/CourseGradeRecord.java\nLog:\nSAK-12017\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12017\nGB / \"All Grades\" sort by course grade\nFails when you have a student with a null course grade record - Fixed\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Nov  7 08:18:08 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 08:18:08 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 08:18:08 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby faithful.mail.umich.edu () with ESMTP id lA7DI8j6029465;\n\tWed, 7 Nov 2007 08:18:08 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 4731BB0A.AAF9E.11146 ; \n\t 7 Nov 2007 08:18:05 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 074847559F;\n\tWed,  7 Nov 2007 13:17:56 +0000 (GMT)\nMessage-ID: <200711071313.lA7DDpVd031711@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1020\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 13:17:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1D9D81DE02\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 13:17:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7DDpJG031713\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 08:13:51 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7DDpVd031711\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 08:13:51 -0500\nDate: Wed, 7 Nov 2007 08:13:51 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37925 - in content/branches/SAK-12105/content-test: test/src tool/src\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 08:18:08 2007\nX-DSPAM-Confidence: 0.9897\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37925\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-07 08:13:44 -0500 (Wed, 07 Nov 2007)\nNew Revision: 37925\n\nRemoved:\ncontent/branches/SAK-12105/content-test/test/src/main/\ncontent/branches/SAK-12105/content-test/tool/src/main/\nLog:\nSAK-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\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Nov  7 08:16:39 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 08:16:39 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 08:16:39 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby fan.mail.umich.edu () with ESMTP id lA7DGcaP001832;\n\tWed, 7 Nov 2007 08:16:38 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4731BAB0.B7819.13768 ; \n\t 7 Nov 2007 08:16:35 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 37B2B75494;\n\tWed,  7 Nov 2007 13:16:20 +0000 (GMT)\nMessage-ID: <200711071312.lA7DCGgY031698@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 999\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 13:16:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5E1231DE02\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 13:16:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7DCGxR031700\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 08:12:16 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7DCGgY031698\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 08:12:16 -0500\nDate: Wed, 7 Nov 2007 08:12:16 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 08:16:39 2007\nX-DSPAM-Confidence: 0.8498\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37924\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-07 08:11:59 -0500 (Wed, 07 Nov 2007)\nNew Revision: 37924\n\nAdded:\ncontent/branches/SAK-12105/content-test/test/src/java/\ncontent/branches/SAK-12105/content-test/test/src/java/org/\ncontent/branches/SAK-12105/content-test/test/src/resources/\ncontent/branches/SAK-12105/content-test/test/src/resources/testBeans.xml\ncontent/branches/SAK-12105/content-test/tool/src/webapp/\ncontent/branches/SAK-12105/content-test/tool/src/webapp/WEB-INF/\nRemoved:\ncontent/branches/SAK-12105/content-test/test/src/java/org/\ncontent/branches/SAK-12105/content-test/test/src/main/java/\ncontent/branches/SAK-12105/content-test/test/src/main/resources/\ncontent/branches/SAK-12105/content-test/test/src/resources/testBeans.xml\ncontent/branches/SAK-12105/content-test/tool/src/main/webapp/\ncontent/branches/SAK-12105/content-test/tool/src/webapp/WEB-INF/\nModified:\ncontent/branches/SAK-12105/content-test/.classpath\nLog:\nSAK-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\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Nov  7 08:11:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 08:11:43 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 08:11:43 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby casino.mail.umich.edu () with ESMTP id lA7DBgPO008875;\n\tWed, 7 Nov 2007 08:11:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4731B988.6DBB1.5071 ; \n\t 7 Nov 2007 08:11:39 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 66122751F2;\n\tWed,  7 Nov 2007 13:11:33 +0000 (GMT)\nMessage-ID: <200711071307.lA7D7SJN031686@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 162\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 13:11:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4F9801DE02\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 13:11:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7D7Sk7031688\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 08:07:28 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7D7SJN031686\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 08:07:28 -0500\nDate: Wed, 7 Nov 2007 08:07:28 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 08:11:43 2007\nX-DSPAM-Confidence: 0.9863\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37923\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-07 08:07:06 -0500 (Wed, 07 Nov 2007)\nNew Revision: 37923\n\nModified:\ncontent/branches/SAK-12105/content-test/pack/pom.xml\ncontent/branches/SAK-12105/content-test/pom.xml\ncontent/branches/SAK-12105/content-test/test/pom.xml\ncontent/branches/SAK-12105/content-test/test/src/main/java/org/sakaiproject/content/test/CollectionSizeTests.java\ncontent/branches/SAK-12105/content-test/test/src/main/java/org/sakaiproject/content/test/LoadTestContentHostingService.java\ncontent/branches/SAK-12105/content-test/test/src/main/java/org/sakaiproject/content/test/mocks/MockContentCollection.java\ncontent/branches/SAK-12105/content-test/test/src/main/java/org/sakaiproject/content/test/mocks/MockContentEntity.java\ncontent/branches/SAK-12105/content-test/test/src/main/java/org/sakaiproject/content/test/mocks/MockContentResource.java\ncontent/branches/SAK-12105/content-test/tool/pom.xml\nLog:\nSAK-12105: Updates to the maven 2 builds and minor cleanup of java\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Wed Nov  7 08:08:00 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 08:08:00 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 08:08:00 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby godsend.mail.umich.edu () with ESMTP id lA7D7xWT018692;\n\tWed, 7 Nov 2007 08:07:59 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 4731B8AA.5631D.9943 ; \n\t 7 Nov 2007 08:07:57 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 32561751A2;\n\tWed,  7 Nov 2007 13:07:51 +0000 (GMT)\nMessage-ID: <200711071303.lA7D3kdB031674@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 338\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 13:07:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 234CE1BC77\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 13:07:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7D3krX031676\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 08:03:46 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7D3kdB031674\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 08:03:46 -0500\nDate: Wed, 7 Nov 2007 08:03:46 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37922 - oncourse/branches/sakai_2-4-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 08:08:00 2007\nX-DSPAM-Confidence: 0.9789\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37922\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-11-07 08:03:45 -0500 (Wed, 07 Nov 2007)\nNew Revision: 37922\n\nModified:\noncourse/branches/sakai_2-4-x/\noncourse/branches/sakai_2-4-x/.externals\nLog:\nUpdated externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Wed Nov  7 08:04:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 08:04:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 08:04:30 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby flawless.mail.umich.edu () with ESMTP id lA7D4TX3023135;\n\tWed, 7 Nov 2007 08:04:29 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 4731B7D7.9C2A6.16606 ; \n\t 7 Nov 2007 08:04:26 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8EDCB7025A;\n\tWed,  7 Nov 2007 13:04:17 +0000 (GMT)\nMessage-ID: <200711071300.lA7D0CuH031660@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 726\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 13:04:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E3D751DDF7\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 13:04:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7D0CUL031662\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 08:00:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7D0CuH031660\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 08:00:12 -0500\nDate: Wed, 7 Nov 2007 08:00:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 08:04:30 2007\nX-DSPAM-Confidence: 0.9947\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37921\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-11-07 08:00:08 -0500 (Wed, 07 Nov 2007)\nNew Revision: 37921\n\nAdded:\npostem/branches/oncourse_2-4-x/postem-api/src/java/org/sakaiproject/api/app/postem/data/GradebookManager.java\npostem/branches/oncourse_2-4-x/postem-api/src/java/org/sakaiproject/api/app/postem/data/Heading.java\npostem/branches/oncourse_2-4-x/postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGradeData.java\npostem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.hbm.xml\npostem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.java\npostem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.hbm.xml\npostem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.java\nRemoved:\npostem/branches/oncourse_2-4-x/postem-api/src/java/org/sakaiproject/api/app/postem/data/GradebookManager.java\nModified:\npostem/branches/oncourse_2-4-x/.classpath\npostem/branches/oncourse_2-4-x/components/src/webapp/WEB-INF/components.xml\npostem/branches/oncourse_2-4-x/postem-api/src/java/org/sakaiproject/api/app/postem/data/Gradebook.java\npostem/branches/oncourse_2-4-x/postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGrades.java\npostem/branches/oncourse_2-4-x/postem-app/pom.xml\npostem/branches/oncourse_2-4-x/postem-app/project.xml\npostem/branches/oncourse_2-4-x/postem-app/src/java/org/sakaiproject/tool/postem/Column.java\npostem/branches/oncourse_2-4-x/postem-app/src/java/org/sakaiproject/tool/postem/PostemTool.java\npostem/branches/oncourse_2-4-x/postem-app/src/webapp/WEB-INF/components.xml\npostem/branches/oncourse_2-4-x/postem-app/src/webapp/postem/main.jsp\npostem/branches/oncourse_2-4-x/postem-hbm/pom.xml\npostem/branches/oncourse_2-4-x/postem-hbm/project.xml\npostem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.hbm.xml\npostem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.java\npostem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.hbm.xml\npostem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.java\npostem/branches/oncourse_2-4-x/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/TemplateImpl.java\npostem/branches/oncourse_2-4-x/postem-impl/src/java/org/sakaiproject/component/app/postem/GradebookManagerImpl.java\nLog:\nsvn merge -r37683:37772 https://source.sakaiproject.org/svn/postem/trunk\nU    .classpath\nU    components/src/webapp/WEB-INF/components.xml\nU    postem-app/src/java/org/sakaiproject/tool/postem/PostemTool.java\nU    postem-app/src/java/org/sakaiproject/tool/postem/Column.java\nU    postem-app/src/webapp/WEB-INF/components.xml\nU    postem-app/src/webapp/postem/main.jsp\nC    postem-app/pom.xml\nU    postem-impl/src/java/org/sakaiproject/component/app/postem/GradebookManagerImpl.java\nC    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.java\nA    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.java\nU    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.hbm.xml\nC    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.hbm.xml\nA    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.hbm.xml\nA    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.java\nA    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.hbm.xml\nU    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/TemplateImpl.java\nC    postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.java\nU    postem-hbm/pom.xml\nA    postem-api/src/java/org/sakaiproject/api/app/postem/data/Heading.java\nA    postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGradeData.java\nU    postem-api/src/java/org/sakaiproject/api/app/postem/data/GradebookManager.java\nU    postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGrades.java\nU    postem-api/src/java/org/sakaiproject/api/app/postem/data/Gradebook.java\n\n------------------------------------------------------------------------\nr37684 | wagnermr@iupui.edu | 2007-11-01 14:24:54 -0400 (Thu, 01 Nov 2007) | 3 lines\n\nSAK-12095\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12095\nPerformance problems when tool contains large posts\n------------------------------------------------------------------------\nr37689 | wagnermr@iupui.edu | 2007-11-01 15:53:31 -0400 (Thu, 01 Nov 2007) | 4 lines\n\nSAK-12095\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12095\nPerformance problems when tool contains large posts\nfix for uploads with extra white space around username\n\n------------------------------------------------------------------------\nr37772 | wagnermr@iupui.edu | 2007-11-06 09:36:08 -0500 (Tue, 06 Nov 2007) | 4 lines\n\nSAK-12095\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12095\nPerformance problems when tool contains large posts\noptimize individual student view\n------------------------------------------------------------------------\n\n\nsvn merge -r37806:37807 https://source.sakaiproject.org/svn/postem/trunk\nG    postem-app/src/java/org/sakaiproject/tool/postem/PostemTool.java\nG    postem-impl/src/java/org/sakaiproject/component/app/postem/GradebookManagerImpl.java\nG    postem-api/src/java/org/sakaiproject/api/app/postem/data/GradebookManager.java\n\n------------------------------------------------------------------------\nr37807 | wagnermr@iupui.edu | 2007-11-06 15:38:01 -0500 (Tue, 06 Nov 2007) | 4 lines\n\nSAK-12095\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12095\nPerformance problems when tool contains large posts\nproblems with headings on update\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Nov  7 07:57:55 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 07:57:55 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 07:57:55 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby casino.mail.umich.edu () with ESMTP id lA7CvsnO004001;\n\tWed, 7 Nov 2007 07:57:54 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 4731B64D.547.8607 ; \n\t 7 Nov 2007 07:57:51 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BCC6275584;\n\tWed,  7 Nov 2007 12:57:47 +0000 (GMT)\nMessage-ID: <200711071253.lA7CrjlB031648@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 573\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 12:57:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BA5631DC21\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 12:57:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7Crjhr031650\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 07:53:45 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7CrjlB031648\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 07:53:45 -0500\nDate: Wed, 7 Nov 2007 07:53:45 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37920 - content/branches/SAK-12105/content-test\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 07:57:55 2007\nX-DSPAM-Confidence: 0.9837\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37920\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-07 07:53:40 -0500 (Wed, 07 Nov 2007)\nNew Revision: 37920\n\nRemoved:\ncontent/branches/SAK-12105/content-test/main/\nModified:\ncontent/branches/SAK-12105/content-test/.classpath\nLog:\nSAK-12105: Updates to the file structure (finally done I think)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Nov  7 07:56:26 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 07:56:26 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 07:56:26 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby fan.mail.umich.edu () with ESMTP id lA7CuQwC027079;\n\tWed, 7 Nov 2007 07:56:26 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 4731B5E6.D6953.12964 ; \n\t 7 Nov 2007 07:56:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 37DD47557A;\n\tWed,  7 Nov 2007 12:56:04 +0000 (GMT)\nMessage-ID: <200711071251.lA7Cpu01031625@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 387\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 12:55:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CC24F1DC21\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 12:55:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7CpuvI031627\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 07:51:56 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7Cpu01031625\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 07:51:56 -0500\nDate: Wed, 7 Nov 2007 07:51:56 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 07:56:26 2007\nX-DSPAM-Confidence: 0.8485\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37919\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-07 07:51:42 -0500 (Wed, 07 Nov 2007)\nNew Revision: 37919\n\nAdded:\ncontent/branches/SAK-12105/content-test/test/\ncontent/branches/SAK-12105/content-test/test/pom.xml\ncontent/branches/SAK-12105/content-test/test/src/\ncontent/branches/SAK-12105/content-test/test/src/main/\ncontent/branches/SAK-12105/content-test/test/src/main/java/\ncontent/branches/SAK-12105/content-test/test/src/main/java/org/\ncontent/branches/SAK-12105/content-test/test/src/main/resources/\ncontent/branches/SAK-12105/content-test/test/src/main/resources/testBeans.xml\nRemoved:\ncontent/branches/SAK-12105/content-test/main/pom.xml\ncontent/branches/SAK-12105/content-test/main/resources/testBeans.xml\ncontent/branches/SAK-12105/content-test/main/src/java/org/\nLog:\nSAK-12105: Updates to the file structure\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Nov  7 07:53:27 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 07:53:27 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 07:53:27 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby flawless.mail.umich.edu () with ESMTP id lA7CrQIw019367;\n\tWed, 7 Nov 2007 07:53:26 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 4731B541.D930.18077 ; \n\t 7 Nov 2007 07:53:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 41A4E7556D;\n\tWed,  7 Nov 2007 12:53:19 +0000 (GMT)\nMessage-ID: <200711071249.lA7CnFIK031613@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 994\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 12:53:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 62C471DC21\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 12:53:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7CnF5A031615\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 07:49:15 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7CnFIK031613\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 07:49:15 -0500\nDate: Wed, 7 Nov 2007 07:49:15 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37918 - content/branches/SAK-12105/content-test\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 07:53:27 2007\nX-DSPAM-Confidence: 0.8468\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37918\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-07 07:49:10 -0500 (Wed, 07 Nov 2007)\nNew Revision: 37918\n\nAdded:\ncontent/branches/SAK-12105/content-test/main/\nRemoved:\ncontent/branches/SAK-12105/content-test/test/\nLog:\nSAK-12105: Updates to the file structure\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Nov  7 07:52:33 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 07:52:33 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 07:52:33 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby faithful.mail.umich.edu () with ESMTP id lA7CqW02021013;\n\tWed, 7 Nov 2007 07:52:32 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4731B502.98F3F.4925 ; \n\t 7 Nov 2007 07:52:21 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DBD947556C;\n\tWed,  7 Nov 2007 12:52:16 +0000 (GMT)\nMessage-ID: <200711071248.lA7CmE9d031601@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 494\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 12:52:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EC9E11DC21\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 12:52:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7CmEWF031603\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 07:48:14 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7CmE9d031601\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 07:48:14 -0500\nDate: Wed, 7 Nov 2007 07:48:14 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37917 - content/branches/SAK-12105/content-test\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 07:52:33 2007\nX-DSPAM-Confidence: 0.8474\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37917\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-07 07:48:08 -0500 (Wed, 07 Nov 2007)\nNew Revision: 37917\n\nAdded:\ncontent/branches/SAK-12105/content-test/test/\nRemoved:\ncontent/branches/SAK-12105/content-test/impl/\nLog:\nSAK-12105: Updates to the file structure\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Nov  7 07:51:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 07:51:42 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 07:51:42 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby casino.mail.umich.edu () with ESMTP id lA7Cpf6s001756;\n\tWed, 7 Nov 2007 07:51:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 4731B4D8.4D7FF.31862 ; \n\t 7 Nov 2007 07:51:39 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7FCFA75569;\n\tWed,  7 Nov 2007 12:51:30 +0000 (GMT)\nMessage-ID: <200711071247.lA7ClPiH031589@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 389\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 12:51:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C1A551DC21\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 12:51:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7ClPfY031591\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 07:47:25 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7ClPiH031589\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 07:47:25 -0500\nDate: Wed, 7 Nov 2007 07:47:25 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37916 - content/branches/SAK-12105/content-test\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 07:51:42 2007\nX-DSPAM-Confidence: 0.8462\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37916\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-07 07:47:20 -0500 (Wed, 07 Nov 2007)\nNew Revision: 37916\n\nRemoved:\ncontent/branches/SAK-12105/content-test/test/\nModified:\ncontent/branches/SAK-12105/content-test/.classpath\nLog:\nSAK-12105: Updates to the file structure\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Nov  7 07:50:36 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 07:50:36 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 07:50:36 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby godsend.mail.umich.edu () with ESMTP id lA7CoYaH011304;\n\tWed, 7 Nov 2007 07:50:34 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4731B493.4FC03.1413 ; \n\t 7 Nov 2007 07:50:30 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 054937553A;\n\tWed,  7 Nov 2007 12:50:17 +0000 (GMT)\nMessage-ID: <200711071246.lA7CkC6N031566@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 344\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 12:50:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 834761DD21\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 12:50:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7CkCfj031568\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 07:46:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7CkC6N031566\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 07:46:12 -0500\nDate: Wed, 7 Nov 2007 07:46:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 07:50:36 2007\nX-DSPAM-Confidence: 0.8476\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37915\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-07 07:45:55 -0500 (Wed, 07 Nov 2007)\nNew Revision: 37915\n\nAdded:\ncontent/branches/SAK-12105/content-test/impl/src/java/org/sakaiproject/content/test/mocks/\ncontent/branches/SAK-12105/content-test/impl/src/java/org/sakaiproject/content/test/mocks/MockContentCollection.java\ncontent/branches/SAK-12105/content-test/impl/src/java/org/sakaiproject/content/test/mocks/MockContentEntity.java\ncontent/branches/SAK-12105/content-test/impl/src/java/org/sakaiproject/content/test/mocks/MockContentResource.java\nRemoved:\ncontent/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/MockContentCollection.java\ncontent/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/MockContentEntity.java\ncontent/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/MockContentResource.java\nLog:\nSAK-12105: Updates to the file structure\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Nov  7 07:28:52 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 07:28:52 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 07:28:52 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby awakenings.mail.umich.edu () with ESMTP id lA7CSpGZ029282;\n\tWed, 7 Nov 2007 07:28:51 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 4731AF7C.1DA2F.3224 ; \n\t 7 Nov 2007 07:28:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4C0AF70843;\n\tWed,  7 Nov 2007 12:28:40 +0000 (GMT)\nMessage-ID: <200711071211.lA7CB36I031511@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 40\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 12:14:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 33F691DC55\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 12:14:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7CB3ws031513\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 07:11:03 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7CB36I031511\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 07:11:03 -0500\nDate: Wed, 7 Nov 2007 07:11:03 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 07:28:52 2007\nX-DSPAM-Confidence: 0.8482\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37914\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-07 07:10:51 -0500 (Wed, 07 Nov 2007)\nNew Revision: 37914\n\nModified:\ncontent/branches/SAK-12105/content-test/.classpath\ncontent/branches/SAK-12105/content-test/impl/pom.xml\ncontent/branches/SAK-12105/content-test/pack/pom.xml\ncontent/branches/SAK-12105/content-test/pack/src/webapp/WEB-INF/components.xml\ncontent/branches/SAK-12105/content-test/tool/pom.xml\ncontent/branches/SAK-12105/content-test/tool/src/main/webapp/WEB-INF/applicationContext.xml\nLog:\nSAK-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)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Nov  7 06:47:12 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 06:47:12 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 06:47:12 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby awakenings.mail.umich.edu () with ESMTP id lA7Bl9MS019577;\n\tWed, 7 Nov 2007 06:47:09 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4731A5B7.D3013.20309 ; \n\t 7 Nov 2007 06:47:06 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B02C8731EF;\n\tWed,  7 Nov 2007 11:47:02 +0000 (GMT)\nMessage-ID: <200711071142.lA7Bgole031442@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 449\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 11:46:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8CBE91CF3E\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 11:46:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7Bgobv031444\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 06:42:50 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7Bgole031442\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 06:42:50 -0500\nDate: Wed, 7 Nov 2007 06:42:50 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37913 - in content/branches/SAK-12105/content-test/impl: . resources src\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 06:47:12 2007\nX-DSPAM-Confidence: 0.8470\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37913\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-07 06:42:43 -0500 (Wed, 07 Nov 2007)\nNew Revision: 37913\n\nAdded:\ncontent/branches/SAK-12105/content-test/impl/resources/\ncontent/branches/SAK-12105/content-test/impl/resources/testBeans.xml\nRemoved:\ncontent/branches/SAK-12105/content-test/impl/src/testBeans.xml\nLog:\nSAK-12105: Updates to the file structure\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Nov  7 06:44:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 06:44:50 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 06:44:50 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby jacknife.mail.umich.edu () with ESMTP id lA7BinTt019421;\n\tWed, 7 Nov 2007 06:44:49 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 4731A52C.2ADB9.6496 ; \n\t 7 Nov 2007 06:44:47 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 83EA573C47;\n\tWed,  7 Nov 2007 11:44:45 +0000 (GMT)\nMessage-ID: <200711071140.lA7BeZD7031430@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 564\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 11:44:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3331C1CF3E\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 11:44:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7BeZ3S031432\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 06:40:35 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7BeZD7031430\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 06:40:35 -0500\nDate: Wed, 7 Nov 2007 06:40:35 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37912 - in content/branches/SAK-12105/content-test/impl/src: . java\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 06:44:50 2007\nX-DSPAM-Confidence: 0.8436\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37912\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-07 06:40:28 -0500 (Wed, 07 Nov 2007)\nNew Revision: 37912\n\nAdded:\ncontent/branches/SAK-12105/content-test/impl/src/testBeans.xml\nRemoved:\ncontent/branches/SAK-12105/content-test/impl/src/java/testBeans.xml\nLog:\nSAK-12105: Updates to the file structure\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Wed Nov  7 06:39:09 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 07 Nov 2007 06:39:09 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 07 Nov 2007 06:39:09 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby casino.mail.umich.edu () with ESMTP id lA7Bd8mt014593;\n\tWed, 7 Nov 2007 06:39:08 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 4731A3D6.85E14.27751 ; \n\t 7 Nov 2007 06:39:05 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4AB1375494;\n\tWed,  7 Nov 2007 11:39:03 +0000 (GMT)\nMessage-ID: <200711071134.lA7BYmn3031416@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 999\n          for <source@collab.sakaiproject.org>;\n          Wed, 7 Nov 2007 11:38:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7CABF1DD09\n\tfor <source@collab.sakaiproject.org>; Wed,  7 Nov 2007 11:38:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA7BYmac031418\n\tfor <source@collab.sakaiproject.org>; Wed, 7 Nov 2007 06:34:48 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA7BYmn3031416\n\tfor source@collab.sakaiproject.org; Wed, 7 Nov 2007 06:34:48 -0500\nDate: Wed, 7 Nov 2007 06:34:48 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r37911 - content/branches/SAK-12105/content-test/impl/src/java/org/sakaiproject/content/test\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Nov  7 06:39:09 2007\nX-DSPAM-Confidence: 0.9819\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37911\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-11-07 06:34:43 -0500 (Wed, 07 Nov 2007)\nNew Revision: 37911\n\nAdded:\ncontent/branches/SAK-12105/content-test/impl/src/java/org/sakaiproject/content/test/CollectionSizeTests.java\nLog:\nSAK-12105 Tests for ContentHostingService.getCollectionSize\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Tue Nov  6 17:47:14 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 17:47:14 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 17:47:14 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby awakenings.mail.umich.edu () with ESMTP id lA6MlDr1030960;\n\tTue, 6 Nov 2007 17:47:13 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 4730EEEA.B457E.6724 ; \n\t 6 Nov 2007 17:47:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 07F5074CA5;\n\tTue,  6 Nov 2007 22:47:05 +0000 (GMT)\nMessage-ID: <200711062242.lA6Mgvq8029354@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1005\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 22:46:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 61CFD20DA2\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 22:46:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6MgvFT029356\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 17:42:57 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Mgvq8029354\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 17:42:57 -0500\nDate: Tue, 6 Nov 2007 17:42:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r37835 - component/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 17:47:14 2007\nX-DSPAM-Confidence: 0.9757\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37835\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-06 17:42:47 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37835\n\nAdded:\ncomponent/branches/SAK-12134/\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-12134\nCreating branch\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 17:31:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 17:31:53 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 17:31:53 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby panther.mail.umich.edu () with ESMTP id lA6MVqJW022896;\n\tTue, 6 Nov 2007 17:31:52 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4730EB51.E92A6.25642 ; \n\t 6 Nov 2007 17:31:48 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5432B71E77;\n\tTue,  6 Nov 2007 22:31:44 +0000 (GMT)\nMessage-ID: <200711062227.lA6MRcrm029340@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 215\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 22:31:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id ABEDE20D0A\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 22:31:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6MRcCl029342\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 17:27:38 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6MRcrm029340\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 17:27:38 -0500\nDate: Tue, 6 Nov 2007 17:27:38 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37834 - site-manage/branches/sakai_2-5-x/pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 17:31:53 2007\nX-DSPAM-Confidence: 0.7628\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37834\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 17:27:37 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37834\n\nModified:\nsite-manage/branches/sakai_2-5-x/pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle/Messages.properties\nLog:\nsvn merge -r 37373:37374 https://source.sakaiproject.org/svn/site-manage/trunk\nU    pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle/Messages.properties\nin-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\n------------------------------------------------------------------------\nr37373 | joshua.ryan@asu.edu | 2007-10-25 02:49:22 -0400 (Thu, 25 Oct 2007) | 2 lines\n\nSAK-11230 edit the tool title to match page title when page title is edited, but if the page only contains one tool.\n\n------------------------------------------------------------------------\nr37374 | joshua.ryan@asu.edu | 2007-10-25 03:38:11 -0400 (Thu, 25 Oct 2007) | 2 lines\n\nSAK-9858 fixed typo\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 17:28:40 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 17:28:40 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 17:28:40 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby faithful.mail.umich.edu () with ESMTP id lA6MSdM5001349;\n\tTue, 6 Nov 2007 17:28:39 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 4730EA8C.BBD63.19882 ; \n\t 6 Nov 2007 17:28:36 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0FFCF7421B;\n\tTue,  6 Nov 2007 22:28:27 +0000 (GMT)\nMessage-ID: <200711062224.lA6MOC2s029328@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 108\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 22:27:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4793620D0A\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 22:28:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6MOCqg029330\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 17:24:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6MOC2s029328\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 17:24:12 -0500\nDate: Tue, 6 Nov 2007 17:24:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37833 - web/branches/sakai_2-5-x/news-tool/tool/src/java/org/sakaiproject/news/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 17:28:40 2007\nX-DSPAM-Confidence: 0.7005\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37833\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 17:24:11 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37833\n\nModified:\nweb/branches/sakai_2-5-x/news-tool/tool/src/java/org/sakaiproject/news/tool/NewsAction.java\nLog:\nsvn merge -r 37436:37437 https://source.sakaiproject.org/svn/web/trunkU    news-tool/tool/src/java/org/sakaiproject/news/tool/NewsAction.java\nin-143-196:~/java/2-5/sakai_2-5-x/web mmmay$ svn log -r 37436:37437 https://source.sakaiproject.org/svn/web/trunk\n------------------------------------------------------------------------\nr37437 | joshua.ryan@asu.edu | 2007-10-28 03:52:20 -0400 (Sun, 28 Oct 2007) | 2 lines\n\nSAK-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...\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 17:22:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 17:22:43 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 17:22:43 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby brazil.mail.umich.edu () with ESMTP id lA6MMgFX017754;\n\tTue, 6 Nov 2007 17:22:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4730E92C.EC17D.7945 ; \n\t 6 Nov 2007 17:22:39 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6C65D74840;\n\tTue,  6 Nov 2007 22:22:35 +0000 (GMT)\nMessage-ID: <200711062218.lA6MIO65029316@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 760\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 22:22:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 69E8720A80\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 22:22:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6MIOOT029318\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 17:18:24 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6MIO65029316\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 17:18:24 -0500\nDate: Tue, 6 Nov 2007 17:18:24 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37832 - site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/webapp/vm/sitesetup\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 17:22:43 2007\nX-DSPAM-Confidence: 0.7009\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37832\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 17:18:23 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37832\n\nModified:\nsite-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteCourseManual.vm\nLog:\nsvn merge -r 37472:37473 https://source.sakaiproject.org/svn/site-manage/trunk\nU    site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteCourseManual.vm\nin-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\n------------------------------------------------------------------------\nr37473 | zqian@umich.edu | 2007-10-29 14:03:46 -0400 (Mon, 29 Oct 2007) | 1 line\n\nfix to SAK-12074: cannot drop added sections in site setup\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom josrodri@iupui.edu Tue Nov  6 17:22:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 17:22:13 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 17:22:13 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby godsend.mail.umich.edu () with ESMTP id lA6MMCl7032633;\n\tTue, 6 Nov 2007 17:22:12 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4730E90E.207E0.3130 ; \n\t 6 Nov 2007 17:22:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A999A748FC;\n\tTue,  6 Nov 2007 22:22:04 +0000 (GMT)\nMessage-ID: <200711062217.lA6MHxZv029304@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 315\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 22:21:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C4AEE20A80\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 22:21:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6MHxC4029306\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 17:17:59 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6MHxZv029304\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 17:17:59 -0500\nDate: Tue, 6 Nov 2007 17:17:59 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: josrodri@iupui.edu\nSubject: [sakai] svn commit: r37831 - message/trunk/message-impl/impl/src/java/org/sakaiproject/message/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 17:22:13 2007\nX-DSPAM-Confidence: 0.8430\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37831\n\nAuthor: josrodri@iupui.edu\nDate: 2007-11-06 17:17:57 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37831\n\nModified:\nmessage/trunk/message-impl/impl/src/java/org/sakaiproject/message/impl/BaseMessageService.java\nLog:\nSAK-11455: commented out schInv.delete event logging\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom josrodri@iupui.edu Tue Nov  6 17:20:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 17:20:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 17:20:51 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby awakenings.mail.umich.edu () with ESMTP id lA6MKopt015884;\n\tTue, 6 Nov 2007 17:20:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4730E8BB.D6F2C.2337 ; \n\t 6 Nov 2007 17:20:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 36EC5748AA;\n\tTue,  6 Nov 2007 22:20:40 +0000 (GMT)\nMessage-ID: <200711062216.lA6MGbjF029292@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 288\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 22:20:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E612420A80\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 22:20:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6MGbjT029294\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 17:16:37 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6MGbjF029292\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 17:16:37 -0500\nDate: Tue, 6 Nov 2007 17:16:37 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: josrodri@iupui.edu\nSubject: [sakai] svn commit: r37830 - announcement/trunk/announcement-impl/impl/src/java/org/sakaiproject/announcement/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 17:20:51 2007\nX-DSPAM-Confidence: 0.9817\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37830\n\nAuthor: josrodri@iupui.edu\nDate: 2007-11-06 17:16:35 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37830\n\nModified:\nannouncement/trunk/announcement-impl/impl/src/java/org/sakaiproject/announcement/impl/SiteEmailNotificationAnnc.java\nLog:\nSAK-11457: commented out annc.schInv.notify event logging\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 17:11:46 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 17:11:46 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 17:11:46 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby jacknife.mail.umich.edu () with ESMTP id lA6MBcNX013253;\n\tTue, 6 Nov 2007 17:11:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 4730E68F.583E9.30567 ; \n\t 6 Nov 2007 17:11:30 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A225374C1E;\n\tTue,  6 Nov 2007 22:11:25 +0000 (GMT)\nMessage-ID: <200711062207.lA6M7NCu029269@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 944\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 22:11:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3B1FF20A80\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 22:11:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6M7Nnu029271\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 17:07:23 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6M7NCu029269\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 17:07:23 -0500\nDate: Tue, 6 Nov 2007 17:07:23 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37829 - mailtool/branches/sakai_2-5-x/mailtool/src/java/org/sakaiproject/tool/mailtool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 17:11:46 2007\nX-DSPAM-Confidence: 0.7617\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37829\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 17:07:22 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37829\n\nModified:\nmailtool/branches/sakai_2-5-x/mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java\nmailtool/branches/sakai_2-5-x/mailtool/src/java/org/sakaiproject/tool/mailtool/OptionsBean.java\nLog:\nsvn merge -r 37639:37640 https://source.sakaiproject.org/svn/mailtool/trunk\nU    mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java\nU    mailtool/src/java/org/sakaiproject/tool/mailtool/OptionsBean.java\nin-143-196:~/java/2-5/sakai_2-5-x/mailtool mmmay$ svn log -r 37639:37640 https://source.sakaiproject.org/svn/mailtool/trunk\n------------------------------------------------------------------------\nr37640 | kimsooil@bu.edu | 2007-10-30 14:02:55 -0400 (Tue, 30 Oct 2007) | 2 lines\n\nFix SAK-11067 (more info - sender & recipient(s))\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 17:10:21 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 17:10:21 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 17:10:21 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby flawless.mail.umich.edu () with ESMTP id lA6MAK52025137;\n\tTue, 6 Nov 2007 17:10:20 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4730E646.35C9A.15720 ; \n\t 6 Nov 2007 17:10:17 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E1886748FC;\n\tTue,  6 Nov 2007 22:10:12 +0000 (GMT)\nMessage-ID: <200711062206.lA6M6BR2029257@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 449\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 22:10:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E652B20A80\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 22:10:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6M6BCT029259\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 17:06:11 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6M6BR2029257\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 17:06:11 -0500\nDate: Tue, 6 Nov 2007 17:06:11 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37828 - mailtool/branches/sakai_2-5-x/mailtool/src/java/org/sakaiproject/tool/mailtool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 17:10:21 2007\nX-DSPAM-Confidence: 0.7612\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37828\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 17:06:10 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37828\n\nModified:\nmailtool/branches/sakai_2-5-x/mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java\nmailtool/branches/sakai_2-5-x/mailtool/src/java/org/sakaiproject/tool/mailtool/OptionsBean.java\nLog:\nsvn merge -r 37634:37635 https://source.sakaiproject.org/svn/mailtool/trunk\nU    mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java\nU    mailtool/src/java/org/sakaiproject/tool/mailtool/OptionsBean.java\nin-143-196:~/java/2-5/sakai_2-5-x/mailtool mmmay$ svn log -r 37634:37635 https://source.sakaiproject.org/svn/mailtool/trunk\n------------------------------------------------------------------------\nr37635 | kimsooil@bu.edu | 2007-10-30 12:56:52 -0400 (Tue, 30 Oct 2007) | 2 lines\n\nFix SAK-11067\n(two log events-mailsent&optionUpdated will posted)\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 17:08:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 17:08:42 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 17:08:42 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby score.mail.umich.edu () with ESMTP id lA6M8fo6018891;\n\tTue, 6 Nov 2007 17:08:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4730E5E3.CF9A0.6197 ; \n\t 6 Nov 2007 17:08:38 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0D019748FC;\n\tTue,  6 Nov 2007 22:08:34 +0000 (GMT)\nMessage-ID: <200711062204.lA6M4MAl029245@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 976\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 22:08:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2649620A80\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 22:08:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6M4MLq029247\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 17:04:22 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6M4MAl029245\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 17:04:22 -0500\nDate: Tue, 6 Nov 2007 17:04:22 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37827 - mailtool/branches/sakai_2-5-x/mailtool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 17:08:42 2007\nX-DSPAM-Confidence: 0.7615\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37827\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 17:04:21 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37827\n\nModified:\nmailtool/branches/sakai_2-5-x/mailtool/pom.xml\nLog:\nsvn merge -r 37501:37502 https://source.sakaiproject.org/svn/mailtool/trunk\nU    mailtool/pom.xml\nin-143-196:~/java/2-5/sakai_2-5-x/mailtool mmmay$ svn log -r 37501:37502 https://source.sakaiproject.org/svn/mailtool/trunk\n------------------------------------------------------------------------\nr37502 | kimsooil@bu.edu | 2007-10-29 16:55:37 -0400 (Mon, 29 Oct 2007) | 1 line\n\nfix of SAK-11552\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 17:03:23 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 17:03:23 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 17:03:23 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby casino.mail.umich.edu () with ESMTP id lA6M3MuW011462;\n\tTue, 6 Nov 2007 17:03:22 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 4730E4A2.21A7D.18580 ; \n\t 6 Nov 2007 17:03:17 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 32AA97421B;\n\tTue,  6 Nov 2007 22:03:11 +0000 (GMT)\nMessage-ID: <200711062159.lA6Lx8Ps029219@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 641\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 22:02:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 14DDF1DC07\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 22:02:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6Lx8sO029221\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 16:59:08 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Lx8Ps029219\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 16:59:08 -0500\nDate: Tue, 6 Nov 2007 16:59:08 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37826 - memory/branches/sakai_2-5-x/memory-impl/impl/src/java/org/sakaiproject/memory/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 17:03:23 2007\nX-DSPAM-Confidence: 0.7610\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37826\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 16:59:07 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37826\n\nModified:\nmemory/branches/sakai_2-5-x/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MultiRefCacheImpl.java\nLog:\nsvn merge -r 37765:37766 https://source.sakaiproject.org/svn/memory/trunk\nU    memory-impl/impl/src/java/org/sakaiproject/memory/impl/MultiRefCacheImpl.java\nin-143-196:~/java/2-5/sakai_2-5-x/memory mmmay$ svn log -r 37765:37766 https://source.sakaiproject.org/svn/memory/trunk\n------------------------------------------------------------------------\nr37766 | ian@caret.cam.ac.uk | 2007-11-05 19:31:18 -0500 (Mon, 05 Nov 2007) | 8 lines\n\nhttp://jira.sakaiproject.org/jira/browse/SAK-12116\nFixed\n\nConverted back to Vectors as we know this is safe and works.\nWe need to look at this from a concurrent point of view asap. In the re-writen versions I used a CHM.\n\n\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Tue Nov  6 16:52:48 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 16:52:48 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 16:52:48 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby sleepers.mail.umich.edu () with ESMTP id lA6Lqlvn029883;\n\tTue, 6 Nov 2007 16:52:47 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4730E22A.4A905.11809 ; \n\t 6 Nov 2007 16:52:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9B8EE73203;\n\tTue,  6 Nov 2007 21:52:44 +0000 (GMT)\nMessage-ID: <200711062148.lA6LmWhF029184@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 515\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 21:52:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5080A1DC07\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 21:52:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6LmWUb029186\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 16:48:32 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6LmWhF029184\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 16:48:32 -0500\nDate: Tue, 6 Nov 2007 16:48:32 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37825 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 16:52:48 2007\nX-DSPAM-Confidence: 0.9847\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37825\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-06 16:48:30 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37825\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties\nLog:\nCTools: update 2.4.xP build revisions number.  Add CT 125 patch.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Tue Nov  6 16:51:24 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 16:51:24 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 16:51:24 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby fan.mail.umich.edu () with ESMTP id lA6LpNZt026730;\n\tTue, 6 Nov 2007 16:51:23 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4730E1D6.2ECD1.7428 ; \n\t 6 Nov 2007 16:51:21 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6B23F74B78;\n\tTue,  6 Nov 2007 21:51:20 +0000 (GMT)\nMessage-ID: <200711062147.lA6Ll3BW029171@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 748\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 21:50:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E2B0A1DC07\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 21:50:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6Ll3d7029173\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 16:47:03 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Ll3BW029171\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 16:47:03 -0500\nDate: Tue, 6 Nov 2007 16:47:03 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37824 - ctools/trunk/builds/ctools_2-4/patches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 16:51:24 2007\nX-DSPAM-Confidence: 0.9871\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37824\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-06 16:47:01 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37824\n\nAdded:\nctools/trunk/builds/ctools_2-4/patches/CT-125.patch\nModified:\nctools/trunk/builds/ctools_2-4/patches/SAK-11215.patch\nLog:\nCTools: add patch for CT-125.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom josrodri@iupui.edu Tue Nov  6 16:44:20 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 16:44:20 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 16:44:20 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby godsend.mail.umich.edu () with ESMTP id lA6LiJhJ011306;\n\tTue, 6 Nov 2007 16:44:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4730E02D.2CF37.25810 ; \n\t 6 Nov 2007 16:44:16 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DE4B674C10;\n\tTue,  6 Nov 2007 21:44:12 +0000 (GMT)\nMessage-ID: <200711062140.lA6Le6HE029158@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 704\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 21:43:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CEC1B20A64\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 21:43:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6Le6dO029160\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 16:40:06 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Le6HE029158\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 16:40:06 -0500\nDate: Tue, 6 Nov 2007 16:40:06 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: josrodri@iupui.edu\nSubject: [sakai] svn commit: r37823 - gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 16:44:20 2007\nX-DSPAM-Confidence: 0.6936\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37823\n\nAuthor: josrodri@iupui.edu\nDate: 2007-11-06 16:40:05 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37823\n\nModified:\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/SpreadsheetUploadBean.java\nLog:\nSAK-12133: spreadsheet item add, if item already exists but no points possible is in spreadsheet for that item, just keep current value\n\nSAK-9762: added an init() method to do code currently processed in constructor. Kept an empty constructor for easy backing out.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Tue Nov  6 16:33:20 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 16:33:20 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 16:33:20 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby flawless.mail.umich.edu () with ESMTP id lA6LXJbn003510;\n\tTue, 6 Nov 2007 16:33:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 4730DD98.27C9A.8946 ; \n\t 6 Nov 2007 16:33:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4E2E47492E;\n\tTue,  6 Nov 2007 21:33:13 +0000 (GMT)\nMessage-ID: <200711062129.lA6LT8Md029144@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 961\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 21:33:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EDC271DC0B\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 21:32:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6LT83u029146\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 16:29:08 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6LT8Md029144\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 16:29:08 -0500\nDate: Tue, 6 Nov 2007 16:29:08 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37822 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 16:33:20 2007\nX-DSPAM-Confidence: 0.8480\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37822\n\nAuthor: zqian@umich.edu\nDate: 2007-11-06 16:29:05 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37822\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerge the fix to SAK-12047 into post-2-4 branch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom arwhyte@umich.edu Tue Nov  6 16:24:04 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 16:24:04 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 16:24:04 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby flawless.mail.umich.edu () with ESMTP id lA6LO38f029646;\n\tTue, 6 Nov 2007 16:24:03 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 4730DB65.40DFA.9945 ; \n\t 6 Nov 2007 16:23:55 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0FB9D74868;\n\tTue,  6 Nov 2007 21:23:50 +0000 (GMT)\nMessage-ID: <200711062119.lA6LJYtU029107@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 539\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 21:23:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A80591DC2B\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 21:23:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6LJYqL029109\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 16:19:34 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6LJYtU029107\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 16:19:34 -0500\nDate: Tue, 6 Nov 2007 16:19:34 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: arwhyte@umich.edu\nSubject: [sakai] svn commit: r37821 - sakai/tags/sakai_2-5-0_QA_012\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 16:24:04 2007\nX-DSPAM-Confidence: 0.9812\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37821\n\nAuthor: arwhyte@umich.edu\nDate: 2007-11-06 16:19:32 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37821\n\nModified:\nsakai/tags/sakai_2-5-0_QA_012/\nsakai/tags/sakai_2-5-0_QA_012/.externals\nLog:\nUpdated externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Tue Nov  6 16:22:26 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 16:22:26 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 16:22:26 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby panther.mail.umich.edu () with ESMTP id lA6LMOCA008252;\n\tTue, 6 Nov 2007 16:22:24 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 4730DB05.5D5E3.14462 ; \n\t 6 Nov 2007 16:22:19 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DB22174151;\n\tTue,  6 Nov 2007 21:22:11 +0000 (GMT)\nMessage-ID: <200711062117.lA6LHtU1029095@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 569\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 21:21:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 54B991DC0F\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 21:21:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6LHuse029097\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 16:17:56 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6LHtU1029095\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 16:17:55 -0500\nDate: Tue, 6 Nov 2007 16:17:55 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r37820 - gradebook/trunk/app/ui/src/webapp/js\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 16:22:26 2007\nX-DSPAM-Confidence: 0.9801\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37820\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-06 16:17:54 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37820\n\nModified:\ngradebook/trunk/app/ui/src/webapp/js/spreadsheetUI.js\nLog:\nSAK-11588 - All Grades page crashes IE when large number of students/gb items viewed at once\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Tue Nov  6 16:06:00 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 16:06:00 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 16:06:00 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby fan.mail.umich.edu () with ESMTP id lA6L5wb0031497;\n\tTue, 6 Nov 2007 16:05:59 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 4730D731.35C0C.17360 ; \n\t 6 Nov 2007 16:05:56 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 11EE050E21;\n\tTue,  6 Nov 2007 21:05:54 +0000 (GMT)\nMessage-ID: <200711062101.lA6L1h6r029056@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 752\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 21:05:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 47DE620A70\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 21:05:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6L1ht4029058\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 16:01:43 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6L1h6r029056\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 16:01:43 -0500\nDate: Tue, 6 Nov 2007 16:01:43 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37819 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 16:06:00 2007\nX-DSPAM-Confidence: 0.9847\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37819\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-06 16:01:41 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37819\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties\nLog:\nCTools: update assignments post 2.4 revision.  Update build revision number.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom arwhyte@umich.edu Tue Nov  6 16:04:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 16:04:37 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 16:04:37 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby casino.mail.umich.edu () with ESMTP id lA6L4bTZ006849;\n\tTue, 6 Nov 2007 16:04:37 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 4730D6D4.CA6F4.31438 ; \n\t 6 Nov 2007 16:04:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 34C9574AE5;\n\tTue,  6 Nov 2007 21:04:19 +0000 (GMT)\nMessage-ID: <200711062100.lA6L00fB029030@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 753\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 21:03:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E0BA320A70\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 21:03:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6L00JF029032\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 16:00:00 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6L00fB029030\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 16:00:00 -0500\nDate: Tue, 6 Nov 2007 16:00:00 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: arwhyte@umich.edu\nSubject: [sakai] svn commit: r37818 - sakai/tags/sakai_2-5-0_QA_012\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 16:04:37 2007\nX-DSPAM-Confidence: 0.9868\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37818\n\nAuthor: arwhyte@umich.edu\nDate: 2007-11-06 15:59:59 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37818\n\nRemoved:\nsakai/tags/sakai_2-5-0_QA_012/sakai_2-5-0_QA_011/\nLog:\ndelete directory\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom arwhyte@umich.edu Tue Nov  6 16:01:59 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 16:01:59 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 16:01:59 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby jacknife.mail.umich.edu () with ESMTP id lA6L1wGW005092;\n\tTue, 6 Nov 2007 16:01:58 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 4730D640.587EF.7952 ; \n\t 6 Nov 2007 16:01:55 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E727A74BE4;\n\tTue,  6 Nov 2007 21:01:52 +0000 (GMT)\nMessage-ID: <200711062057.lA6KvWRD029013@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 909\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 21:01:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8343520A64\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 21:01:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6KvW52029015\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 15:57:32 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6KvWRD029013\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 15:57:32 -0500\nDate: Tue, 6 Nov 2007 15:57:32 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: arwhyte@umich.edu\nSubject: [sakai] svn commit: r37817 - in sakai/tags/sakai_2-5-0_QA_012: pack-demo sakai_2-5-0_QA_011/pack-demo\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 16:01:59 2007\nX-DSPAM-Confidence: 0.9828\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37817\n\nAuthor: arwhyte@umich.edu\nDate: 2007-11-06 15:57:31 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37817\n\nAdded:\nsakai/tags/sakai_2-5-0_QA_012/pack-demo/pom.xml\nRemoved:\nsakai/tags/sakai_2-5-0_QA_012/sakai_2-5-0_QA_011/pack-demo/pom.xml\nLog:\nmove contents\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom arwhyte@umich.edu Tue Nov  6 16:01:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 16:01:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 16:01:51 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby faithful.mail.umich.edu () with ESMTP id lA6L1otM016167;\n\tTue, 6 Nov 2007 16:01:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4730D638.B8F0.15953 ; \n\t 6 Nov 2007 16:01:47 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 66AAE748D7;\n\tTue,  6 Nov 2007 21:01:44 +0000 (GMT)\nMessage-ID: <200711062057.lA6KvN1k029000@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 636\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 21:01:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 896E020A64\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 21:01:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6KvNsG029002\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 15:57:23 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6KvN1k029000\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 15:57:23 -0500\nDate: Tue, 6 Nov 2007 15:57:23 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: arwhyte@umich.edu\nSubject: [sakai] svn commit: r37816 - sakai/tags/sakai_2-5-0_QA_012\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 16:01:51 2007\nX-DSPAM-Confidence: 0.9832\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37816\n\nAuthor: arwhyte@umich.edu\nDate: 2007-11-06 15:57:22 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37816\n\nAdded:\nsakai/tags/sakai_2-5-0_QA_012/pack-demo/\nLog:\nmake dir\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom arwhyte@umich.edu Tue Nov  6 15:59:14 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 15:59:14 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 15:59:14 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby panther.mail.umich.edu () with ESMTP id lA6KxEM7023483;\n\tTue, 6 Nov 2007 15:59:14 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 4730D59C.EF0.1843 ; \n\t 6 Nov 2007 15:59:11 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6BEBC74BE7;\n\tTue,  6 Nov 2007 20:59:07 +0000 (GMT)\nMessage-ID: <200711062055.lA6Kt09d028986@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 583\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 20:58:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 11C401340D\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 20:58:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6Kt0HY028988\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 15:55:00 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Kt09d028986\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 15:55:00 -0500\nDate: Tue, 6 Nov 2007 15:55:00 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: arwhyte@umich.edu\nSubject: [sakai] svn commit: r37815 - in sakai/tags/sakai_2-5-0_QA_012: . sakai_2-5-0_QA_011\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 15:59:14 2007\nX-DSPAM-Confidence: 0.9843\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37815\n\nAuthor: arwhyte@umich.edu\nDate: 2007-11-06 15:54:59 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37815\n\nAdded:\nsakai/tags/sakai_2-5-0_QA_012/ECLv1.txt\nRemoved:\nsakai/tags/sakai_2-5-0_QA_012/sakai_2-5-0_QA_011/ECLv1.txt\nLog:\nmove contents\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Tue Nov  6 15:59:12 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 15:59:12 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 15:59:12 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby brazil.mail.umich.edu () with ESMTP id lA6KxAHZ001866;\n\tTue, 6 Nov 2007 15:59:10 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 4730D597.7F391.1712 ; \n\t 6 Nov 2007 15:59:06 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4EB2074BE6;\n\tTue,  6 Nov 2007 20:59:03 +0000 (GMT)\nMessage-ID: <200711062054.lA6Ksl6m028973@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 482\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 20:58:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8552E1340D\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 20:58:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6KslVH028975\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 15:54:47 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Ksl6m028973\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 15:54:47 -0500\nDate: Tue, 6 Nov 2007 15:54:47 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37814 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 15:59:12 2007\nX-DSPAM-Confidence: 0.9844\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37814\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-06 15:54:43 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37814\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties\nLog:\nCTools: update build revision number.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Tue Nov  6 15:58:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 15:58:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 15:58:19 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby panther.mail.umich.edu () with ESMTP id lA6KwIjN022418;\n\tTue, 6 Nov 2007 15:58:18 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 4730D563.14669.32389 ; \n\t 6 Nov 2007 15:58:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B3E7C74AE5;\n\tTue,  6 Nov 2007 20:58:04 +0000 (GMT)\nMessage-ID: <200711062053.lA6KrxtL028961@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 885\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 20:57:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 220D61340D\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 20:57:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6KrxOB028963\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 15:53:59 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6KrxtL028961\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 15:53:59 -0500\nDate: Tue, 6 Nov 2007 15:53:59 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37813 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 15:58:19 2007\nX-DSPAM-Confidence: 0.8474\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37813\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-06 15:53:55 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37813\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties\nLog:\nCTools: update for new assignement and site-manage fixes.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom arwhyte@umich.edu Tue Nov  6 15:58:05 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 15:58:05 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 15:58:05 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby brazil.mail.umich.edu () with ESMTP id lA6Kw32Z000367;\n\tTue, 6 Nov 2007 15:58:03 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4730D554.5D116.1668 ; \n\t 6 Nov 2007 15:58:00 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7B64D748D6;\n\tTue,  6 Nov 2007 20:57:55 +0000 (GMT)\nMessage-ID: <200711062053.lA6Krqwj028949@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 131\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 20:57:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 243E01340D\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 20:57:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6Krqgp028951\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 15:53:53 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Krqwj028949\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 15:53:52 -0500\nDate: Tue, 6 Nov 2007 15:53:52 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: arwhyte@umich.edu\nSubject: [sakai] svn commit: r37812 - in sakai/tags/sakai_2-5-0_QA_012: . sakai_2-5-0_QA_011\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 15:58:05 2007\nX-DSPAM-Confidence: 0.8470\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37812\n\nAuthor: arwhyte@umich.edu\nDate: 2007-11-06 15:53:51 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37812\n\nAdded:\nsakai/tags/sakai_2-5-0_QA_012/pom.xml\nRemoved:\nsakai/tags/sakai_2-5-0_QA_012/sakai_2-5-0_QA_011/pom.xml\nLog:\nmove contents\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom arwhyte@umich.edu Tue Nov  6 15:56:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 15:56:50 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 15:56:50 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby casino.mail.umich.edu () with ESMTP id lA6KumWK001911;\n\tTue, 6 Nov 2007 15:56:48 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4730D505.2E9A9.17392 ; \n\t 6 Nov 2007 15:56:41 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BF7DA74BDC;\n\tTue,  6 Nov 2007 20:56:36 +0000 (GMT)\nMessage-ID: <200711062052.lA6KqY6n028936@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 293\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 20:56:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 526E01340D\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 20:56:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6KqYqq028938\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 15:52:34 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6KqY6n028936\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 15:52:34 -0500\nDate: Tue, 6 Nov 2007 15:52:34 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: arwhyte@umich.edu\nSubject: [sakai] svn commit: r37811 - in sakai/tags/sakai_2-5-0_QA_012: . sakai_2-5-0_QA_011\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 15:56:50 2007\nX-DSPAM-Confidence: 0.9843\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37811\n\nAuthor: arwhyte@umich.edu\nDate: 2007-11-06 15:52:33 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37811\n\nAdded:\nsakai/tags/sakai_2-5-0_QA_012/.svnignore\nRemoved:\nsakai/tags/sakai_2-5-0_QA_012/sakai_2-5-0_QA_011/.svnignore\nLog:\nmove contents\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom arwhyte@umich.edu Tue Nov  6 15:55:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 15:55:53 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 15:55:53 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby score.mail.umich.edu () with ESMTP id lA6KtqGD005103;\n\tTue, 6 Nov 2007 15:55:52 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4730D4CA.6063B.14789 ; \n\t 6 Nov 2007 15:55:43 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9D69174BCB;\n\tTue,  6 Nov 2007 20:55:35 +0000 (GMT)\nMessage-ID: <200711062051.lA6KpPLA028923@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 525\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 20:55:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 906FB1340D\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 20:55:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6KpPYx028925\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 15:51:25 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6KpPLA028923\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 15:51:25 -0500\nDate: Tue, 6 Nov 2007 15:51:25 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: arwhyte@umich.edu\nSubject: [sakai] svn commit: r37810 - in sakai/tags/sakai_2-5-0_QA_012: . sakai_2-5-0_QA_011\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 15:55:53 2007\nX-DSPAM-Confidence: 0.9848\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37810\n\nAuthor: arwhyte@umich.edu\nDate: 2007-11-06 15:51:23 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37810\n\nAdded:\nsakai/tags/sakai_2-5-0_QA_012/.externals\nRemoved:\nsakai/tags/sakai_2-5-0_QA_012/sakai_2-5-0_QA_011/.externals\nLog:\nmove contents\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom arwhyte@umich.edu Tue Nov  6 15:51:57 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 15:51:57 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 15:51:57 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby fan.mail.umich.edu () with ESMTP id lA6KpuZe023230;\n\tTue, 6 Nov 2007 15:51:56 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 4730D3E2.ADFAB.24233 ; \n\t 6 Nov 2007 15:51:51 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 606C374B97;\n\tTue,  6 Nov 2007 20:51:48 +0000 (GMT)\nMessage-ID: <200711062047.lA6KlV53028910@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 693\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 20:51:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D39A01340D\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 20:51:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6KlVbb028912\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 15:47:31 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6KlV53028910\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 15:47:31 -0500\nDate: Tue, 6 Nov 2007 15:47:31 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: arwhyte@umich.edu\nSubject: [sakai] svn commit: r37809 - sakai/tags/sakai_2-5-0_QA_012\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 15:51:57 2007\nX-DSPAM-Confidence: 0.9824\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37809\n\nAuthor: arwhyte@umich.edu\nDate: 2007-11-06 15:47:30 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37809\n\nAdded:\nsakai/tags/sakai_2-5-0_QA_012/sakai_2-5-0_QA_011/\nLog:\ncopy contents\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom arwhyte@umich.edu Tue Nov  6 15:49:36 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 15:49:36 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 15:49:36 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby flawless.mail.umich.edu () with ESMTP id lA6KnZ3e008521;\n\tTue, 6 Nov 2007 15:49:35 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 4730D356.1D6D5.9442 ; \n\t 6 Nov 2007 15:49:31 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 22AEE74BD4;\n\tTue,  6 Nov 2007 20:49:28 +0000 (GMT)\nMessage-ID: <200711062045.lA6Kj9YJ028897@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 754\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 20:49:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 944691340D\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 20:48:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6Kj91a028899\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 15:45:09 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Kj9YJ028897\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 15:45:09 -0500\nDate: Tue, 6 Nov 2007 15:45:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to arwhyte@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: arwhyte@umich.edu\nSubject: [sakai] svn commit: r37808 - sakai/tags\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 15:49:36 2007\nX-DSPAM-Confidence: 0.8475\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37808\n\nAuthor: arwhyte@umich.edu\nDate: 2007-11-06 15:45:08 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37808\n\nAdded:\nsakai/tags/sakai_2-5-0_QA_012/\nLog:\ncreate 2.5.0_QA_012 folder\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Tue Nov  6 15:42:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 15:42:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 15:42:19 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby awakenings.mail.umich.edu () with ESMTP id lA6KgJTn024801;\n\tTue, 6 Nov 2007 15:42:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4730D1A1.3A825.20643 ; \n\t 6 Nov 2007 15:42:14 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0141E74BA3;\n\tTue,  6 Nov 2007 20:42:09 +0000 (GMT)\nMessage-ID: <200711062038.lA6Kc3Mq028858@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 327\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 20:41:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 739171340D\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 20:41:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6Kc3p0028860\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 15:38:03 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Kc3Mq028858\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 15:38:03 -0500\nDate: Tue, 6 Nov 2007 15:38:03 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 15:42:19 2007\nX-DSPAM-Confidence: 0.9853\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37807\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-11-06 15:38:01 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37807\n\nModified:\npostem/trunk/postem-api/src/java/org/sakaiproject/api/app/postem/data/GradebookManager.java\npostem/trunk/postem-app/src/java/org/sakaiproject/tool/postem/PostemTool.java\npostem/trunk/postem-impl/src/java/org/sakaiproject/component/app/postem/GradebookManagerImpl.java\nLog:\nSAK-12095\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12095\nPerformance problems when tool contains large posts\nproblems with headings on update\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Tue Nov  6 15:34:26 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 15:34:26 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 15:34:26 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby awakenings.mail.umich.edu () with ESMTP id lA6KYPbB019055;\n\tTue, 6 Nov 2007 15:34:25 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 4730CFC9.690EA.3313 ; \n\t 6 Nov 2007 15:34:21 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C0B6174B0F;\n\tTue,  6 Nov 2007 20:34:17 +0000 (GMT)\nMessage-ID: <200711062030.lA6KUBAK028826@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 278\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 20:34:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A0C6F1DC02\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 20:34:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6KUB0g028828\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 15:30:11 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6KUBAK028826\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 15:30:11 -0500\nDate: Tue, 6 Nov 2007 15:30:11 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37806 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 15:34:26 2007\nX-DSPAM-Confidence: 0.9855\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37806\n\nAuthor: zqian@umich.edu\nDate: 2007-11-06 15:30:07 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37806\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerge the fix to SAK-12047 into post-2-4 branch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Tue Nov  6 15:18:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 15:18:13 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 15:18:13 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby sleepers.mail.umich.edu () with ESMTP id lA6KIBuR023836;\n\tTue, 6 Nov 2007 15:18:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4730CBF6.8F136.15687 ; \n\t 6 Nov 2007 15:18:03 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 90E5E74AA9;\n\tTue,  6 Nov 2007 20:17:59 +0000 (GMT)\nMessage-ID: <200711062013.lA6KDuBE028809@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1023\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 20:17:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C20551DC2B\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 20:17:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6KDuLK028811\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 15:13:56 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6KDuBE028809\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 15:13:56 -0500\nDate: Tue, 6 Nov 2007 15:13:56 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 15:18:13 2007\nX-DSPAM-Confidence: 0.8486\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37805\n\nAuthor: zqian@umich.edu\nDate: 2007-11-06 15:13:47 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37805\n\nModified:\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerge the fix to SAK-11215 into post-2-4 branch: svn merge -r34224:34225 https://source.sakaiproject.org/svn/assignment/trunk/\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 14:54:55 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 14:54:55 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 14:54:55 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby faithful.mail.umich.edu () with ESMTP id lA6JssfQ008036;\n\tTue, 6 Nov 2007 14:54:54 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4730C686.A7683.22677 ; \n\t 6 Nov 2007 14:54:50 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id AD36174A55;\n\tTue,  6 Nov 2007 19:35:43 +0000 (GMT)\nMessage-ID: <200711061925.lA6JPn12028590@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 426\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 19:34:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9712B20657\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 19:29:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6JPnTP028592\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 14:25:49 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6JPn12028590\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 14:25:49 -0500\nDate: Tue, 6 Nov 2007 14:25:49 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37804 - content-review/branches/sakai_2-5-x/content-review-api/model/src/java/org/sakaiproject/contentreview/model\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 14:54:55 2007\nX-DSPAM-Confidence: 0.7003\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37804\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 14:25:48 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37804\n\nModified:\ncontent-review/branches/sakai_2-5-x/content-review-api/model/src/java/org/sakaiproject/contentreview/model/ContentReviewItem.java\nLog:\nsvn merge -r 37783:37784 https://source.sakaiproject.org/svn/content-review/trunk\nU    content-review-api/model/src/java/org/sakaiproject/contentreview/model/ContentReviewItem.java\nin-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\n------------------------------------------------------------------------\nr37784 | david.horwitz@uct.ac.za | 2007-11-06 11:11:51 -0500 (Tue, 06 Nov 2007) | 1 line\n\nSAK-12128 Added method to class for retry time\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom josrodri@iupui.edu Tue Nov  6 14:08:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 14:08:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 14:08:02 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby flawless.mail.umich.edu () with ESMTP id lA6J82Kb006261;\n\tTue, 6 Nov 2007 14:08:02 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 4730BB84.E8289.16696 ; \n\t 6 Nov 2007 14:07:52 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DF43C7114A;\n\tTue,  6 Nov 2007 19:06:00 +0000 (GMT)\nMessage-ID: <200711061903.lA6J3Gjn028548@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 144\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 19:05:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9193120626\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 19:07:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6J3Gw3028550\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 14:03:16 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6J3Gjn028548\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 14:03:16 -0500\nDate: Tue, 6 Nov 2007 14:03:16 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: josrodri@iupui.edu\nSubject: [sakai] svn commit: r37803 - in syllabus/trunk/syllabus-app/src: java/org/sakaiproject/tool/syllabus webapp/syllabus\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 14:08:02 2007\nX-DSPAM-Confidence: 0.9815\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37803\n\nAuthor: josrodri@iupui.edu\nDate: 2007-11-06 14:03:15 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37803\n\nModified:\nsyllabus/trunk/syllabus-app/src/java/org/sakaiproject/tool/syllabus/SyllabusTool.java\nsyllabus/trunk/syllabus-app/src/webapp/syllabus/main.jsp\nLog:\nSAK-10333, SAK-10587, SAK-11221: refactored how print friendly url is determined.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Tue Nov  6 14:02:58 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 14:02:58 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 14:02:58 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby casino.mail.umich.edu () with ESMTP id lA6J2vAJ018636;\n\tTue, 6 Nov 2007 14:02:57 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4730BA53.2BF16.6157 ; \n\t 6 Nov 2007 14:02:50 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D5B0C749A8;\n\tTue,  6 Nov 2007 19:02:40 +0000 (GMT)\nMessage-ID: <200711061858.lA6Iwac8028524@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 128\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 19:02:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0611420617\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 19:02:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6Iwa1B028526\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 13:58:36 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Iwac8028524\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 13:58:36 -0500\nDate: Tue, 6 Nov 2007 13:58:36 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 14:02:57 2007\nX-DSPAM-Confidence: 0.9828\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37802\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-11-06 13:58:35 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37802\n\nAdded:\noncourse/trunk/src/email/\noncourse/trunk/src/email/email-impl/\noncourse/trunk/src/email/email-impl/impl/\noncourse/trunk/src/email/email-impl/impl/src/\noncourse/trunk/src/email/email-impl/impl/src/java/\noncourse/trunk/src/email/email-impl/impl/src/java/org/\noncourse/trunk/src/email/email-impl/impl/src/java/org/sakaiproject/\noncourse/trunk/src/email/email-impl/impl/src/java/org/sakaiproject/email/\noncourse/trunk/src/email/email-impl/impl/src/java/org/sakaiproject/email/impl/\noncourse/trunk/src/email/email-impl/impl/src/java/org/sakaiproject/email/impl/BaseDigestService.java\nLog:\nONC-154 - digest modification\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 14:00:06 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 14:00:06 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 14:00:06 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby fan.mail.umich.edu () with ESMTP id lA6J05t9014829;\n\tTue, 6 Nov 2007 14:00:05 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 4730B9AF.D8A30.5202 ; \n\t 6 Nov 2007 14:00:02 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C29DF748F6;\n\tTue,  6 Nov 2007 18:59:57 +0000 (GMT)\nMessage-ID: <200711061855.lA6IttwG028511@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 407\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 18:59:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 586EC20617\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 18:59:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6IttNO028513\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 13:55:55 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6IttwG028511\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 13:55:55 -0500\nDate: Tue, 6 Nov 2007 13:55:55 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37801 - reference/branches/sakai_2-5-x/docs/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 14:00:06 2007\nX-DSPAM-Confidence: 0.6197\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37801\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 13:55:54 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37801\n\nModified:\nreference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql\nreference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\nLog:\nsvn merge -r 37743:37744 https://source.sakaiproject.org/svn/reference/trunk\nU    docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql\nU    docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\nin-143-196:~/java/2-5/sakai_2-5-x/reference mmmay$ svn log -r 37743:37744 https://source.sakaiproject.org/svn/reference/trunk\n------------------------------------------------------------------------\nr37744 | bahollad@indiana.edu | 2007-11-05 12:58:10 -0500 (Mon, 05 Nov 2007) | 9 lines\n\nSAK-12027\nPossible problems with sakai 2.4->2.5 mysql conversion script\n\nFixed these two errors:\n>[Error] Script lines: 724-727 ----------------------\nDuplicate column name 'itemscope'\n\n>[Error] Script lines: 728-728 ----------------------\nDuplicate key name 'isearchbuilderitem_sco' \n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 13:35:39 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 13:35:38 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 13:35:38 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby flawless.mail.umich.edu () with ESMTP id lA6IZbFY016472;\n\tTue, 6 Nov 2007 13:35:37 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 4730B3E3.5F8.25649 ; \n\t 6 Nov 2007 13:35:19 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 14E04749C1;\n\tTue,  6 Nov 2007 18:30:53 +0000 (GMT)\nMessage-ID: <200711061830.lA6IUfNi028428@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 526\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 18:30:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6669B1DB80\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 18:34:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6IUf4A028430\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 13:30:41 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6IUfNi028428\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 13:30:41 -0500\nDate: Tue, 6 Nov 2007 13:30:41 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37800 - reference/branches/sakai_2-5-x/docs/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 13:35:38 2007\nX-DSPAM-Confidence: 0.5993\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37800\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 13:30:40 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37800\n\nModified:\nreference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql\nreference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\nLog:\nin-143-196:~/java/2-5/sakai_2-5-x/reference mmmay$ svn merge -r 37671:37672 https://source.sakaiproject.org/svn/reference/trunk\nU    docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql\nU    docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\nin-143-196:~/java/2-5/sakai_2-5-x/reference mmmay$ svn log -r 37671:37672 https://source.sakaiproject.org/svn/reference/trunk\n------------------------------------------------------------------------\nr37671 | eli@media.berkeley.edu | 2007-10-31 14:21:49 -0400 (Wed, 31 Oct 2007) | 1 line\n\nSAK-12092 Adding file fixes bug. The reference is already in the CSS\n------------------------------------------------------------------------\nr37672 | bahollad@indiana.edu | 2007-10-31 15:40:02 -0400 (Wed, 31 Oct 2007) | 2 lines\n\nSAK-12027\nAdded back some removed lines.\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 13:14:48 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 13:14:48 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 13:14:48 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby awakenings.mail.umich.edu () with ESMTP id lA6IEl7w025298;\n\tTue, 6 Nov 2007 13:14:47 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 4730AF01.DDFFE.1570 ; \n\t 6 Nov 2007 13:14:30 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 355B17492C;\n\tTue,  6 Nov 2007 18:09:29 +0000 (GMT)\nMessage-ID: <200711061809.lA6I9uaT028370@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 32\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 18:09:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DFD84205FA\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 18:13:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6I9uYg028372\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 13:09:56 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6I9uaT028370\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 13:09:56 -0500\nDate: Tue, 6 Nov 2007 13:09:56 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37799 - assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 13:14:48 2007\nX-DSPAM-Confidence: 0.7007\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37799\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 13:09:54 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37799\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nsvn merge -r 37722:37723 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nin-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 37722:37723 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr37723 | zqian@umich.edu | 2007-11-02 16:21:48 -0400 (Fri, 02 Nov 2007) | 3 lines\n\nFix to SAK-12029:zip file not accepted in Assignments \"Upload All\" feature\n\nChecked in Ray's patch\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 13:14:11 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 13:14:11 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 13:14:11 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby faithful.mail.umich.edu () with ESMTP id lA6IEAGB005938;\n\tTue, 6 Nov 2007 13:14:10 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4730AED6.BC292.25407 ; \n\t 6 Nov 2007 13:13:47 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D255173343;\n\tTue,  6 Nov 2007 18:08:59 +0000 (GMT)\nMessage-ID: <200711061808.lA6I8qNu028358@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 770\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 18:08:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B9961205F8\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 18:12:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6I8rcO028360\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 13:08:53 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6I8qNu028358\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 13:08:52 -0500\nDate: Tue, 6 Nov 2007 13:08:52 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37798 - in assignment/branches/sakai_2-5-x: assignment-bundles assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 13:14:11 2007\nX-DSPAM-Confidence: 0.6568\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37798\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 13:08:51 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37798\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-bundles/assignment.properties\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_uploadAll.vm\nLog:\nsvn merge -r 37712:37713 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-bundles/assignment.properties\nU    assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_uploadAll.vm\nin-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 37712:37713 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr37713 | zqian@umich.edu | 2007-11-02 15:00:36 -0400 (Fri, 02 Nov 2007) | 1 line\n\nfix to SAK-11769:Assignments Confirmation before Upload All\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 13:11:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 13:11:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 13:11:51 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby score.mail.umich.edu () with ESMTP id lA6IBoj7027346;\n\tTue, 6 Nov 2007 13:11:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 4730AE5D.3501C.6599 ; \n\t 6 Nov 2007 13:11:46 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C4EC774273;\n\tTue,  6 Nov 2007 18:07:18 +0000 (GMT)\nMessage-ID: <200711061807.lA6I7TMo028346@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 305\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 18:06:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A50722059D\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 18:11:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6I7T3J028348\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 13:07:30 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6I7TMo028346\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 13:07:29 -0500\nDate: Tue, 6 Nov 2007 13:07:29 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37797 - in assignment/branches/sakai_2-5-x: assignment-bundles assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 13:11:51 2007\nX-DSPAM-Confidence: 0.7622\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37797\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 13:07:28 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37797\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-bundles/assignment.properties\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nsvn merge -r 37707:37708 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-bundles/assignment.properties\nU    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nin-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 37707:37708 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr37708 | zqian@umich.edu | 2007-11-02 13:52:56 -0400 (Fri, 02 Nov 2007) | 1 line\n\nfix to SAK-11497:Issues with editing assignment submissions that are past the due date\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 13:10:32 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 13:10:32 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 13:10:32 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby flawless.mail.umich.edu () with ESMTP id lA6IAVDS000613;\n\tTue, 6 Nov 2007 13:10:31 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4730AE0F.684ED.9530 ; \n\t 6 Nov 2007 13:10:28 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id F40887426E;\n\tTue,  6 Nov 2007 18:06:07 +0000 (GMT)\nMessage-ID: <200711061806.lA6I6Geg028334@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 166\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 18:05:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 36C7D205F5\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 18:10:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6I6GJM028336\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 13:06:16 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6I6Geg028334\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 13:06:16 -0500\nDate: Tue, 6 Nov 2007 13:06:16 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37796 - assignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 13:10:32 2007\nX-DSPAM-Confidence: 0.7628\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37796\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 13:06:14 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37796\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_report_submissions.vm\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_student_list_submissions.vm\nLog:\nsvn merge -r 37700:37701 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_report_submissions.vm\nU    assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm\nU    assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_student_list_submissions.vm\nU    assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm\nin-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 37700:37701 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr37700 | zqian@umich.edu | 2007-11-02 10:26:09 -0400 (Fri, 02 Nov 2007) | 1 line\n\nFix to SAK-12085:Long group list in For column does not wrap\n------------------------------------------------------------------------\nr37701 | zqian@umich.edu | 2007-11-02 10:56:44 -0400 (Fri, 02 Nov 2007) | 1 line\n\nFix to SAK-11858:Assignment Grade view doesn't include EID\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 13:09:28 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 13:09:28 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 13:09:28 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby brazil.mail.umich.edu () with ESMTP id lA6I9RxU016814;\n\tTue, 6 Nov 2007 13:09:27 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 4730ADCD.9E69C.24114 ; \n\t 6 Nov 2007 13:09:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E0AC17491D;\n\tTue,  6 Nov 2007 18:04:42 +0000 (GMT)\nMessage-ID: <200711061805.lA6I51uI028322@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 277\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 18:04:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 866D12059D\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 18:08:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6I51pG028324\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 13:05:01 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6I51uI028322\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 13:05:01 -0500\nDate: Tue, 6 Nov 2007 13:05:01 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37795 - assignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 13:09:28 2007\nX-DSPAM-Confidence: 0.7010\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37795\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 13:05:00 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37795\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm\nLog:\nsvn merge -r 37699:37700 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm\nin-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 37699:37700 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr37700 | zqian@umich.edu | 2007-11-02 10:26:09 -0400 (Fri, 02 Nov 2007) | 1 line\n\nFix to SAK-12085:Long group list in For column does not wrap\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 13:09:01 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 13:09:01 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 13:09:01 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby faithful.mail.umich.edu () with ESMTP id lA6I9018002765;\n\tTue, 6 Nov 2007 13:09:00 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 4730ADB5.828E2.2773 ; \n\t 6 Nov 2007 13:08:57 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 936F57492C;\n\tTue,  6 Nov 2007 18:04:13 +0000 (GMT)\nMessage-ID: <200711061803.lA6I3i0X028310@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 940\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 18:03:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 25AD22059D\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 18:07:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6I3iw7028312\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 13:03:44 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6I3i0X028310\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 13:03:44 -0500\nDate: Tue, 6 Nov 2007 13:03:44 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 13:09:01 2007\nX-DSPAM-Confidence: 0.7007\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37794\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 13:03:42 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37794\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nsvn merge -r 37675:37676 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nU    assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nin-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 37675:37676 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr37676 | zqian@umich.edu | 2007-10-31 21:41:13 -0400 (Wed, 31 Oct 2007) | 1 line\n\nfix to SAK-11226:notification to site leader not affected by all.groups permission in assignments tool\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Tue Nov  6 12:56:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 12:56:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 12:56:02 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby panther.mail.umich.edu () with ESMTP id lA6Hu1St012928;\n\tTue, 6 Nov 2007 12:56:01 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 4730AAAA.88A24.6570 ; \n\t 6 Nov 2007 12:55:57 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id AFB3973AC9;\n\tTue,  6 Nov 2007 17:55:50 +0000 (GMT)\nMessage-ID: <200711061751.lA6Hpel4028295@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 272\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 17:55:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CC5E72059A\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 17:55:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6Hpep2028297\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 12:51:40 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Hpel4028295\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 12:51:40 -0500\nDate: Tue, 6 Nov 2007 12:51:40 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r37793 - content/branches/SAK-12105/content-test/impl/src/java/org/sakaiproject/content/test\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 12:56:02 2007\nX-DSPAM-Confidence: 0.6501\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37793\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-11-06 12:51:32 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37793\n\nModified:\ncontent/branches/SAK-12105/content-test/impl/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java\nLog:\nSAK-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.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 12:05:40 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 12:05:40 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 12:05:40 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby sleepers.mail.umich.edu () with ESMTP id lA6H5d3k015117;\n\tTue, 6 Nov 2007 12:05:39 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 47309EDD.4489.13306 ; \n\t 6 Nov 2007 12:05:36 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 312E9744E3;\n\tTue,  6 Nov 2007 17:05:31 +0000 (GMT)\nMessage-ID: <200711061701.lA6H1ThA028209@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 508\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 17:05:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5D3671DA87\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 17:05:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6H1Tkx028211\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 12:01:29 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6H1ThA028209\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 12:01:29 -0500\nDate: Tue, 6 Nov 2007 12:01:29 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37792 - assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 12:05:40 2007\nX-DSPAM-Confidence: 0.7007\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37792\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 12:01:27 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37792\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nsvn merge -r 37499:37500 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nin-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 37499:37500 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr37500 | zqian@umich.edu | 2007-10-29 16:33:02 -0400 (Mon, 29 Oct 2007) | 1 line\n\nfix to SAK-12047:Upload All/ When only 1 students information is uploaded, the data for other students is being wiped out\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 12:04:38 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 12:04:38 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 12:04:38 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby fan.mail.umich.edu () with ESMTP id lA6H4bVS026153;\n\tTue, 6 Nov 2007 12:04:37 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 47309E9D.F18D7.15945 ; \n\t 6 Nov 2007 12:04:33 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6162473263;\n\tTue,  6 Nov 2007 17:04:27 +0000 (GMT)\nMessage-ID: <200711061700.lA6H0Psx028195@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 918\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 17:04:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EF0C51DA87\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 17:04:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6H0Pvh028197\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 12:00:25 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6H0Psx028195\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 12:00:25 -0500\nDate: Tue, 6 Nov 2007 12:00:25 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 12:04:38 2007\nX-DSPAM-Confidence: 0.6567\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37791\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 12:00:23 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37791\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm\nLog:\nsvn merge -r 37435:37436 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nU    assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm\nU    assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nin-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 37435:37436 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr37436 | zqian@umich.edu | 2007-10-26 23:12:38 -0400 (Fri, 26 Oct 2007) | 1 line\n\nfix to SAK-12053:If user sets an invalid accept until date for a single student a warning should be displayed\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 12:02:15 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 12:02:15 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 12:02:15 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby sleepers.mail.umich.edu () with ESMTP id lA6H2E2L012826;\n\tTue, 6 Nov 2007 12:02:14 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 47309E09.9BAC3.23021 ; \n\t 6 Nov 2007 12:02:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9B90C72CEA;\n\tTue,  6 Nov 2007 17:01:59 +0000 (GMT)\nMessage-ID: <200711061658.lA6Gw0Uu028177@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 296\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 17:01:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9F8171DA87\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 17:01:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6Gw0rA028179\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 11:58:00 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Gw0Uu028177\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:58:00 -0500\nDate: Tue, 6 Nov 2007 11:58:00 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37790 - assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 12:02:15 2007\nX-DSPAM-Confidence: 0.7006\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37790\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 11:57:59 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37790\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nsvn merge -r 37399:37400 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nin-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 37399:37400 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr37400 | zqian@umich.edu | 2007-10-25 22:16:42 -0400 (Thu, 25 Oct 2007) | 1 line\n\nfix to SAK-12029:zip file not accepted in Assignments \"Upload All\" feature\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Tue Nov  6 12:01:26 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 12:01:26 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 12:01:26 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby fan.mail.umich.edu () with ESMTP id lA6H1P63023579;\n\tTue, 6 Nov 2007 12:01:25 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 47309DD3.D6A57.18857 ; \n\t 6 Nov 2007 12:01:18 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DEB2F71142;\n\tTue,  6 Nov 2007 17:01:05 +0000 (GMT)\nMessage-ID: <200711061657.lA6Gv5Uo028165@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 644\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 17:00:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7A5A81DA87\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 17:00:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6Gv6bA028167\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 11:57:06 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Gv5Uo028165\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:57:05 -0500\nDate: Tue, 6 Nov 2007 11:57:05 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 12:01:26 2007\nX-DSPAM-Confidence: 0.7542\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37789\n\nAuthor: ray@media.berkeley.edu\nDate: 2007-11-06 11:56:57 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37789\n\nModified:\ncomponent/branches/SAK-8315/component-api/component/src/config/org/sakaiproject/config/sakai-configuration.xml\ncomponent/branches/SAK-8315/component-impl/integration-test/src/test/java/org/sakaiproject/component/ConfigurationLoadingTest.java\ncomponent/branches/SAK-8315/component-impl/integration-test/src/test/resources/sakai.properties\nLog:\nAdd test for system properties promotion\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 12:01:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 12:01:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 12:01:02 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby awakenings.mail.umich.edu () with ESMTP id lA6H11Q0000716;\n\tTue, 6 Nov 2007 12:01:01 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 47309DBE.EC6B4.17982 ; \n\t 6 Nov 2007 12:00:54 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3B69270D27;\n\tTue,  6 Nov 2007 17:00:43 +0000 (GMT)\nMessage-ID: <200711061656.lA6Gugob028153@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 848\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 17:00:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 45B3B1DA87\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 17:00:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6GugWN028155\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 11:56:42 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Gugob028153\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:56:42 -0500\nDate: Tue, 6 Nov 2007 11:56:42 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37788 - in assignment/branches/sakai_2-5-x: assignment-bundles assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 12:01:02 2007\nX-DSPAM-Confidence: 0.7622\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37788\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 11:56:41 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37788\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-bundles/assignment.properties\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nsvn merge -r 37387:37388 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-bundles/assignment.properties\nU    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nin-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 37387:37388 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr37388 | zqian@umich.edu | 2007-10-25 14:20:57 -0400 (Thu, 25 Oct 2007) | 1 line\n\nfix to SAK-12050: wrong alert message when only choose upload feedback text for 'upload all assignment submission'\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 11:57:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 11:57:37 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 11:57:37 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby chaos.mail.umich.edu () with ESMTP id lA6GvXKe005686;\n\tTue, 6 Nov 2007 11:57:33 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 47309CF1.F2FC3.17254 ; \n\t 6 Nov 2007 11:57:28 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6D20C73263;\n\tTue,  6 Nov 2007 16:57:16 +0000 (GMT)\nMessage-ID: <200711061653.lA6Gr89L028141@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 617\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 16:56:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 88E1F1DA87\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 16:56:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6Gr8eE028143\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 11:53:08 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Gr89L028141\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:53:08 -0500\nDate: Tue, 6 Nov 2007 11:53:08 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37787 - assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 11:57:37 2007\nX-DSPAM-Confidence: 0.7006\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37787\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 11:53:07 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37787\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nvn merge -r 37384:37385 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nin-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 37384:37385 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr37385 | zqian@umich.edu | 2007-10-25 12:05:12 -0400 (Thu, 25 Oct 2007) | 1 line\n\nfix to SAK-12047:Upload All/ When only 1 students information is uploaded, the data for other students is being wiped out\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Tue Nov  6 11:47:55 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 11:47:55 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 11:47:55 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby panther.mail.umich.edu () with ESMTP id lA6GlsQC026098;\n\tTue, 6 Nov 2007 11:47:54 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 47309AB2.CDBE6.8424 ; \n\t 6 Nov 2007 11:47:50 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 77D0C744E6;\n\tTue,  6 Nov 2007 16:47:45 +0000 (GMT)\nMessage-ID: <200711061643.lA6GhcbH028130@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 364\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 16:47:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8184720089\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 16:47:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6GhdMP028132\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 11:43:39 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6GhcbH028130\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:43:38 -0500\nDate: Tue, 6 Nov 2007 11:43:38 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 11:47:55 2007\nX-DSPAM-Confidence: 0.9817\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn?root=contrib&view=rev&rev=13280\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-11-06 11:42:15 -0500 (Tue, 06 Nov 2007)\nNew Revision: 13280\n\nModified:\nturnitin/trunk/contentreview-impl/hbm/src/java/org/sakaiproject/contentreview/hbm/ContentReviewItem.hbm.xml\nturnitin/trunk/contentreview-impl/turnitin/src/java/org/sakaiproject/contentreview/impl/hbm/BaseReviewServiceImpl.java\nturnitin/trunk/contentreview-impl/turnitin/src/java/org/sakaiproject/contentreview/impl/turnitin/TurnitinReviewServiceImpl.java\nLog:\nSAK-12128 Added method to impl for retry time\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom antranig@caret.cam.ac.uk Tue Nov  6 11:37:06 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 11:37:06 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 11:37:06 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby score.mail.umich.edu () with ESMTP id lA6Gb5b1023392;\n\tTue, 6 Nov 2007 11:37:05 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4730982B.D46EA.11759 ; \n\t 6 Nov 2007 11:37:02 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 83567746D8;\n\tTue,  6 Nov 2007 16:36:59 +0000 (GMT)\nMessage-ID: <200711061632.lA6GWoVp028047@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 808\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 16:36:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7B01020089\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 16:36:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6GWpjT028049\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 11:32:51 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6GWoVp028047\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:32:50 -0500\nDate: Tue, 6 Nov 2007 11:32:50 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: antranig@caret.cam.ac.uk\nSubject: [contrib] svn commit: r13279 - ucb/image-gallery/trunk\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 11:37:06 2007\nX-DSPAM-Confidence: 0.9813\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn?root=contrib&view=rev&rev=13279\n\nAuthor: antranig@caret.cam.ac.uk\nDate: 2007-11-06 11:32:47 -0500 (Tue, 06 Nov 2007)\nNew Revision: 13279\n\nModified:\nucb/image-gallery/trunk/project.properties\nLog:\nBacked up RSF version to 0.7.2\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ggolden@umich.edu Tue Nov  6 11:34:29 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 11:34:29 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 11:34:29 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby awakenings.mail.umich.edu () with ESMTP id lA6GYSjs012976;\n\tTue, 6 Nov 2007 11:34:28 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 4730978D.1E361.16513 ; \n\t 6 Nov 2007 11:34:24 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CA5027442D;\n\tTue,  6 Nov 2007 16:34:22 +0000 (GMT)\nMessage-ID: <200711061630.lA6GU8DV028036@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 881\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 16:34:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AEE6320089\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 16:33:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6GU8tK028038\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 11:30:08 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6GU8DV028036\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:30:08 -0500\nDate: Tue, 6 Nov 2007 11:30:08 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ggolden@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ggolden@umich.edu\nSubject: [contrib] svn commit: r13278 - in muse/mneme/trunk/mneme-tool/tool/src: bundle views\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 11:34:29 2007\nX-DSPAM-Confidence: 0.9837\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn?root=contrib&view=rev&rev=13278\n\nAuthor: ggolden@umich.edu\nDate: 2007-11-06 11:30:04 -0500 (Tue, 06 Nov 2007)\nNew Revision: 13278\n\nModified:\nmuse/mneme/trunk/mneme-tool/tool/src/bundle/mneme.properties\nmuse/mneme/trunk/mneme-tool/tool/src/bundle/testEdit.properties\nmuse/mneme/trunk/mneme-tool/tool/src/bundle/testSettings.properties\nmuse/mneme/trunk/mneme-tool/tool/src/views/testEdit.xml\nmuse/mneme/trunk/mneme-tool/tool/src/views/testSettings.xml\nLog:\nassessment edit and settings layout tuned up\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom antranig@caret.cam.ac.uk Tue Nov  6 11:34:04 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 11:34:04 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 11:34:04 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby chaos.mail.umich.edu () with ESMTP id lA6GY3mu022053;\n\tTue, 6 Nov 2007 11:34:03 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 47309772.9B94B.8961 ; \n\t 6 Nov 2007 11:33:57 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2517374410;\n\tTue,  6 Nov 2007 16:33:51 +0000 (GMT)\nMessage-ID: <200711061629.lA6GTjRP028025@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 861\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 16:33:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B00A020497\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 16:33:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6GTjHP028027\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 11:29:45 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6GTjRP028025\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:29:45 -0500\nDate: Tue, 6 Nov 2007 11:29:45 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to antranig@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: antranig@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 11:34:04 2007\nX-DSPAM-Confidence: 0.8439\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn?root=contrib&view=rev&rev=13277\n\nAuthor: antranig@caret.cam.ac.uk\nDate: 2007-11-06 11:29:29 -0500 (Tue, 06 Nov 2007)\nNew Revision: 13277\n\nAdded:\nucb/image-gallery/trunk/src/java/org/sakaiproject/gallery/util/XMLUtil.java\nModified:\nucb/image-gallery/trunk/pom.xml\nucb/image-gallery/trunk/project.properties\nucb/image-gallery/trunk/src/java/org/sakaiproject/gallery/producers/LayoutProducer.java\nucb/image-gallery/trunk/src/webapp/WEB-INF/requestContext.xml\nLog:\nFLUID-76: Added XML id flattening method (will be in next RSF release)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ggolden@umich.edu Tue Nov  6 11:33:49 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 11:33:49 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 11:33:49 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby mission.mail.umich.edu () with ESMTP id lA6GXmle030312;\n\tTue, 6 Nov 2007 11:33:48 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 47309765.2C59A.22059 ; \n\t 6 Nov 2007 11:33:44 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 764DB742B2;\n\tTue,  6 Nov 2007 16:33:33 +0000 (GMT)\nMessage-ID: <200711061629.lA6GTRhF028014@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 331\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 16:33:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4316E20497\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 16:33:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6GTRC4028016\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 11:29:27 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6GTRhF028014\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:29:27 -0500\nDate: Tue, 6 Nov 2007 11:29:27 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ggolden@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ggolden@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 11:33:49 2007\nX-DSPAM-Confidence: 0.8444\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn?root=contrib&view=rev&rev=13276\n\nAuthor: ggolden@umich.edu\nDate: 2007-11-06 11:29:21 -0500 (Tue, 06 Nov 2007)\nNew Revision: 13276\n\nModified:\nmuse/ambrosia/trunk/ambrosia-api/api/src/java/org/muse/ambrosia/api/Container.java\nmuse/ambrosia/trunk/ambrosia-impl/impl/src/java/org/muse/ambrosia/impl/UiAttachmentsEdit.java\nmuse/ambrosia/trunk/ambrosia-impl/impl/src/java/org/muse/ambrosia/impl/UiContainer.java\nmuse/ambrosia/trunk/ambrosia-impl/impl/src/java/org/muse/ambrosia/impl/UiCountEdit.java\nmuse/ambrosia/trunk/ambrosia-impl/impl/src/java/org/muse/ambrosia/impl/UiDateEdit.java\nmuse/ambrosia/trunk/ambrosia-impl/impl/src/java/org/muse/ambrosia/impl/UiDurationEdit.java\nmuse/ambrosia/trunk/ambrosia-impl/impl/src/java/org/muse/ambrosia/impl/UiHtmlEdit.java\nmuse/ambrosia/trunk/ambrosia-impl/impl/src/java/org/muse/ambrosia/impl/UiSelection.java\nmuse/ambrosia/trunk/ambrosia-impl/impl/src/java/org/muse/ambrosia/impl/UiTextEdit.java\nmuse/ambrosia/trunk/ambrosia-library/lib/src/webapp/skin/ambrosia_0-5-0.css\nLog:\nstarted tuning the css\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 11:22:01 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 11:22:01 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 11:22:01 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby sleepers.mail.umich.edu () with ESMTP id lA6GM0Bd013411;\n\tTue, 6 Nov 2007 11:22:00 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 473094A2.4850E.26938 ; \n\t 6 Nov 2007 11:21:57 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A60BE68675;\n\tTue,  6 Nov 2007 16:21:53 +0000 (GMT)\nMessage-ID: <200711061617.lA6GHmT0027988@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 79\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 16:21:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6D73C1DB7E\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 16:21:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6GHnAU027990\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 11:17:49 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6GHmT0027988\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:17:48 -0500\nDate: Tue, 6 Nov 2007 11:17:48 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 11:22:01 2007\nX-DSPAM-Confidence: 0.7005\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37786\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 11:17:47 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37786\n\nModified:\nosp/branches/sakai_2-5-x/matrix/api/src/java/org/theospi/portfolio/matrix/model/impl/MatrixImpl.hbm.xml\nosp/branches/sakai_2-5-x/matrix/tool/src/java/org/theospi/portfolio/matrix/control/BaseScaffoldingController.java\nosp/branches/sakai_2-5-x/matrix/tool/src/java/org/theospi/portfolio/matrix/control/EditScaffoldingCellController.java\nosp/branches/sakai_2-5-x/matrix/tool/src/java/org/theospi/portfolio/matrix/control/ViewMatrixController.java\nosp/branches/sakai_2-5-x/matrix/tool/src/java/org/theospi/portfolio/matrix/control/ViewScaffoldingController.java\nLog:\nsvn merge -r 37692:37693 https://source.sakaiproject.org/svn/osp/trunk\nU    matrix/api/src/java/org/theospi/portfolio/matrix/model/impl/MatrixImpl.hbm.xml\nU    matrix/tool/src/java/org/theospi/portfolio/matrix/control/ViewScaffoldingController.java\nU    matrix/tool/src/java/org/theospi/portfolio/matrix/control/ViewMatrixController.java\nU    matrix/tool/src/java/org/theospi/portfolio/matrix/control/BaseScaffoldingController.java\nU    matrix/tool/src/java/org/theospi/portfolio/matrix/control/EditScaffoldingCellController.java\nin-143-196:~/java/2-5/sakai_2-5-x/osp mmmay$ svn log -r 37692:37693 https://source.sakaiproject.org/svn/osp/trunk\n------------------------------------------------------------------------\nr37693 | bkirschn@umich.edu | 2007-11-01 16:41:49 -0400 (Thu, 01 Nov 2007) | 5 lines\n\nSAK-12066 - fix bugs related to hibernate lazy loading...\nrevert r36794 re-enable lazy loading\nrevert r34564 re-enable BaseScaffoldingController.traverseScaffoldingCells\nupdate BaseScaffoldingController.traverseScaffoldingCells() to use matrixManager.getScaffoldingCells\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 11:18:47 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 11:18:47 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 11:18:47 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby brazil.mail.umich.edu () with ESMTP id lA6GIkG3000943;\n\tTue, 6 Nov 2007 11:18:46 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 473093E0.E4A77.13982 ; \n\t 6 Nov 2007 11:18:43 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 51E90742CA;\n\tTue,  6 Nov 2007 16:18:40 +0000 (GMT)\nMessage-ID: <200711061614.lA6GEZH1027976@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 301\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 16:18:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7057D1DB7E\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 16:18:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6GEalx027978\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 11:14:36 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6GEZH1027976\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:14:36 -0500\nDate: Tue, 6 Nov 2007 11:14:36 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37785 - calendar/branches/sakai_2-5-x/calendar-tool/tool/src/java/org/sakaiproject/calendar/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 11:18:47 2007\nX-DSPAM-Confidence: 0.7618\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37785\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 11:14:34 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37785\n\nModified:\ncalendar/branches/sakai_2-5-x/calendar-tool/tool/src/java/org/sakaiproject/calendar/tool/CalendarAction.java\nLog:\nsvn merge -r 37761:37762 https://source.sakaiproject.org/svn/calendar/trunk\nU    calendar-tool/tool/src/java/org/sakaiproject/calendar/tool/CalendarAction.java\nin-143-196:~/java/2-5/sakai_2-5-x/calendar mmmay$ svn log -r 37761:37762 https://source.sakaiproject.org/svn/calendar/trunk\n------------------------------------------------------------------------\nr37762 | bkirschn@umich.edu | 2007-11-05 17:10:42 -0500 (Mon, 05 Nov 2007) | 1 line\n\nSAK-6867 fix incorrect logic for displaying group events\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Tue Nov  6 11:16:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 11:16:42 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 11:16:42 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby faithful.mail.umich.edu () with ESMTP id lA6GGfO8019150;\n\tTue, 6 Nov 2007 11:16:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 47309357.DFA73.10978 ; \n\t 6 Nov 2007 11:16:26 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id ACE64744EA;\n\tTue,  6 Nov 2007 16:16:21 +0000 (GMT)\nMessage-ID: <200711061612.lA6GCGKw027964@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 344\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 16:16:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 561DD20497\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 16:16:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6GCGtv027966\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 11:12:16 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6GCGKw027964\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:12:16 -0500\nDate: Tue, 6 Nov 2007 11:12:16 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r37784 - content-review/trunk/content-review-api/model/src/java/org/sakaiproject/contentreview/model\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 11:16:42 2007\nX-DSPAM-Confidence: 0.8467\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37784\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-11-06 11:11:51 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37784\n\nModified:\ncontent-review/trunk/content-review-api/model/src/java/org/sakaiproject/contentreview/model/ContentReviewItem.java\nLog:\nSAK-12128 Added method to class for retry time\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 11:13:04 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 11:13:04 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 11:13:04 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby mission.mail.umich.edu () with ESMTP id lA6GD4gP016535;\n\tTue, 6 Nov 2007 11:13:04 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 47309285.C7502.19861 ; \n\t 6 Nov 2007 11:12:56 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 06FBC746BE;\n\tTue,  6 Nov 2007 16:12:55 +0000 (GMT)\nMessage-ID: <200711061608.lA6G8puu027951@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 26\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 16:12:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2C0D1204A1\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 16:12:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6G8phH027953\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 11:08:51 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6G8puu027951\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:08:51 -0500\nDate: Tue, 6 Nov 2007 11:08:51 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37783 - mailtool/branches/sakai_2-5-x/mailtool/src/bundle/org/sakaiproject/tool/mailtool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 11:13:04 2007\nX-DSPAM-Confidence: 0.7008\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37783\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 11:08:50 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37783\n\nModified:\nmailtool/branches/sakai_2-5-x/mailtool/src/bundle/org/sakaiproject/tool/mailtool/Messages_nl.properties\nLog:\nsvn merge -r 37721:37722 https://source.sakaiproject.org/svn/mailtool/trunk\nU    mailtool/src/bundle/org/sakaiproject/tool/mailtool/Messages_nl.properties\nin-143-196:~/java/2-5/sakai_2-5-x/mailtool mmmay$ svn log -r 37721:37722 https://source.sakaiproject.org/svn/mailtool/trunk\n------------------------------------------------------------------------\nr37722 | bkirschn@umich.edu | 2007-11-02 15:04:50 -0400 (Fri, 02 Nov 2007) | 1 line\n\nSAK-11241 Dutch translations\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 11:11:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 11:11:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 11:11:30 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby godsend.mail.umich.edu () with ESMTP id lA6GBTAF000985;\n\tTue, 6 Nov 2007 11:11:29 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 4730922A.E86C9.30842 ; \n\t 6 Nov 2007 11:11:26 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EC54374521;\n\tTue,  6 Nov 2007 16:11:22 +0000 (GMT)\nMessage-ID: <200711061607.lA6G7G5K027939@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 467\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 16:11:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 69BB020497\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 16:11:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6G7HXi027941\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 11:07:17 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6G7G5K027939\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:07:17 -0500\nDate: Tue, 6 Nov 2007 11:07:17 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 11:11:30 2007\nX-DSPAM-Confidence: 0.7623\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37782\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 11:07:15 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37782\n\nModified:\nsite-manage/branches/sakai_2-5-x/pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle/Messages_nl.properties\nsite-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/bundle/sitesetupgeneric_nl.properties\nLog:\nsvn merge -r 37720:37721 https://source.sakaiproject.org/svn/site-manage/trunk\nU    site-manage-tool/tool/src/bundle/sitesetupgeneric_nl.properties\nU    pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle/Messages_nl.properties\nin-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\n------------------------------------------------------------------------\nr37721 | bkirschn@umich.edu | 2007-11-02 15:04:39 -0400 (Fri, 02 Nov 2007) | 1 line\n\nSAK-11241 Dutch translations\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 11:10:11 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 11:10:11 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 11:10:11 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby brazil.mail.umich.edu () with ESMTP id lA6GAAdD026590;\n\tTue, 6 Nov 2007 11:10:10 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 473091DC.5B0CC.4588 ; \n\t 6 Nov 2007 11:10:07 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 36641743B7;\n\tTue,  6 Nov 2007 16:10:03 +0000 (GMT)\nMessage-ID: <200711061606.lA6G61qi027927@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 83\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 16:09:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D931F20497\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 16:09:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6G61GH027929\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 11:06:01 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6G61qi027927\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:06:01 -0500\nDate: Tue, 6 Nov 2007 11:06:01 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37781 - profile/branches/sakai_2-5-x/profile-app/src/bundle/org/sakaiproject/tool/profile/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 11:10:11 2007\nX-DSPAM-Confidence: 0.7619\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37781\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 11:06:00 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37781\n\nModified:\nprofile/branches/sakai_2-5-x/profile-app/src/bundle/org/sakaiproject/tool/profile/bundle/Messages_nl.properties\nLog:\nsvn merge -r 37719:37720 https://source.sakaiproject.org/svn/profile/trunk\nU    profile-app/src/bundle/org/sakaiproject/tool/profile/bundle/Messages_nl.properties\nin-143-196:~/java/2-5/sakai_2-5-x/profile mmmay$ svn log -r 37719:37720 https://source.sakaiproject.org/svn/profile/trunk\n------------------------------------------------------------------------\nr37720 | bkirschn@umich.edu | 2007-11-02 15:04:33 -0400 (Fri, 02 Nov 2007) | 1 line\n\nSAK-11241 Dutch translations\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 11:07:49 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 11:07:49 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 11:07:49 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby casino.mail.umich.edu () with ESMTP id lA6G7mAl018257;\n\tTue, 6 Nov 2007 11:07:48 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4730914D.C7337.13834 ; \n\t 6 Nov 2007 11:07:44 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1815A68675;\n\tTue,  6 Nov 2007 16:07:41 +0000 (GMT)\nMessage-ID: <200711061603.lA6G3XtO027914@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 771\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 16:07:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0411A20497\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 16:07:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6G3X5Y027916\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 11:03:33 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6G3XtO027914\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 11:03:33 -0500\nDate: Tue, 6 Nov 2007 11:03:33 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37780 - osp/branches/sakai_2-5-x/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 11:07:49 2007\nX-DSPAM-Confidence: 0.7538\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37780\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 11:03:32 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37780\n\nModified:\nosp/branches/sakai_2-5-x/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle/Messages_nl.properties\nLog:\nSAK-11241 Dutch translations\nFiles Changed\nMODIFY /osp/trunk/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle/Messages_nl.properties \n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 10:36:20 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 10:36:20 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 10:36:19 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby casino.mail.umich.edu () with ESMTP id lA6FaJLr023261;\n\tTue, 6 Nov 2007 10:36:19 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 473089E7.3276.25531 ; \n\t 6 Nov 2007 10:36:12 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 65E1F74664;\n\tTue,  6 Nov 2007 15:32:13 +0000 (GMT)\nMessage-ID: <200711061529.lA6FTro7027829@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 339\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 15:31:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 063A7204A7\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 15:33:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6FTrl8027831\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 10:29:53 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6FTro7027829\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 10:29:53 -0500\nDate: Tue, 6 Nov 2007 10:29:53 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37779 - postem/branches/sakai_2-5-x/postem-app/src/bundle/org/sakaiproject/tool/postem/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 10:36:19 2007\nX-DSPAM-Confidence: 0.7622\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37779\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 10:29:52 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37779\n\nModified:\npostem/branches/sakai_2-5-x/postem-app/src/bundle/org/sakaiproject/tool/postem/bundle/Messages_nl.properties\nLog:\nsvn merge -r 37718:37719 https://source.sakaiproject.org/svn/postem/trunk\nU    postem-app/src/bundle/org/sakaiproject/tool/postem/bundle/Messages_nl.properties\nin-143-196:~/java/2-5/sakai_2-5-x/postem mmmay$ svn log -r 37718:37719 https://source.sakaiproject.org/svn/postem/trunk\n------------------------------------------------------------------------\nr37719 | bkirschn@umich.edu | 2007-11-02 15:04:12 -0400 (Fri, 02 Nov 2007) | 1 line\n\nSAK-11241 Dutch translations\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 10:12:46 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 10:12:46 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 10:12:46 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby mission.mail.umich.edu () with ESMTP id lA6FCjkJ003049;\n\tTue, 6 Nov 2007 10:12:45 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 47308466.DF457.4519 ; \n\t 6 Nov 2007 10:12:41 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6AAEE74608;\n\tTue,  6 Nov 2007 15:12:33 +0000 (GMT)\nMessage-ID: <200711061508.lA6F8a0o027633@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 680\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 15:12:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AAC2420498\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 15:12:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6F8alX027635\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 10:08:36 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6F8a0o027633\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 10:08:36 -0500\nDate: Tue, 6 Nov 2007 10:08:36 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37778 - calendar/branches/sakai_2-5-x/calendar-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 10:12:46 2007\nX-DSPAM-Confidence: 0.7622\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37778\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 10:08:35 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37778\n\nModified:\ncalendar/branches/sakai_2-5-x/calendar-tool/tool/src/bundle/calendar_nl.properties\nLog:\nsvn merge -r 37715:37716 https://source.sakaiproject.org/svn/calendar/trunk\nU    calendar-tool/tool/src/bundle/calendar_nl.properties\nin-143-196:~/java/2-5/sakai_2-5-x/calendar mmmay$ svn log -r 37715:37716 https://source.sakaiproject.org/svn/calendar/trunk\n------------------------------------------------------------------------\nr37716 | bkirschn@umich.edu | 2007-11-02 15:03:47 -0400 (Fri, 02 Nov 2007) | 1 line\n\nSAK-11241 Dutch translations\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 10:11:49 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 10:11:49 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 10:11:49 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby godsend.mail.umich.edu () with ESMTP id lA6FBmEQ015803;\n\tTue, 6 Nov 2007 10:11:48 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 4730842C.1ED7C.23603 ; \n\t 6 Nov 2007 10:11:45 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 97EB974478;\n\tTue,  6 Nov 2007 15:11:37 +0000 (GMT)\nMessage-ID: <200711061507.lA6F7cZO027621@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 261\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 15:11:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 54A8420498\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 15:11:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6F7cwv027623\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 10:07:38 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6F7cZO027621\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 10:07:38 -0500\nDate: Tue, 6 Nov 2007 10:07:38 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37777 - chat/branches/sakai_2-5-x/chat-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 10:11:49 2007\nX-DSPAM-Confidence: 0.7624\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37777\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 10:07:37 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37777\n\nModified:\nchat/branches/sakai_2-5-x/chat-tool/tool/src/bundle/chat_nl.properties\nLog:\nsvn merge -r 37716:37717 https://source.sakaiproject.org/svn/calendar/trunk\nin-143-196:~/java/2-5/sakai_2-5-x/calendar mmmay$ cd ..\nin-143-196:~/java/2-5/sakai_2-5-x mmmay$ cd chat\nin-143-196:~/java/2-5/sakai_2-5-x/chat mmmay$ svn merge -r 37716:37717 https://source.sakaiproject.org/svn/chat/trunk\nU    chat-tool/tool/src/bundle/chat_nl.properties\nin-143-196:~/java/2-5/sakai_2-5-x/chat mmmay$ svn log -r 37716:37717 https://source.sakaiproject.org/svn/chat/trunk\n------------------------------------------------------------------------\nr37717 | bkirschn@umich.edu | 2007-11-02 15:03:53 -0400 (Fri, 02 Nov 2007) | 1 line\n\nSAK-11241 Dutch translations\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 10:08:03 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 10:08:03 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 10:08:03 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby panther.mail.umich.edu () with ESMTP id lA6F81N7008465;\n\tTue, 6 Nov 2007 10:08:01 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 4730834B.1913F.15905 ; \n\t 6 Nov 2007 10:07:58 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C4035745EB;\n\tTue,  6 Nov 2007 15:07:52 +0000 (GMT)\nMessage-ID: <200711061503.lA6F3q12027606@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 216\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 15:07:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C639D1DB72\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 15:07:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6F3qhY027608\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 10:03:52 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6F3q12027606\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 10:03:52 -0500\nDate: Tue, 6 Nov 2007 10:03:52 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37776 - assignment/branches/sakai_2-5-x/assignment-bundles\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 10:08:03 2007\nX-DSPAM-Confidence: 0.7009\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37776\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 10:03:51 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37776\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-bundles/assignment_nl.properties\nLog:\nsvn merge -r 37714:37715 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-bundles/assignment_nl.properties\nin-143-196:~/java/2-5/sakai_2-5-x/assignment mmmay$ svn log -r 37714:37715 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr37715 | bkirschn@umich.edu | 2007-11-02 15:03:41 -0400 (Fri, 02 Nov 2007) | 1 line\n\nSAK-11241 Dutch translations\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Tue Nov  6 10:05:34 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 10:05:34 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 10:05:34 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby brazil.mail.umich.edu () with ESMTP id lA6F5XrN006434;\n\tTue, 6 Nov 2007 10:05:33 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 473082B7.B7D1A.10684 ; \n\t 6 Nov 2007 10:05:31 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D7D37745EE;\n\tTue,  6 Nov 2007 15:05:24 +0000 (GMT)\nMessage-ID: <200711061501.lA6F1NGa027593@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 348\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 15:05:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2632D1DB72\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 15:05:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6F1NG7027595\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 10:01:23 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6F1NGa027593\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 10:01:23 -0500\nDate: Tue, 6 Nov 2007 10:01:23 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37775 - announcement/branches/sakai_2-5-x/announcement-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 10:05:34 2007\nX-DSPAM-Confidence: 0.7623\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37775\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-06 10:01:23 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37775\n\nModified:\nannouncement/branches/sakai_2-5-x/announcement-tool/tool/src/bundle/announcement_nl.properties\nLog:\nsvn merge -r 37713:37714 https://source.sakaiproject.org/svn/announcement/trunk\nU    announcement-tool/tool/src/bundle/announcement_nl.properties\nin-143-196:~/java/2-5/sakai_2-5-x/announcement mmmay$ svn log -r 37713:37714 https://source.sakaiproject.org/svn/announcement/trunk\n------------------------------------------------------------------------\nr37714 | bkirschn@umich.edu | 2007-11-02 15:03:35 -0400 (Fri, 02 Nov 2007) | 1 line\n\nSAK-11241 Dutch translations\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Tue Nov  6 09:40:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 09:40:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 09:40:30 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby sleepers.mail.umich.edu () with ESMTP id lA6EeTkI032740;\n\tTue, 6 Nov 2007 09:40:29 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 47307CCE.1B928.20492 ; \n\t 6 Nov 2007 09:40:17 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7F46871DD8;\n\tTue,  6 Nov 2007 14:40:11 +0000 (GMT)\nMessage-ID: <200711061436.lA6Ea9Vr027545@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 722\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 14:39:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 25B7B1C380\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 14:39:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6Ea9rl027547\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 09:36:10 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6Ea9Vr027545\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 09:36:09 -0500\nDate: Tue, 6 Nov 2007 09:36:09 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 09:40:30 2007\nX-DSPAM-Confidence: 0.8478\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37772\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-11-06 09:36:08 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37772\n\nModified:\npostem/trunk/postem-api/src/java/org/sakaiproject/api/app/postem/data/GradebookManager.java\npostem/trunk/postem-app/src/java/org/sakaiproject/tool/postem/PostemTool.java\npostem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.hbm.xml\npostem/trunk/postem-impl/src/java/org/sakaiproject/component/app/postem/GradebookManagerImpl.java\nLog:\nSAK-12095\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12095\nPerformance problems when tool contains large posts\noptimize individual student view\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Tue Nov  6 09:18:31 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 09:18:31 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 09:18:31 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby fan.mail.umich.edu () with ESMTP id lA6EIUFw009937;\n\tTue, 6 Nov 2007 09:18:30 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 473077AF.A587C.20622 ; \n\t 6 Nov 2007 09:18:26 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 25CCE73528;\n\tTue,  6 Nov 2007 14:18:19 +0000 (GMT)\nMessage-ID: <200711061414.lA6EEBoo027483@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 695\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 14:17:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AE6E51DB4E\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 14:17:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6EEBPk027485\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 09:14:11 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6EEBoo027483\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 09:14:11 -0500\nDate: Tue, 6 Nov 2007 09:14:11 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r37771 - postem/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 09:18:31 2007\nX-DSPAM-Confidence: 0.9814\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37771\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-06 09:14:10 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37771\n\nAdded:\npostem/branches/oncourse_2-4-x/\nLog:\nNew oncourse branch of postem for IU specific changes\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gopal.ramasammycook@gmail.com Tue Nov  6 09:08:41 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 09:08:41 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 09:08:41 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby score.mail.umich.edu () with ESMTP id lA6E88Fa016819;\n\tTue, 6 Nov 2007 09:08:08 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 47307541.BFF64.26586 ; \n\t 6 Nov 2007 09:08:04 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EFBFB744CB;\n\tTue,  6 Nov 2007 14:07:52 +0000 (GMT)\nMessage-ID: <200711061403.lA6E3n03027414@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 12\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 14:07:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 525611A891\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 14:07:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA6E3ooa027416\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 09:03:50 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA6E3n03027414\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 09:03:50 -0500\nDate: Tue, 6 Nov 2007 09:03:50 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gopal.ramasammycook@gmail.com using -f\nTo: source@collab.sakaiproject.org\nFrom: gopal.ramasammycook@gmail.com\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 09:08:41 2007\nX-DSPAM-Confidence: 0.9877\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37770\n\nAuthor: gopal.ramasammycook@gmail.com\nDate: 2007-11-06 09:02:19 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37770\n\nModified:\nsam/branches/SAK-12065/.classpath\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/AssessmentSettingsMessages.properties\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/bundle/TemplateMessages.properties\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/AssessmentSettingsBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/TemplateBean.java\nsam/branches/SAK-12065/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SaveAssessmentSettings.java\nsam/branches/SAK-12065/samigo-app/src/webapp/jsf/author/authorSettings.jsp\nsam/branches/SAK-12065/samigo-app/src/webapp/jsf/author/publishedSettings.jsp\nsam/branches/SAK-12065/samigo-app/src/webapp/jsf/template/templateEditor.jsp\nsam/branches/SAK-12065/samigo-services/src/java/org/sakaiproject/tool/assessment/integration/helper/integrated/PublishingTargetHelperImpl.java\nLog:\nGopal 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. \n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Tue Nov  6 04:20:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 06 Nov 2007 04:20:18 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 06 Nov 2007 04:20:18 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby awakenings.mail.umich.edu () with ESMTP id lA69KF8K015196;\n\tTue, 6 Nov 2007 04:20:15 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 473031C5.8C9F5.7978 ; \n\t 6 Nov 2007 04:20:11 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CC2247114A;\n\tTue,  6 Nov 2007 09:19:59 +0000 (GMT)\nMessage-ID: <200711060915.lA69FwDO026950@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 651\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 09:19:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2C1AA1DB33\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 09:19:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA69Fwl0026952\n\tfor <source@collab.sakaiproject.org>; Tue, 6 Nov 2007 04:15:58 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA69FwDO026950\n\tfor source@collab.sakaiproject.org; Tue, 6 Nov 2007 04:15:58 -0500\nDate: Tue, 6 Nov 2007 04:15:58 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r37769 - in sam/branches/SAK-12065: . samigo-shared-deploy\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Nov  6 04:20:18 2007\nX-DSPAM-Confidence: 0.8470\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37769\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-11-06 04:15:39 -0500 (Tue, 06 Nov 2007)\nNew Revision: 37769\n\nAdded:\nsam/branches/SAK-12065/samigo-shared-deploy/\nsam/branches/SAK-12065/samigo-shared-deploy/pom.xml\nRemoved:\nsam/branches/SAK-12065/samigo-shared-deploy/pom.xml\nModified:\nsam/branches/SAK-12065/pom.xml\nLog:\nSAK-12605 merged changes from 12809 inot branch\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Mon Nov  5 22:47:28 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 22:47:28 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 22:47:28 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby awakenings.mail.umich.edu () with ESMTP id lA63lRku024128;\n\tMon, 5 Nov 2007 22:47:27 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 472FE3C9.DA953.29701 ; \n\t 5 Nov 2007 22:47:24 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3CE8E70822;\n\tTue,  6 Nov 2007 03:47:21 +0000 (GMT)\nMessage-ID: <200711060343.lA63hIn3026193@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 28\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 03:47:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9EC4F1DAD6\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 03:47:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA63hIIA026195\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 22:43:19 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA63hIn3026193\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 22:43:18 -0500\nDate: Mon, 5 Nov 2007 22:43:18 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 22:47:28 2007\nX-DSPAM-Confidence: 0.7605\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37768\n\nAuthor: zqian@umich.edu\nDate: 2007-11-05 22:43:13 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37768\n\nModified:\nsite-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nsite-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-findCourse.vm\nsite-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteConfirm.vm\nsite-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteCourse.vm\nsite-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteCourseManual.vm\nsite-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteInformation.vm\nsite-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-addCourseConfirm.vm\nsite-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-editClass.vm\nsite-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-list.vm\nLog:\nmerge fix to SAK-10915 into 2-4-x branch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Mon Nov  5 22:33:18 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 22:33:18 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 22:33:18 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby casino.mail.umich.edu () with ESMTP id lA63XHdo024989;\n\tMon, 5 Nov 2007 22:33:17 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 472FE06A.87B85.9311 ; \n\t 5 Nov 2007 22:33:01 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4183873585;\n\tTue,  6 Nov 2007 03:32:57 +0000 (GMT)\nMessage-ID: <200711060328.lA63SsHi026179@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 696\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 03:32:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B6AFA1DAD6\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 03:32:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA63St1l026181\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 22:28:55 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA63SsHi026179\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 22:28:55 -0500\nDate: Mon, 5 Nov 2007 22:28:55 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 22:33:18 2007\nX-DSPAM-Confidence: 0.6964\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37767\n\nAuthor: zqian@umich.edu\nDate: 2007-11-05 22:28:51 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37767\n\nModified:\nsite-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nsite-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteCourse.vm\nsite-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteCourseManual.vm\nsite-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteInformation.vm\nLog:\nmerge fix to SAK-10520 into 2-4-x: Site Setup - can't add a manaul roster to an existing site\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Mon Nov  5 20:01:01 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 20:01:01 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 20:01:01 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby awakenings.mail.umich.edu () with ESMTP id lA6110dJ021679;\n\tMon, 5 Nov 2007 20:01:00 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 472FBCC7.2B651.21795 ; \n\t 5 Nov 2007 20:00:57 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 048A560D72;\n\tTue,  6 Nov 2007 01:00:47 +0000 (GMT)\nMessage-ID: <200711060031.lA60VOr2026001@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 908\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 01:00:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 00E311EFCD\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 00:35:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA60VOhR026003\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 19:31:24 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA60VOr2026001\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 19:31:24 -0500\nDate: Mon, 5 Nov 2007 19:31:24 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r37766 - memory/trunk/memory-impl/impl/src/java/org/sakaiproject/memory/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 20:01:01 2007\nX-DSPAM-Confidence: 0.9829\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37766\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-05 19:31:18 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37766\n\nModified:\nmemory/trunk/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MultiRefCacheImpl.java\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-12116\nFixed\n\nConverted back to Vectors as we know this is safe and works.\nWe need to look at this from a concurrent point of view asap. In the re-writen versions I used a CHM.\n\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Mon Nov  5 19:07:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 19:07:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 19:07:30 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby flawless.mail.umich.edu () with ESMTP id lA607ROH019742;\n\tMon, 5 Nov 2007 19:07:27 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 472FB03A.3B68C.17586 ; \n\t 5 Nov 2007 19:07:25 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8A0A773585;\n\tTue,  6 Nov 2007 00:07:22 +0000 (GMT)\nMessage-ID: <200711060003.lA603B0N025978@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 411\n          for <source@collab.sakaiproject.org>;\n          Tue, 6 Nov 2007 00:07:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3054D1DA55\n\tfor <source@collab.sakaiproject.org>; Tue,  6 Nov 2007 00:06:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA603BMJ025980\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 19:03:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA603B0N025978\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 19:03:11 -0500\nDate: Mon, 5 Nov 2007 19:03:11 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [sakai] svn commit: r37765 - component/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 19:07:30 2007\nX-DSPAM-Confidence: 0.7546\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37765\n\nAuthor: ray@media.berkeley.edu\nDate: 2007-11-05 19:03:08 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37765\n\nModified:\ncomponent/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/util/SakaiApplicationContext.java\nLog:\nDon't create beans as a side-effect during startup\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom hu2@iupui.edu Mon Nov  5 18:19:20 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 18:19:20 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 18:19:20 -0500\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby casino.mail.umich.edu () with ESMTP id lA5NJKia031441;\n\tMon, 5 Nov 2007 18:19:20 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 472FA4F2.110D1.18221 ; \n\t 5 Nov 2007 18:19:16 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0952B709AB;\n\tMon,  5 Nov 2007 23:19:06 +0000 (GMT)\nMessage-ID: <200711052315.lA5NFCfm025937@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 600\n          for <source@collab.sakaiproject.org>;\n          Mon, 5 Nov 2007 23:18:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C6C5A1DA37\n\tfor <source@collab.sakaiproject.org>; Mon,  5 Nov 2007 23:18:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5NFCLb025939\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 18:15:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5NFCfm025937\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 18:15:12 -0500\nDate: Mon, 5 Nov 2007 18:15:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to hu2@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: hu2@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 18:19:20 2007\nX-DSPAM-Confidence: 0.9751\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37764\n\nAuthor: hu2@iupui.edu\nDate: 2007-11-05 18:15:10 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37764\n\nModified:\nmsgcntr/trunk/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages.properties\nmsgcntr/trunk/messageforums-app/src/webapp/jsp/privateMsg/pvtMsgDetail.jsp\nmsgcntr/trunk/messageforums-app/src/webapp/jsp/pvtMsgReplyAll.jsp\nLog:\nSAK-12073\nhttp://jira.sakaiproject.org/jira/browse/SAK-12073\nAbility to \"Reply All\" in the Messages tool\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Nov  5 17:24:21 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 17:24:21 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 17:24:21 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby awakenings.mail.umich.edu () with ESMTP id lA5MOKVW006537;\n\tMon, 5 Nov 2007 17:24:20 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 472F980E.A019E.5505 ; \n\t 5 Nov 2007 17:24:17 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 25B2470C2B;\n\tMon,  5 Nov 2007 22:24:10 +0000 (GMT)\nMessage-ID: <200711052220.lA5MK8xd025851@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 933\n          for <source@collab.sakaiproject.org>;\n          Mon, 5 Nov 2007 22:23:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BA4781F0A6\n\tfor <source@collab.sakaiproject.org>; Mon,  5 Nov 2007 22:23:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5MK8ex025853\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 17:20:08 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5MK8xd025851\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 17:20:08 -0500\nDate: Mon, 5 Nov 2007 17:20:08 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37763 - reference/branches/sakai_2-5-x/library/src/webapp/skin/default/images\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 17:24:21 2007\nX-DSPAM-Confidence: 0.7005\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37763\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-05 17:20:07 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37763\n\nAdded:\nreference/branches/sakai_2-5-x/library/src/webapp/skin/default/images/tab-arrow-down-active.gif\nLog:\nsvn merge -r 37670:37671 https://source.sakaiproject.org/svn/reference/trunk\nA    library/src/webapp/skin/default/images/tab-arrow-down-active.gif\nin-143-196:~/java/2-5/sakai_2-5-x/reference mmmay$ svn log -r 37670:37671 https://source.sakaiproject.org/svn/reference/trunk\n------------------------------------------------------------------------\nr37671 | eli@media.berkeley.edu | 2007-10-31 14:21:49 -0400 (Wed, 31 Oct 2007) | 1 line\n\nSAK-12092 Adding file fixes bug. The reference is already in the CSS\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom bkirschn@umich.edu Mon Nov  5 17:14:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 17:14:51 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 17:14:51 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby casino.mail.umich.edu () with ESMTP id lA5MEoTs026367;\n\tMon, 5 Nov 2007 17:14:50 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 472F95D5.3B45E.16453 ; \n\t 5 Nov 2007 17:14:48 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 86ED371B64;\n\tMon,  5 Nov 2007 22:14:42 +0000 (GMT)\nMessage-ID: <200711052210.lA5MAh98025839@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 620\n          for <source@collab.sakaiproject.org>;\n          Mon, 5 Nov 2007 22:14:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C32261D7D5\n\tfor <source@collab.sakaiproject.org>; Mon,  5 Nov 2007 22:14:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5MAhGD025841\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 17:10:43 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5MAh98025839\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 17:10:43 -0500\nDate: Mon, 5 Nov 2007 17:10:43 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: bkirschn@umich.edu\nSubject: [sakai] svn commit: r37762 - calendar/trunk/calendar-tool/tool/src/java/org/sakaiproject/calendar/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 17:14:51 2007\nX-DSPAM-Confidence: 0.9821\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37762\n\nAuthor: bkirschn@umich.edu\nDate: 2007-11-05 17:10:42 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37762\n\nModified:\ncalendar/trunk/calendar-tool/tool/src/java/org/sakaiproject/calendar/tool/CalendarAction.java\nLog:\nSAK-6867 fix incorrect logic for displaying group events\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Nov  5 17:06:40 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 17:06:40 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 17:06:40 -0500\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby fan.mail.umich.edu () with ESMTP id lA5M6clA027742;\n\tMon, 5 Nov 2007 17:06:38 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 472F93E6.B6DDE.12740 ; \n\t 5 Nov 2007 17:06:33 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3A8E573A92;\n\tMon,  5 Nov 2007 22:06:27 +0000 (GMT)\nMessage-ID: <200711052202.lA5M28cr025813@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 470\n          for <source@collab.sakaiproject.org>;\n          Mon, 5 Nov 2007 22:05:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7A6301D643\n\tfor <source@collab.sakaiproject.org>; Mon,  5 Nov 2007 22:05:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5M28ck025815\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 17:02:08 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5M28cr025813\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 17:02:08 -0500\nDate: Mon, 5 Nov 2007 17:02:08 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 17:06:40 2007\nX-DSPAM-Confidence: 0.7006\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37761\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-05 17:02:07 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37761\n\nModified:\nosp/branches/sakai_2-5-x/xsltcharon/xsltcharon-portal/xsl-portal/src/java/org/sakaiproject/portal/xsltcharon/impl/XsltRenderContext.java\nosp/branches/sakai_2-5-x/xsltcharon/xsltcharon-portal/xsl-portal/src/webapp/WEB-INF/transform/portal.xsl\nLog:\nsvn merge -r 37706:37707 https://source.sakaiproject.org/svn/osp/trunk\nU    xsltcharon/xsltcharon-portal/xsl-portal/src/java/org/sakaiproject/portal/xsltcharon/impl/XsltRenderContext.java\nU    xsltcharon/xsltcharon-portal/xsl-portal/src/webapp/WEB-INF/transform/portal.xsl\nin-143-196:~/java/2-5/sakai_2-5-x/osp mmmay$ svn log -r 37706:37707 https://source.sakaiproject.org/svn/osp/trunk\n------------------------------------------------------------------------\nr37707 | john.ellis@rsmart.com | 2007-11-02 13:13:25 -0400 (Fri, 02 Nov 2007) | 3 lines\n\nSAK-12097\nadded code to bring all config items into xml, then use the loginPortalPrefix config item in the xsl\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Nov  5 17:03:40 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 17:03:40 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 17:03:40 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby godsend.mail.umich.edu () with ESMTP id lA5M3dQf015952;\n\tMon, 5 Nov 2007 17:03:39 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 472F9332.9ED43.19015 ; \n\t 5 Nov 2007 17:03:34 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8404473A92;\n\tMon,  5 Nov 2007 22:03:27 +0000 (GMT)\nMessage-ID: <200711052159.lA5LxIYO025799@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 87\n          for <source@collab.sakaiproject.org>;\n          Mon, 5 Nov 2007 22:03:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B59331D643\n\tfor <source@collab.sakaiproject.org>; Mon,  5 Nov 2007 22:03:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5LxIER025801\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 16:59:18 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5LxIYO025799\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 16:59:18 -0500\nDate: Mon, 5 Nov 2007 16:59:18 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 17:03:40 2007\nX-DSPAM-Confidence: 0.6202\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37760\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-05 16:59:16 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37760\n\nModified:\nmsgcntr/branches/sakai_2-5-x/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java\nmsgcntr/branches/sakai_2-5-x/messageforums-app/src/java/org/sakaiproject/tool/messageforums/ui/MessageForumSynopticBean.java\nmsgcntr/branches/sakai_2-5-x/messageforums-app/src/webapp/jsp/privateMsg/pvtMsg.jsp\nmsgcntr/branches/sakai_2-5-x/messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/ui/PrivateMessageManagerImpl.java\nLog:\nsvn merge -r 37679:37680 https://source.sakaiproject.org/svn/msgcntr/trunk\nU    messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/ui/PrivateMessageManagerImpl.java\nU    messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java\nU    messageforums-app/src/java/org/sakaiproject/tool/messageforums/ui/MessageForumSynopticBean.java\nU    messageforums-app/src/webapp/jsp/privateMsg/pvtMsg.jsp\nin-143-196:~/java/2-5/sakai_2-5-x/msgcntr mmmay$ svn log -r 37679:37680 https://source.sakaiproject.org/svn/msgcntr/trunk\n------------------------------------------------------------------------\nr37680 | hu2@iupui.edu | 2007-11-01 09:03:59 -0400 (Thu, 01 Nov 2007) | 11 lines\n\nSAK-11130\nhttp://jira.sakaiproject.org/jira/browse/SAK-11130\nWith 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.\n\nWithout 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.\n\nQuick fix: do not localize pvt_deleted, pvt_received and pvt_sent. I've done it and it works.\n\nBetter 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. :-)\n\nit support english and spanish now.\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Nov  5 17:00:04 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 17:00:04 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 17:00:04 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby flawless.mail.umich.edu () with ESMTP id lA5M03gN013046;\n\tMon, 5 Nov 2007 17:00:03 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 472F925D.B092D.5513 ; \n\t 5 Nov 2007 17:00:00 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id AB7BA73A92;\n\tMon,  5 Nov 2007 21:59:46 +0000 (GMT)\nMessage-ID: <200711052155.lA5LtieP025782@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 470\n          for <source@collab.sakaiproject.org>;\n          Mon, 5 Nov 2007 21:59:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BD8AC1D93B\n\tfor <source@collab.sakaiproject.org>; Mon,  5 Nov 2007 21:59:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5Ltiw3025784\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 16:55:44 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5LtieP025782\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 16:55:44 -0500\nDate: Mon, 5 Nov 2007 16:55:44 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37759 - in sam/branches/sakai_2-5-x: . samigo-shared-deploy\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 17:00:04 2007\nX-DSPAM-Confidence: 0.7619\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37759\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-05 16:55:43 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37759\n\nAdded:\nsam/branches/sakai_2-5-x/samigo-shared-deploy/\nsam/branches/sakai_2-5-x/samigo-shared-deploy/pom.xml\nRemoved:\nsam/branches/sakai_2-5-x/samigo-shared-deploy/pom.xml\nModified:\nsam/branches/sakai_2-5-x/pom.xml\nLog:\nsvn merge -r 37725:37726 https://source.sakaiproject.org/svn/sam/trunk\nU    pom.xml\nA    samigo-shared-deploy\nA    samigo-shared-deploy/pom.xml\nin-143-196:~/java/2-5/sakai_2-5-x/sam mmmay$ svn log -r 37725:37726 https://source.sakaiproject.org/svn/sam/trunk\n------------------------------------------------------------------------\nr37726 | ktsao@stanford.edu | 2007-11-04 02:24:05 -0500 (Sun, 04 Nov 2007) | 1 line\n\nSAK-12089\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Nov  5 16:58:12 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 16:58:12 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 16:58:12 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby awakenings.mail.umich.edu () with ESMTP id lA5LwBOq020790;\n\tMon, 5 Nov 2007 16:58:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 472F91EE.63938.20229 ; \n\t 5 Nov 2007 16:58:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C07C67392B;\n\tMon,  5 Nov 2007 21:58:03 +0000 (GMT)\nMessage-ID: <200711052154.lA5Ls0HM025770@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 386\n          for <source@collab.sakaiproject.org>;\n          Mon, 5 Nov 2007 21:57:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6BD4C1D643\n\tfor <source@collab.sakaiproject.org>; Mon,  5 Nov 2007 21:57:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5Ls0Mh025772\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 16:54:00 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5Ls0HM025770\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 16:54:00 -0500\nDate: Mon, 5 Nov 2007 16:54:00 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37758 - sam/branches/sakai_2-5-x/samigo-app\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 16:58:12 2007\nX-DSPAM-Confidence: 0.7004\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37758\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-05 16:53:59 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37758\n\nModified:\nsam/branches/sakai_2-5-x/samigo-app/pom.xml\nLog:\nsvn merge -r 37672:37673 https://source.sakaiproject.org/svn/sam/trunk\nU    samigo-app/pom.xml\nin-143-196:~/java/2-5/sakai_2-5-x/sam mmmay$ svn log -r 37672:37673 https://source.sakaiproject.org/svn/sam/trunk\n------------------------------------------------------------------------\nr37673 | ktsao@stanford.edu | 2007-10-31 16:36:42 -0400 (Wed, 31 Oct 2007) | 1 line\n\nSAK-12090\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Nov  5 16:54:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 16:54:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 16:54:19 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby brazil.mail.umich.edu () with ESMTP id lA5LsHuf002721;\n\tMon, 5 Nov 2007 16:54:17 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 472F9103.1A361.21240 ; \n\t 5 Nov 2007 16:54:13 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9F5587362A;\n\tMon,  5 Nov 2007 21:54:08 +0000 (GMT)\nMessage-ID: <200711052150.lA5Lo6XW025758@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 943\n          for <source@collab.sakaiproject.org>;\n          Mon, 5 Nov 2007 21:53:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DDF061D5F0\n\tfor <source@collab.sakaiproject.org>; Mon,  5 Nov 2007 21:53:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5Lo6Zv025760\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 16:50:07 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5Lo6XW025758\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 16:50:06 -0500\nDate: Mon, 5 Nov 2007 16:50:06 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37757 - usermembership/branches/sakai_2-5-x/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 16:54:19 2007\nX-DSPAM-Confidence: 0.7610\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37757\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-05 16:50:05 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37757\n\nModified:\nusermembership/branches/sakai_2-5-x/tool/pom.xml\nLog:\nsvn merge -r 37730:37731 https://source.sakaiproject.org/svn/usermembership/trunk\nU    tool/pom.xml\nin-143-196:~/java/2-5/sakai_2-5-x/usermembership mmmay$ svn log -r 37730:37731 https://source.sakaiproject.org/svn/usermembership/trunk\n------------------------------------------------------------------------\nr37731 | nuno@ufp.pt | 2007-11-05 06:11:32 -0500 (Mon, 05 Nov 2007) | 1 line\n\nSAK-12104: Tool incorrectly deployed with Maven2 (blank tool page)\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Mon Nov  5 16:24:07 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 16:24:07 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 16:24:07 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby fan.mail.umich.edu () with ESMTP id lA5LO6u9030315;\n\tMon, 5 Nov 2007 16:24:06 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 472F89EF.E1E26.20102 ; \n\t 5 Nov 2007 16:24:03 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 646C568675;\n\tMon,  5 Nov 2007 21:23:57 +0000 (GMT)\nMessage-ID: <200711052119.lA5LJvkd025631@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 316\n          for <source@collab.sakaiproject.org>;\n          Mon, 5 Nov 2007 21:23:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BEC3D1F0F5\n\tfor <source@collab.sakaiproject.org>; Mon,  5 Nov 2007 21:23:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5LJvUt025633\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 16:19:58 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5LJvkd025631\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 16:19:57 -0500\nDate: Mon, 5 Nov 2007 16:19:57 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37756 - authz/branches/sakai_2-4-x/authz-tool/tool/src/java/org/sakaiproject/authz/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 16:24:07 2007\nX-DSPAM-Confidence: 0.9848\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37756\n\nAuthor: zqian@umich.edu\nDate: 2007-11-05 16:19:54 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37756\n\nModified:\nauthz/branches/sakai_2-4-x/authz-tool/tool/src/java/org/sakaiproject/authz/tool/RealmsAction.java\nLog:\nmerge fix to SAK-9996 into 2-4-x\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Mon Nov  5 16:21:26 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 16:21:26 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 16:21:26 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby faithful.mail.umich.edu () with ESMTP id lA5LLMV9002887;\n\tMon, 5 Nov 2007 16:21:22 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 472F894A.B2CB9.14943 ; \n\t 5 Nov 2007 16:21:18 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 150897392B;\n\tMon,  5 Nov 2007 21:21:12 +0000 (GMT)\nMessage-ID: <200711052117.lA5LHEIF025619@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 990\n          for <source@collab.sakaiproject.org>;\n          Mon, 5 Nov 2007 21:21:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9B4621F0A6\n\tfor <source@collab.sakaiproject.org>; Mon,  5 Nov 2007 21:21:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5LHExh025621\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 16:17:14 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5LHEIF025619\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 16:17:14 -0500\nDate: Mon, 5 Nov 2007 16:17:14 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37755 - authz/trunk/authz-tool/tool/src/java/org/sakaiproject/authz/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 16:21:26 2007\nX-DSPAM-Confidence: 0.9870\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37755\n\nAuthor: zqian@umich.edu\nDate: 2007-11-05 16:17:11 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37755\n\nModified:\nauthz/trunk/authz-tool/tool/src/java/org/sakaiproject/authz/tool/RealmsAction.java\nLog:\nfix 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\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Mon Nov  5 16:17:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 16:17:53 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 16:17:53 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby awakenings.mail.umich.edu () with ESMTP id lA5LHpnP025802;\n\tMon, 5 Nov 2007 16:17:51 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 472F8878.6EF4D.31032 ; \n\t 5 Nov 2007 16:17:48 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EF2EC7383B;\n\tMon,  5 Nov 2007 21:17:40 +0000 (GMT)\nMessage-ID: <200711052113.lA5LDf3T025607@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 713\n          for <source@collab.sakaiproject.org>;\n          Mon, 5 Nov 2007 21:17:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 20BFE1F0A6\n\tfor <source@collab.sakaiproject.org>; Mon,  5 Nov 2007 21:17:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5LDf6I025609\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 16:13:41 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5LDf3T025607\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 16:13:41 -0500\nDate: Mon, 5 Nov 2007 16:13:41 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 16:17:53 2007\nX-DSPAM-Confidence: 0.9851\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37754\n\nAuthor: zqian@umich.edu\nDate: 2007-11-05 16:13:37 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37754\n\nModified:\nsite-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nsite-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-list.vm\nLog:\nmerge fix to SAK-9996 into 2-4-x branch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Mon Nov  5 16:14:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 16:14:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 16:14:30 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby faithful.mail.umich.edu () with ESMTP id lA5LETD7030348;\n\tMon, 5 Nov 2007 16:14:29 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 472F87AD.97578.16296 ; \n\t 5 Nov 2007 16:14:25 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 34B827383B;\n\tMon,  5 Nov 2007 21:14:14 +0000 (GMT)\nMessage-ID: <200711052110.lA5LAFUk025595@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 83\n          for <source@collab.sakaiproject.org>;\n          Mon, 5 Nov 2007 21:13:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7A1121F0A6\n\tfor <source@collab.sakaiproject.org>; Mon,  5 Nov 2007 21:14:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5LAFLW025597\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 16:10:15 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5LAFUk025595\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 16:10:15 -0500\nDate: Mon, 5 Nov 2007 16:10:15 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [sakai] svn commit: r37753 - component/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 16:14:30 2007\nX-DSPAM-Confidence: 0.7514\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37753\n\nAuthor: ray@media.berkeley.edu\nDate: 2007-11-05 16:10:09 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37753\n\nModified:\ncomponent/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/util/BeanFactoryPostProcessorCreator.java\ncomponent/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/util/ReversiblePropertyOverrideConfigurer.java\ncomponent/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/util/SakaiApplicationContext.java\ncomponent/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/util/SakaiProperties.java\ncomponent/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/util/SakaiPropertyPromoter.java\nLog:\nAdd some JavaDoc\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Mon Nov  5 15:42:58 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 15:42:58 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 15:42:58 -0500\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby panther.mail.umich.edu () with ESMTP id lA5KgvHC014028;\n\tMon, 5 Nov 2007 15:42:57 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 472F8036.7AD09.18724 ; \n\t 5 Nov 2007 15:42:33 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8881B71282;\n\tMon,  5 Nov 2007 20:42:24 +0000 (GMT)\nMessage-ID: <200711052038.lA5KcFZG025447@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 595\n          for <source@collab.sakaiproject.org>;\n          Mon, 5 Nov 2007 20:42:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 89C981CDD3\n\tfor <source@collab.sakaiproject.org>; Mon,  5 Nov 2007 20:42:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5KcFNF025449\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 15:38:16 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5KcFZG025447\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 15:38:15 -0500\nDate: Mon, 5 Nov 2007 15:38:15 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [sakai] svn commit: r37752 - in component/branches/SAK-8315/component-api/component/src: config/org/sakaiproject/config java/org/sakaiproject/component/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 15:42:58 2007\nX-DSPAM-Confidence: 0.7544\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37752\n\nAuthor: ray@media.berkeley.edu\nDate: 2007-11-05 15:38:09 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37752\n\nAdded:\ncomponent/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/component/impl/DynamicDefaultSakaiProperties.java\nModified:\ncomponent/branches/SAK-8315/component-api/component/src/config/org/sakaiproject/config/sakai-configuration.xml\ncomponent/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/component/impl/SpringCompMgr.java\nLog:\nAdd support for dynamically set default properties\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Mon Nov  5 15:23:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 15:23:37 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 15:23:37 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby faithful.mail.umich.edu () with ESMTP id lA5KNa7B026751;\n\tMon, 5 Nov 2007 15:23:36 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 472F7BC2.97C75.8072 ; \n\t 5 Nov 2007 15:23:33 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 872907394B;\n\tMon,  5 Nov 2007 20:23:27 +0000 (GMT)\nMessage-ID: <200711052019.lA5KJNSK025299@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 875\n          for <source@collab.sakaiproject.org>;\n          Mon, 5 Nov 2007 20:23:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0227F1F183\n\tfor <source@collab.sakaiproject.org>; Mon,  5 Nov 2007 20:23:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5KJNcU025301\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 15:19:23 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5KJNSK025299\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 15:19:23 -0500\nDate: Mon, 5 Nov 2007 15:19:23 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37751 - site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 15:23:37 2007\nX-DSPAM-Confidence: 0.9844\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37751\n\nAuthor: zqian@umich.edu\nDate: 2007-11-05 15:19:21 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37751\n\nModified:\nsite-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nLog:\nmerge fix to SAK-11786 into 2-4-x branch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Mon Nov  5 15:14:21 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 15:14:21 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 15:14:21 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby godsend.mail.umich.edu () with ESMTP id lA5KEKW7006066;\n\tMon, 5 Nov 2007 15:14:20 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 472F7990.8E884.18160 ; \n\t 5 Nov 2007 15:14:11 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4B5227393C;\n\tMon,  5 Nov 2007 20:14:10 +0000 (GMT)\nMessage-ID: <200711052010.lA5KABbd025258@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 534\n          for <source@collab.sakaiproject.org>;\n          Mon, 5 Nov 2007 20:13:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9C9F61F121\n\tfor <source@collab.sakaiproject.org>; Mon,  5 Nov 2007 20:13:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5KABOQ025260\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 15:10:11 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5KABbd025258\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 15:10:11 -0500\nDate: Mon, 5 Nov 2007 15:10:11 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37750 - site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 15:14:21 2007\nX-DSPAM-Confidence: 0.9851\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37750\n\nAuthor: zqian@umich.edu\nDate: 2007-11-05 15:10:09 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37750\n\nModified:\nsite-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nLog:\nmerge fix to SAK-11467 into 2-4-x branch: svn merge -r 34954:34955 https://source.sakaiproject.org/svn//site-manage/trunk/\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom csev@umich.edu Mon Nov  5 15:13:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 15:13:02 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 15:13:02 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby sleepers.mail.umich.edu () with ESMTP id lA5KD14B028211;\n\tMon, 5 Nov 2007 15:13:01 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 472F7947.2E515.2498 ; \n\t 5 Nov 2007 15:12:58 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B0E177392C;\n\tMon,  5 Nov 2007 20:12:55 +0000 (GMT)\nMessage-ID: <200711052008.lA5K8sFE025246@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 192\n          for <source@collab.sakaiproject.org>;\n          Mon, 5 Nov 2007 20:12:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B49C91F14E\n\tfor <source@collab.sakaiproject.org>; Mon,  5 Nov 2007 20:12:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5K8s77025248\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 15:08:54 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5K8sFE025246\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 15:08:54 -0500\nDate: Mon, 5 Nov 2007 15:08:54 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: csev@umich.edu\nSubject: [sakai] svn commit: r37749 - providers/trunk/component/src/webapp/WEB-INF\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 15:13:02 2007\nX-DSPAM-Confidence: 0.9849\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37749\n\nAuthor: csev@umich.edu\nDate: 2007-11-05 15:08:49 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37749\n\nModified:\nproviders/trunk/component/src/webapp/WEB-INF/components.xml\nLog:\nSAK-12113\n\nCommitted the wrong version of components.xml - reverting.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom josrodri@iupui.edu Mon Nov  5 15:09:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 15:09:43 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 15:09:43 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby faithful.mail.umich.edu () with ESMTP id lA5K9gVd018447;\n\tMon, 5 Nov 2007 15:09:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 472F787F.7B84F.12877 ; \n\t 5 Nov 2007 15:09:38 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id F0E4B738DD;\n\tMon,  5 Nov 2007 20:09:35 +0000 (GMT)\nMessage-ID: <200711052005.lA5K5avY025215@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 413\n          for <source@collab.sakaiproject.org>;\n          Mon, 5 Nov 2007 20:09:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8666A1F14E\n\tfor <source@collab.sakaiproject.org>; Mon,  5 Nov 2007 20:09:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5K5brZ025217\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 15:05:37 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5K5avY025215\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 15:05:36 -0500\nDate: Mon, 5 Nov 2007 15:05:36 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to josrodri@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: josrodri@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 15:09:43 2007\nX-DSPAM-Confidence: 0.9812\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37748\n\nAuthor: josrodri@iupui.edu\nDate: 2007-11-05 15:05:34 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37748\n\nAdded:\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/BulkAssignmentDecoratedBean.java\ngradebook/trunk/app/ui/src/webapp/inc/bulkNewItems.jspf\ngradebook/trunk/app/ui/src/webapp/js/multiItemAdd.js\nModified:\ngradebook/trunk/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java\ngradebook/trunk/app/ui/src/webapp/addAssignment.jsp\ngradebook/trunk/app/ui/src/webapp/inc/assignmentEditing.jspf\nLog:\nSAK-12114 (local issue ONC-2): allow multiple gradebook item additions at one time.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom csev@umich.edu Mon Nov  5 15:06:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 15:06:43 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 15:06:43 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby fan.mail.umich.edu () with ESMTP id lA5K6geH006346;\n\tMon, 5 Nov 2007 15:06:42 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 472F77C0.DDEA2.23307 ; \n\t 5 Nov 2007 15:06:29 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5F0567385A;\n\tMon,  5 Nov 2007 20:06:24 +0000 (GMT)\nMessage-ID: <200711052002.lA5K2FXc025195@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 93\n          for <source@collab.sakaiproject.org>;\n          Mon, 5 Nov 2007 20:06:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 826B81F121\n\tfor <source@collab.sakaiproject.org>; Mon,  5 Nov 2007 20:06:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5K2GfU025197\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 15:02:16 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5K2FXc025195\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 15:02:15 -0500\nDate: Mon, 5 Nov 2007 15:02:15 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: csev@umich.edu\nSubject: [sakai] svn commit: r37747 - in providers/trunk/component: . src/webapp/WEB-INF\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 15:06:43 2007\nX-DSPAM-Confidence: 0.9850\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37747\n\nAuthor: csev@umich.edu\nDate: 2007-11-05 15:02:11 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37747\n\nModified:\nproviders/trunk/component/pom.xml\nproviders/trunk/component/src/webapp/WEB-INF/components.xml\nLog:\nSAK-12113\n\nAdd the commented out code for the inclusion of the all hands dependency.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Mon Nov  5 15:02:09 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 15:02:09 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 15:02:09 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby mission.mail.umich.edu () with ESMTP id lA5K291d013244;\n\tMon, 5 Nov 2007 15:02:09 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 472F76B2.D3D4C.9571 ; \n\t 5 Nov 2007 15:01:58 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8394373933;\n\tMon,  5 Nov 2007 20:01:56 +0000 (GMT)\nMessage-ID: <200711051957.lA5JvwOl025167@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 995\n          for <source@collab.sakaiproject.org>;\n          Mon, 5 Nov 2007 20:01:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 727361F121\n\tfor <source@collab.sakaiproject.org>; Mon,  5 Nov 2007 20:01:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5JvwhF025169\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 14:57:58 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5JvwOl025167\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 14:57:58 -0500\nDate: Mon, 5 Nov 2007 14:57:58 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37746 - site-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 15:02:09 2007\nX-DSPAM-Confidence: 0.9847\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37746\n\nAuthor: zqian@umich.edu\nDate: 2007-11-05 14:57:56 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37746\n\nModified:\nsite-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nLog:\nfix 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\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom bahollad@indiana.edu Mon Nov  5 13:13:07 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 13:13:07 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 13:13:07 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby flawless.mail.umich.edu () with ESMTP id lA5ID6ve020389;\n\tMon, 5 Nov 2007 13:13:06 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 472F5D2B.14F09.25644 ; \n\t 5 Nov 2007 13:13:03 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3D6B773762;\n\tMon,  5 Nov 2007 18:12:03 +0000 (GMT)\nMessage-ID: <200711051758.lA5HwCA0024902@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 524\n          for <source@collab.sakaiproject.org>;\n          Mon, 5 Nov 2007 18:01:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B68831FCCD\n\tfor <source@collab.sakaiproject.org>; Mon,  5 Nov 2007 18:01:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5HwCtJ024904\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 12:58:12 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5HwCA0024902\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 12:58:12 -0500\nDate: Mon, 5 Nov 2007 12:58:12 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bahollad@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: bahollad@indiana.edu\nSubject: [sakai] svn commit: r37744 - reference/trunk/docs/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 13:13:07 2007\nX-DSPAM-Confidence: 0.6501\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37744\n\nAuthor: bahollad@indiana.edu\nDate: 2007-11-05 12:58:10 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37744\n\nModified:\nreference/trunk/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql\nreference/trunk/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\nLog:\nSAK-12027\nPossible problems with sakai 2.4->2.5 mysql conversion script\n\nFixed these two errors:\n>[Error] Script lines: 724-727 ----------------------\nDuplicate column name 'itemscope'\n\n>[Error] Script lines: 728-728 ----------------------\nDuplicate key name 'isearchbuilderitem_sco' \n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Mon Nov  5 13:12:41 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 13:12:41 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 13:12:41 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby score.mail.umich.edu () with ESMTP id lA5ICeuU016131;\n\tMon, 5 Nov 2007 13:12:40 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 472F5D0F.DF836.19356 ; \n\t 5 Nov 2007 13:12:35 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 52AB37368B;\n\tMon,  5 Nov 2007 18:12:01 +0000 (GMT)\nMessage-ID: <200711051805.lA5I5BP4024916@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 96\n          for <source@collab.sakaiproject.org>;\n          Mon, 5 Nov 2007 18:08:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8624EB56C\n\tfor <source@collab.sakaiproject.org>; Mon,  5 Nov 2007 18:08:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5I5Bpf024918\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 13:05:11 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5I5BP4024916\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 13:05:11 -0500\nDate: Mon, 5 Nov 2007 13:05:11 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37745 - in content/branches/SAK-12105/content-test/impl: . src/java/org/sakaiproject/content/test\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 13:12:41 2007\nX-DSPAM-Confidence: 0.9862\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37745\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-05 13:05:03 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37745\n\nModified:\ncontent/branches/SAK-12105/content-test/impl/pom.xml\ncontent/branches/SAK-12105/content-test/impl/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java\nLog:\nSAK-12105: Tests for adding a large set of resources and removing it are now working, fixed up the maven 2 build\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jzaremba@unicon.net Mon Nov  5 11:47:35 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 11:47:35 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 11:47:35 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby sleepers.mail.umich.edu () with ESMTP id lA5GlYNv009323;\n\tMon, 5 Nov 2007 11:47:34 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 472F491D.2F010.14177 ; \n\t 5 Nov 2007 11:47:28 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7510371C22;\n\tMon,  5 Nov 2007 16:47:24 +0000 (GMT)\nMessage-ID: <200711051643.lA5GhQJx024693@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 676\n          for <source@collab.sakaiproject.org>;\n          Mon, 5 Nov 2007 16:47:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D89DC1FD12\n\tfor <source@collab.sakaiproject.org>; Mon,  5 Nov 2007 16:47:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5GhQk9024695\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 11:43:26 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5GhQJx024693\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 11:43:26 -0500\nDate: Mon, 5 Nov 2007 11:43:26 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jzaremba@unicon.net using -f\nTo: source@collab.sakaiproject.org\nFrom: jzaremba@unicon.net\nSubject: [sakai] svn commit: r37742 - content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 11:47:35 2007\nX-DSPAM-Confidence: 0.8410\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37742\n\nAuthor: jzaremba@unicon.net\nDate: 2007-11-05 11:43:22 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37742\n\nModified:\ncontent/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\nLog:\nTSQ-797 Resolved NPE in loadConditionData method\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Mon Nov  5 11:05:28 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 11:05:28 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 11:05:28 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby mission.mail.umich.edu () with ESMTP id lA5G5RKk001609;\n\tMon, 5 Nov 2007 11:05:27 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 472F3F38.AFEA8.7345 ; \n\t 5 Nov 2007 11:05:15 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 914577357D;\n\tMon,  5 Nov 2007 16:05:11 +0000 (GMT)\nMessage-ID: <200711051601.lA5G13cO024539@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 642\n          for <source@collab.sakaiproject.org>;\n          Mon, 5 Nov 2007 16:04:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CD2781D5EA\n\tfor <source@collab.sakaiproject.org>; Mon,  5 Nov 2007 16:04:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5G13nl024541\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 11:01:03 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5G13cO024539\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 11:01:03 -0500\nDate: Mon, 5 Nov 2007 11:01:03 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37740 - oncourse/trunk/src/site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 11:05:28 2007\nX-DSPAM-Confidence: 0.9825\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37740\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-11-05 11:01:01 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37740\n\nModified:\noncourse/trunk/src/site-manage/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nLog:\nONC-143 Combine Rosters adds News tool to all Sites \n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Mon Nov  5 10:58:26 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 10:58:26 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 10:58:26 -0500\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby casino.mail.umich.edu () with ESMTP id lA5FwPKT029257;\n\tMon, 5 Nov 2007 10:58:25 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 472F3D98.CA0CF.23395 ; \n\t 5 Nov 2007 10:58:19 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 13E5071717;\n\tMon,  5 Nov 2007 15:58:14 +0000 (GMT)\nMessage-ID: <200711051554.lA5FsFkF024509@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 67\n          for <source@collab.sakaiproject.org>;\n          Mon, 5 Nov 2007 15:57:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 176051D5EA\n\tfor <source@collab.sakaiproject.org>; Mon,  5 Nov 2007 15:57:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5FsFRn024511\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 10:54:15 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5FsFkF024509\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 10:54:15 -0500\nDate: Mon, 5 Nov 2007 10:54:15 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 10:58:26 2007\nX-DSPAM-Confidence: 0.9900\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37739\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-05 10:53:54 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37739\n\nAdded:\ncontent/branches/SAK-12105/content-test/impl/\ncontent/branches/SAK-12105/content-test/impl/pom.xml\ncontent/branches/SAK-12105/content-test/impl/src/\ncontent/branches/SAK-12105/content-test/impl/src/java/\ncontent/branches/SAK-12105/content-test/impl/src/java/org/\ncontent/branches/SAK-12105/content-test/impl/src/java/org/sakaiproject/\ncontent/branches/SAK-12105/content-test/impl/src/java/org/sakaiproject/content/\ncontent/branches/SAK-12105/content-test/impl/src/java/org/sakaiproject/content/test/\ncontent/branches/SAK-12105/content-test/impl/src/java/org/sakaiproject/content/test/LoadTestContentHostingService.java\ncontent/branches/SAK-12105/content-test/pack/\ncontent/branches/SAK-12105/content-test/pack/pom.xml\ncontent/branches/SAK-12105/content-test/pack/src/\ncontent/branches/SAK-12105/content-test/pack/src/webapp/\ncontent/branches/SAK-12105/content-test/pack/src/webapp/WEB-INF/\ncontent/branches/SAK-12105/content-test/pack/src/webapp/WEB-INF/components.xml\ncontent/branches/SAK-12105/content-test/pom.xml\nModified:\ncontent/branches/SAK-12105/content-test/.classpath\ncontent/branches/SAK-12105/content-test/.project\ncontent/branches/SAK-12105/content-test/test/src/java/org/sakaiproject/content/test/ContentIntegrationTest.java\nLog:\nSAK-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\nCleaned up the exsting stuff in content-test and commented out the other set of tests\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom csev@umich.edu Mon Nov  5 10:49:26 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 10:49:26 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 10:49:26 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby faithful.mail.umich.edu () with ESMTP id lA5FnOpX031198;\n\tMon, 5 Nov 2007 10:49:24 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 472F3B7E.8A964.10520 ; \n\t 5 Nov 2007 10:49:21 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 224C273548;\n\tMon,  5 Nov 2007 15:48:18 +0000 (GMT)\nMessage-ID: <200711051545.lA5FjGPb024473@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 309\n          for <source@collab.sakaiproject.org>;\n          Mon, 5 Nov 2007 15:48:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 405E51FD1C\n\tfor <source@collab.sakaiproject.org>; Mon,  5 Nov 2007 15:48:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5FjG0Q024475\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 10:45:16 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5FjGPb024473\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 10:45:16 -0500\nDate: Mon, 5 Nov 2007 10:45:16 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to csev@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: csev@umich.edu\nSubject: [sakai] svn commit: r37736 - web/trunk/web-impl/impl/src/java/org/sakaiproject/web/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 10:49:26 2007\nX-DSPAM-Confidence: 0.9845\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37736\n\nAuthor: csev@umich.edu\nDate: 2007-11-05 10:45:14 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37736\n\nModified:\nweb/trunk/web-impl/impl/src/java/org/sakaiproject/web/impl/WebServiceImpl.java\nLog:\nSAK-12110\n\nAdd extra check to make sure the toolsession is not null in the case where \nthe service is being used from a batch job, web service, or some other import\nscenario where there is no browser ad no user.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Mon Nov  5 08:46:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 08:46:13 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 08:46:13 -0500\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby faithful.mail.umich.edu () with ESMTP id lA5DkB9w029206;\n\tMon, 5 Nov 2007 08:46:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 472F1E9D.628ED.29484 ; \n\t 5 Nov 2007 08:46:08 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A7CF6733EF;\n\tMon,  5 Nov 2007 13:46:20 +0000 (GMT)\nMessage-ID: <200711051342.lA5Dg3sJ023940@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 936\n          for <source@collab.sakaiproject.org>;\n          Mon, 5 Nov 2007 13:46:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2BCDB1D58E\n\tfor <source@collab.sakaiproject.org>; Mon,  5 Nov 2007 13:45:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5Dg3uu023942\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 08:42:03 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5Dg3sJ023940\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 08:42:03 -0500\nDate: Mon, 5 Nov 2007 08:42:03 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r37733 - content/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 08:46:13 2007\nX-DSPAM-Confidence: 0.8428\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37733\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-11-05 08:42:02 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37733\n\nAdded:\ncontent/branches/SAK-12105/\nLog:\nNew /svn/content/branches/SAK-12105 for Aaron Zeckoski\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom nuno@ufp.pt Mon Nov  5 06:38:00 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 06:38:00 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 06:38:00 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby fan.mail.umich.edu () with ESMTP id lA5BbxCv012549;\n\tMon, 5 Nov 2007 06:37:59 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 472F0091.D45A1.20848 ; \n\t 5 Nov 2007 06:37:56 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7415470E11;\n\tMon,  5 Nov 2007 11:37:55 +0000 (GMT)\nMessage-ID: <200711051129.lA5BT7E5023776@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 193\n          for <source@collab.sakaiproject.org>;\n          Mon, 5 Nov 2007 11:32:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0992E1CDDB\n\tfor <source@collab.sakaiproject.org>; Mon,  5 Nov 2007 11:32:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5BT76O023778\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 06:29:07 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5BT7E5023776\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 06:29:07 -0500\nDate: Mon, 5 Nov 2007 06:29:07 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f\nTo: source@collab.sakaiproject.org\nFrom: nuno@ufp.pt\nSubject: [sakai] svn commit: r37732 - in usermembership/trunk/tool/src: java/org/sakaiproject/umem/tool/ui webapp/tools\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 06:38:00 2007\nX-DSPAM-Confidence: 0.8438\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37732\n\nAuthor: nuno@ufp.pt\nDate: 2007-11-05 06:28:57 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37732\n\nModified:\nusermembership/trunk/tool/src/java/org/sakaiproject/umem/tool/ui/UserListBean.java\nusermembership/trunk/tool/src/webapp/tools/sakai.usermembership.xml\nLog:\nSAK-12088: filtering the searching and viewing of users to only those users with the same named usertype(s)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom nuno@ufp.pt Mon Nov  5 06:15:55 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 05 Nov 2007 06:15:55 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 05 Nov 2007 06:15:55 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby sleepers.mail.umich.edu () with ESMTP id lA5BFqAM005108;\n\tMon, 5 Nov 2007 06:15:52 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 472EFB62.E81B2.14923 ; \n\t 5 Nov 2007 06:15:49 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 71A227319D;\n\tMon,  5 Nov 2007 11:15:44 +0000 (GMT)\nMessage-ID: <200711051111.lA5BBduq023749@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 359\n          for <source@collab.sakaiproject.org>;\n          Mon, 5 Nov 2007 11:15:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3755F1FCDF\n\tfor <source@collab.sakaiproject.org>; Mon,  5 Nov 2007 11:15:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA5BBeuG023751\n\tfor <source@collab.sakaiproject.org>; Mon, 5 Nov 2007 06:11:40 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA5BBduq023749\n\tfor source@collab.sakaiproject.org; Mon, 5 Nov 2007 06:11:39 -0500\nDate: Mon, 5 Nov 2007 06:11:39 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f\nTo: source@collab.sakaiproject.org\nFrom: nuno@ufp.pt\nSubject: [sakai] svn commit: r37731 - usermembership/trunk/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Nov  5 06:15:55 2007\nX-DSPAM-Confidence: 0.9798\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37731\n\nAuthor: nuno@ufp.pt\nDate: 2007-11-05 06:11:32 -0500 (Mon, 05 Nov 2007)\nNew Revision: 37731\n\nModified:\nusermembership/trunk/tool/pom.xml\nLog:\nSAK-12104: Tool incorrectly deployed with Maven2 (blank tool page)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Sun Nov  4 10:42:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 04 Nov 2007 10:42:13 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 04 Nov 2007 10:42:13 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby chaos.mail.umich.edu () with ESMTP id lA4FgDmG010585;\n\tSun, 4 Nov 2007 10:42:13 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 472DE84D.8ED66.20680 ; \n\t 4 Nov 2007 10:42:10 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 40DF27262C;\n\tSun,  4 Nov 2007 15:41:56 +0000 (GMT)\nMessage-ID: <200711021311.lA2DBfMT030317@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 42\n          for <source@collab.sakaiproject.org>;\n          Sun, 4 Nov 2007 15:40:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 176251DE33\n\tfor <source@collab.sakaiproject.org>; Fri,  2 Nov 2007 13:15:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2DBfYp030319\n\tfor <source@collab.sakaiproject.org>; Fri, 2 Nov 2007 09:11:41 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2DBfMT030317\n\tfor source@collab.sakaiproject.org; Fri, 2 Nov 2007 09:11:41 -0400\nDate: Fri, 2 Nov 2007 09:11:41 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37699 - component/branches/sakai_2-5-x/component-api/component/src/config/org/sakaiproject/config\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov  4 10:42:13 2007\nX-DSPAM-Confidence: 0.7006\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37699\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-02 09:11:40 -0400 (Fri, 02 Nov 2007)\nNew Revision: 37699\n\nModified:\ncomponent/branches/sakai_2-5-x/component-api/component/src/config/org/sakaiproject/config/sakai.properties\nLog:\nsvn merge -r 37696:37697 https://source.sakaiproject.org/svn/component/trunk\nU    component-api/component/src/config/org/sakaiproject/config/sakai.properties\nin-143-196:~/java/2-5/sakai_2-5-x/component mmmay$ svn log -r 37696:37697 https://source.sakaiproject.org/svn/component/trunk\n------------------------------------------------------------------------\nr37697 | ian@caret.cam.ac.uk | 2007-11-02 02:10:20 -0400 (Fri, 02 Nov 2007) | 4 lines\n\nhttp://jira.sakaiproject.org/jira/browse/SAK-12055\nFixed\n\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom bkirschn@umich.edu Sun Nov  4 10:42:07 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 04 Nov 2007 10:42:07 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 04 Nov 2007 10:42:07 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby sleepers.mail.umich.edu () with ESMTP id lA4Fg6NE011069;\n\tSun, 4 Nov 2007 10:42:06 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 472DE847.14E71.11520 ; \n\t 4 Nov 2007 10:42:03 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 48C88725DD;\n\tSun,  4 Nov 2007 15:41:55 +0000 (GMT)\nMessage-ID: <200711021904.lA2J4sbU030934@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 358\n          for <source@collab.sakaiproject.org>;\n          Sun, 4 Nov 2007 15:40:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 105DB1E358\n\tfor <source@collab.sakaiproject.org>; Fri,  2 Nov 2007 19:08:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2J4s3R030936\n\tfor <source@collab.sakaiproject.org>; Fri, 2 Nov 2007 15:04:54 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2J4sbU030934\n\tfor source@collab.sakaiproject.org; Fri, 2 Nov 2007 15:04:54 -0400\nDate: Fri, 2 Nov 2007 15:04:54 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: bkirschn@umich.edu\nSubject: [sakai] svn commit: r37722 - mailtool/trunk/mailtool/src/bundle/org/sakaiproject/tool/mailtool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov  4 10:42:07 2007\nX-DSPAM-Confidence: 0.9839\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37722\n\nAuthor: bkirschn@umich.edu\nDate: 2007-11-02 15:04:50 -0400 (Fri, 02 Nov 2007)\nNew Revision: 37722\n\nModified:\nmailtool/trunk/mailtool/src/bundle/org/sakaiproject/tool/mailtool/Messages_nl.properties\nLog:\nSAK-11241 Dutch translations\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Sun Nov  4 10:41:33 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 04 Nov 2007 10:41:33 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 04 Nov 2007 10:41:33 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby sleepers.mail.umich.edu () with ESMTP id lA4FfXiQ010925;\n\tSun, 4 Nov 2007 10:41:33 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 472DE823.EB73B.19705 ; \n\t 4 Nov 2007 10:41:27 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7C0D37261E;\n\tSun,  4 Nov 2007 15:41:19 +0000 (GMT)\nMessage-ID: <200711021837.lA2IbOPT030739@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 786\n          for <source@collab.sakaiproject.org>;\n          Sun, 4 Nov 2007 15:40:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1FB911E2B8\n\tfor <source@collab.sakaiproject.org>; Fri,  2 Nov 2007 18:40:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2IbOQr030741\n\tfor <source@collab.sakaiproject.org>; Fri, 2 Nov 2007 14:37:24 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2IbOPT030739\n\tfor source@collab.sakaiproject.org; Fri, 2 Nov 2007 14:37:24 -0400\nDate: Fri, 2 Nov 2007 14:37:24 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r37710 - content/trunk/content-tool/tool/src/webapp\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov  4 10:41:33 2007\nX-DSPAM-Confidence: 0.9864\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37710\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-02 14:37:21 -0400 (Fri, 02 Nov 2007)\nNew Revision: 37710\n\nRemoved:\ncontent/trunk/content-tool/tool/src/webapp/dojo/\nLog:\nSAK-12063\nRemoved dojo/dijit source from content-tool\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom bkirschn@umich.edu Sun Nov  4 10:25:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 04 Nov 2007 10:25:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 04 Nov 2007 10:25:30 -0500\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby flawless.mail.umich.edu () with ESMTP id lA4FPTAM011469;\n\tSun, 4 Nov 2007 10:25:29 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 472DE460.CA732.15067 ; \n\t 4 Nov 2007 10:25:23 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 738A0724DC;\n\tSun,  4 Nov 2007 15:25:19 +0000 (GMT)\nMessage-ID: <200711021903.lA2J3csl030838@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 195\n          for <source@collab.sakaiproject.org>;\n          Sun, 4 Nov 2007 15:23:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 106C91E344\n\tfor <source@collab.sakaiproject.org>; Fri,  2 Nov 2007 19:07:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2J3cme030840\n\tfor <source@collab.sakaiproject.org>; Fri, 2 Nov 2007 15:03:38 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2J3csl030838\n\tfor source@collab.sakaiproject.org; Fri, 2 Nov 2007 15:03:38 -0400\nDate: Fri, 2 Nov 2007 15:03:38 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: bkirschn@umich.edu\nSubject: [sakai] svn commit: r37714 - announcement/trunk/announcement-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov  4 10:25:30 2007\nX-DSPAM-Confidence: 0.9874\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37714\n\nAuthor: bkirschn@umich.edu\nDate: 2007-11-02 15:03:35 -0400 (Fri, 02 Nov 2007)\nNew Revision: 37714\n\nModified:\nannouncement/trunk/announcement-tool/tool/src/bundle/announcement_nl.properties\nLog:\nSAK-11241 Dutch translations\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom bkirschn@umich.edu Sun Nov  4 10:22:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 04 Nov 2007 10:22:19 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 04 Nov 2007 10:22:19 -0500\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby jacknife.mail.umich.edu () with ESMTP id lA4FMIcX028830;\n\tSun, 4 Nov 2007 10:22:18 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 472DE3A5.BD83F.30704 ; \n\t 4 Nov 2007 10:22:16 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4A4BB71552;\n\tSun,  4 Nov 2007 15:20:25 +0000 (GMT)\nMessage-ID: <200711021903.lA2J3iHV030850@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 53\n          for <source@collab.sakaiproject.org>;\n          Sat, 3 Nov 2007 18:30:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C0BCE1E346\n\tfor <source@collab.sakaiproject.org>; Fri,  2 Nov 2007 19:07:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2J3iC7030852\n\tfor <source@collab.sakaiproject.org>; Fri, 2 Nov 2007 15:03:44 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2J3iHV030850\n\tfor source@collab.sakaiproject.org; Fri, 2 Nov 2007 15:03:44 -0400\nDate: Fri, 2 Nov 2007 15:03:44 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: bkirschn@umich.edu\nSubject: [sakai] svn commit: r37715 - assignment/trunk/assignment-bundles\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov  4 10:22:19 2007\nX-DSPAM-Confidence: 0.9868\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37715\n\nAuthor: bkirschn@umich.edu\nDate: 2007-11-02 15:03:41 -0400 (Fri, 02 Nov 2007)\nNew Revision: 37715\n\nModified:\nassignment/trunk/assignment-bundles/assignment_nl.properties\nLog:\nSAK-11241 Dutch translations\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Sun Nov  4 10:16:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 04 Nov 2007 10:16:50 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 04 Nov 2007 10:16:50 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby brazil.mail.umich.edu () with ESMTP id lA4FGnOe019992;\n\tSun, 4 Nov 2007 10:16:49 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 472DE256.AE4F9.4402 ; \n\t 4 Nov 2007 10:16:41 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CE042724AC;\n\tSun,  4 Nov 2007 15:15:20 +0000 (GMT)\nMessage-ID: <200711021900.lA2J0lVU030821@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 666\n          for <source@collab.sakaiproject.org>;\n          Sat, 3 Nov 2007 18:30:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DDD831E341\n\tfor <source@collab.sakaiproject.org>; Fri,  2 Nov 2007 19:04:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2J0lVP030823\n\tfor <source@collab.sakaiproject.org>; Fri, 2 Nov 2007 15:00:47 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2J0lVU030821\n\tfor source@collab.sakaiproject.org; Fri, 2 Nov 2007 15:00:47 -0400\nDate: Fri, 2 Nov 2007 15:00:47 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37713 - in assignment/trunk: assignment-bundles assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov  4 10:16:50 2007\nX-DSPAM-Confidence: 0.9870\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37713\n\nAuthor: zqian@umich.edu\nDate: 2007-11-02 15:00:36 -0400 (Fri, 02 Nov 2007)\nNew Revision: 37713\n\nModified:\nassignment/trunk/assignment-bundles/assignment.properties\nassignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_uploadAll.vm\nLog:\nfix to SAK-11769:Assignments Confirmation before Upload All\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Sun Nov  4 10:15:55 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 04 Nov 2007 10:15:55 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 04 Nov 2007 10:15:55 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby godsend.mail.umich.edu () with ESMTP id lA4FFtMZ010933;\n\tSun, 4 Nov 2007 10:15:55 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 472DE225.B51EC.6009 ; \n\t 4 Nov 2007 10:15:52 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 25DFE713B0;\n\tSun,  4 Nov 2007 15:14:51 +0000 (GMT)\nMessage-ID: <200711021753.lA2Hr0ew030679@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 979\n          for <source@collab.sakaiproject.org>;\n          Sat, 3 Nov 2007 18:29:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AB0A01E1E8\n\tfor <source@collab.sakaiproject.org>; Fri,  2 Nov 2007 17:56:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2Hr0H5030681\n\tfor <source@collab.sakaiproject.org>; Fri, 2 Nov 2007 13:53:00 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2Hr0ew030679\n\tfor source@collab.sakaiproject.org; Fri, 2 Nov 2007 13:53:00 -0400\nDate: Fri, 2 Nov 2007 13:53:00 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37708 - in assignment/trunk: assignment-bundles assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov  4 10:15:55 2007\nX-DSPAM-Confidence: 0.9884\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37708\n\nAuthor: zqian@umich.edu\nDate: 2007-11-02 13:52:56 -0400 (Fri, 02 Nov 2007)\nNew Revision: 37708\n\nModified:\nassignment/trunk/assignment-bundles/assignment.properties\nassignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nfix to SAK-11497:Issues with editing assignment submissions that are past the due date\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Sun Nov  4 10:15:01 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 04 Nov 2007 10:15:01 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 04 Nov 2007 10:15:01 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby sleepers.mail.umich.edu () with ESMTP id lA4FF0AN002040;\n\tSun, 4 Nov 2007 10:15:00 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 472DE1EC.BF7C6.28398 ; \n\t 4 Nov 2007 10:14:55 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0AB9572322;\n\tSun,  4 Nov 2007 15:13:37 +0000 (GMT)\nMessage-ID: <200711021851.lA2IpWAo030759@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 692\n          for <source@collab.sakaiproject.org>;\n          Sat, 3 Nov 2007 18:29:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 533C41E323\n\tfor <source@collab.sakaiproject.org>; Fri,  2 Nov 2007 18:55:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2IpWV6030761\n\tfor <source@collab.sakaiproject.org>; Fri, 2 Nov 2007 14:51:33 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2IpWAo030759\n\tfor source@collab.sakaiproject.org; Fri, 2 Nov 2007 14:51:32 -0400\nDate: Fri, 2 Nov 2007 14:51:32 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37711 - in memory/branches/SAK-11913/memory-impl/impl/src: java/org/sakaiproject/memory/impl test/org/sakaiproject/memory/impl/test\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov  4 10:15:01 2007\nX-DSPAM-Confidence: 0.9872\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37711\n\nAuthor: aaronz@vt.edu\nDate: 2007-11-02 14:51:21 -0400 (Fri, 02 Nov 2007)\nNew Revision: 37711\n\nModified:\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/BasicMemoryService.java\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemCache.java\nmemory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/memory/impl/test/BasicMemoryServiceTest.java\nmemory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/memory/impl/test/MemCacheTest.java\nLog:\nSAK-11913: Added in a config class and also fixed up the the code to actually take advantage of the ehcache listeners\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom john.ellis@rsmart.com Sun Nov  4 10:14:18 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 04 Nov 2007 10:14:18 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 04 Nov 2007 10:14:18 -0500\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby faithful.mail.umich.edu () with ESMTP id lA4FEIbn030908;\n\tSun, 4 Nov 2007 10:14:18 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 472DE1BE.6E1A4.12482 ; \n\t 4 Nov 2007 10:14:09 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7D87771CB6;\n\tSun,  4 Nov 2007 15:12:41 +0000 (GMT)\nMessage-ID: <200711021713.lA2HDfoh030653@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 389\n          for <source@collab.sakaiproject.org>;\n          Sat, 3 Nov 2007 18:30:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C73AE1E15C\n\tfor <source@collab.sakaiproject.org>; Fri,  2 Nov 2007 17:17:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2HDfMH030655\n\tfor <source@collab.sakaiproject.org>; Fri, 2 Nov 2007 13:13:41 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2HDfoh030653\n\tfor source@collab.sakaiproject.org; Fri, 2 Nov 2007 13:13:41 -0400\nDate: Fri, 2 Nov 2007 13:13:41 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to john.ellis@rsmart.com using -f\nTo: source@collab.sakaiproject.org\nFrom: john.ellis@rsmart.com\nSubject: [sakai] svn commit: r37707 - in osp/trunk/xsltcharon/xsltcharon-portal/xsl-portal/src: java/org/sakaiproject/portal/xsltcharon/impl webapp/WEB-INF/transform\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov  4 10:14:18 2007\nX-DSPAM-Confidence: 0.8473\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37707\n\nAuthor: john.ellis@rsmart.com\nDate: 2007-11-02 13:13:25 -0400 (Fri, 02 Nov 2007)\nNew Revision: 37707\n\nModified:\nosp/trunk/xsltcharon/xsltcharon-portal/xsl-portal/src/java/org/sakaiproject/portal/xsltcharon/impl/XsltRenderContext.java\nosp/trunk/xsltcharon/xsltcharon-portal/xsl-portal/src/webapp/WEB-INF/transform/portal.xsl\nLog:\nSAK-12097\nadded code to bring all config items into xml, then use the loginPortalPrefix config item in the xsl\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Sun Nov  4 10:12:33 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 04 Nov 2007 10:12:33 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 04 Nov 2007 10:12:33 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby casino.mail.umich.edu () with ESMTP id lA4FCW7p024401;\n\tSun, 4 Nov 2007 10:12:32 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 472DE159.8AD94.23283 ; \n\t 4 Nov 2007 10:12:28 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 02C416EFC9;\n\tSun,  4 Nov 2007 15:11:40 +0000 (GMT)\nMessage-ID: <200711040228.lA42SDf1032011@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 758\n          for <source@collab.sakaiproject.org>;\n          Sat, 3 Nov 2007 18:31:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D068F1F97C\n\tfor <source@collab.sakaiproject.org>; Sun,  4 Nov 2007 02:31:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA42SDSn032013\n\tfor <source@collab.sakaiproject.org>; Sat, 3 Nov 2007 22:28:13 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA42SDf1032011\n\tfor source@collab.sakaiproject.org; Sat, 3 Nov 2007 22:28:13 -0400\nDate: Sat, 3 Nov 2007 22:28:13 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37725 - in site-manage/trunk/site-manage-tool/tool/src: java/org/sakaiproject/site/tool webapp/vm/sitesetup\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov  4 10:12:33 2007\nX-DSPAM-Confidence: 0.8487\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37725\n\nAuthor: zqian@umich.edu\nDate: 2007-11-03 22:28:10 -0400 (Sat, 03 Nov 2007)\nNew Revision: 37725\n\nModified:\nsite-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-findCourse.vm\nLog:\nfix for SAK-11377:'Add a course(s) and/or section(s) not listed above...' should check if course/section already has worksite\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jzaremba@unicon.net Sun Nov  4 10:12:27 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 04 Nov 2007 10:12:27 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 04 Nov 2007 10:12:27 -0500\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby flawless.mail.umich.edu () with ESMTP id lA4FCQWh007265;\n\tSun, 4 Nov 2007 10:12:26 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 472DE153.305F4.16460 ; \n\t 4 Nov 2007 10:12:22 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D7812667B8;\n\tSun,  4 Nov 2007 15:11:15 +0000 (GMT)\nMessage-ID: <200711021618.lA2GIemg030605@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 198\n          for <source@collab.sakaiproject.org>;\n          Sat, 3 Nov 2007 18:29:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9FE0A1E0E1\n\tfor <source@collab.sakaiproject.org>; Fri,  2 Nov 2007 16:22:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2GIeq2030607\n\tfor <source@collab.sakaiproject.org>; Fri, 2 Nov 2007 12:18:40 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2GIemg030605\n\tfor source@collab.sakaiproject.org; Fri, 2 Nov 2007 12:18:40 -0400\nDate: Fri, 2 Nov 2007 12:18:40 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jzaremba@unicon.net using -f\nTo: source@collab.sakaiproject.org\nFrom: jzaremba@unicon.net\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov  4 10:12:27 2007\nX-DSPAM-Confidence: 0.8450\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37706\n\nAuthor: jzaremba@unicon.net\nDate: 2007-11-02 12:18:13 -0400 (Fri, 02 Nov 2007)\nNew Revision: 37706\n\nModified:\ncontent/branches/SAK-11543/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingService.java\ncontent/branches/SAK-11543/content-api/api/src/java/org/sakaiproject/content/cover/ContentHostingService.java\ncontent/branches/SAK-11543/content-bundles/content.properties\ncontent/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java\ncontent/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\nLog:\nRefactoring\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Sun Nov  4 10:11:24 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 04 Nov 2007 10:11:24 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 04 Nov 2007 10:11:24 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby panther.mail.umich.edu () with ESMTP id lA4FBN8x005616;\n\tSun, 4 Nov 2007 10:11:23 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 472DE116.35806.12615 ; \n\t 4 Nov 2007 10:11:21 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E633471D13;\n\tSat,  3 Nov 2007 18:48:09 +0000 (GMT)\nMessage-ID: <200711021836.lA2IaAZi030727@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 36\n          for <source@collab.sakaiproject.org>;\n          Sat, 3 Nov 2007 18:29:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 68EF81E2B6\n\tfor <source@collab.sakaiproject.org>; Fri,  2 Nov 2007 18:39:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2IaBwY030729\n\tfor <source@collab.sakaiproject.org>; Fri, 2 Nov 2007 14:36:11 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2IaAZi030727\n\tfor source@collab.sakaiproject.org; Fri, 2 Nov 2007 14:36:10 -0400\nDate: Fri, 2 Nov 2007 14:36:10 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [sakai] svn commit: r37709 - content/trunk/content-tool/tool/src/webapp/vm/content\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov  4 10:11:24 2007\nX-DSPAM-Confidence: 0.8496\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37709\n\nAuthor: jimeng@umich.edu\nDate: 2007-11-02 14:36:07 -0400 (Fri, 02 Nov 2007)\nNew Revision: 37709\n\nModified:\ncontent/trunk/content-tool/tool/src/webapp/vm/content/sakai_filepicker_select.vm\ncontent/trunk/content-tool/tool/src/webapp/vm/content/sakai_resources_list.vm\nLog:\nSAK-12063\nResources uses dojo/dijit source from reference instead of content-tool\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom bkirschn@umich.edu Sun Nov  4 10:11:12 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 04 Nov 2007 10:11:12 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 04 Nov 2007 10:11:12 -0500\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby faithful.mail.umich.edu () with ESMTP id lA4FBBC1030127;\n\tSun, 4 Nov 2007 10:11:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 472DE0FF.7DB8C.20858 ; \n\t 4 Nov 2007 10:10:58 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5ED9172396;\n\tSat,  3 Nov 2007 18:47:45 +0000 (GMT)\nMessage-ID: <200711021904.lA2J4TSJ030898@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 743\n          for <source@collab.sakaiproject.org>;\n          Sat, 3 Nov 2007 18:31:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D89E61E350\n\tfor <source@collab.sakaiproject.org>; Fri,  2 Nov 2007 19:08:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2J4TBx030900\n\tfor <source@collab.sakaiproject.org>; Fri, 2 Nov 2007 15:04:29 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2J4TSJ030898\n\tfor source@collab.sakaiproject.org; Fri, 2 Nov 2007 15:04:29 -0400\nDate: Fri, 2 Nov 2007 15:04:29 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: bkirschn@umich.edu\nSubject: [sakai] svn commit: r37719 - postem/trunk/postem-app/src/bundle/org/sakaiproject/tool/postem/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov  4 10:11:12 2007\nX-DSPAM-Confidence: 0.9839\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37719\n\nAuthor: bkirschn@umich.edu\nDate: 2007-11-02 15:04:12 -0400 (Fri, 02 Nov 2007)\nNew Revision: 37719\n\nModified:\npostem/trunk/postem-app/src/bundle/org/sakaiproject/tool/postem/bundle/Messages_nl.properties\nLog:\nSAK-11241 Dutch translations\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom bkirschn@umich.edu Sun Nov  4 10:10:58 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 04 Nov 2007 10:10:58 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 04 Nov 2007 10:10:58 -0500\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby godsend.mail.umich.edu () with ESMTP id lA4FAwKc009739;\n\tSun, 4 Nov 2007 10:10:58 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 472DE0FB.99A79.25695 ; \n\t 4 Nov 2007 10:10:54 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9989270CC9;\n\tSat,  3 Nov 2007 18:47:31 +0000 (GMT)\nMessage-ID: <200711021903.lA2J3vgg030874@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 493\n          for <source@collab.sakaiproject.org>;\n          Sat, 3 Nov 2007 18:29:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 73E781E34A\n\tfor <source@collab.sakaiproject.org>; Fri,  2 Nov 2007 19:07:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2J3vhB030876\n\tfor <source@collab.sakaiproject.org>; Fri, 2 Nov 2007 15:03:57 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2J3vgg030874\n\tfor source@collab.sakaiproject.org; Fri, 2 Nov 2007 15:03:57 -0400\nDate: Fri, 2 Nov 2007 15:03:57 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: bkirschn@umich.edu\nSubject: [sakai] svn commit: r37717 - chat/trunk/chat-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov  4 10:10:58 2007\nX-DSPAM-Confidence: 0.9861\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37717\n\nAuthor: bkirschn@umich.edu\nDate: 2007-11-02 15:03:53 -0400 (Fri, 02 Nov 2007)\nNew Revision: 37717\n\nModified:\nchat/trunk/chat-tool/tool/src/bundle/chat_nl.properties\nLog:\nSAK-11241 Dutch translations\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom bkirschn@umich.edu Sun Nov  4 10:06:07 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 04 Nov 2007 10:06:07 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 04 Nov 2007 10:06:07 -0500\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby godsend.mail.umich.edu () with ESMTP id lA4F66PB007499;\n\tSun, 4 Nov 2007 10:06:06 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 472DDE34.11E31.31813 ; \n\t 4 Nov 2007 09:59:02 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9D74971D28;\n\tSat,  3 Nov 2007 18:36:30 +0000 (GMT)\nMessage-ID: <200711021904.lA2J48g5030886@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 229\n          for <source@collab.sakaiproject.org>;\n          Sat, 3 Nov 2007 18:29:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 605161E34C\n\tfor <source@collab.sakaiproject.org>; Fri,  2 Nov 2007 19:07:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2J488j030888\n\tfor <source@collab.sakaiproject.org>; Fri, 2 Nov 2007 15:04:08 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2J48g5030886\n\tfor source@collab.sakaiproject.org; Fri, 2 Nov 2007 15:04:08 -0400\nDate: Fri, 2 Nov 2007 15:04:08 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: bkirschn@umich.edu\nSubject: [sakai] svn commit: r37718 - osp/trunk/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov  4 10:06:07 2007\nX-DSPAM-Confidence: 0.9843\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37718\n\nAuthor: bkirschn@umich.edu\nDate: 2007-11-02 15:04:04 -0400 (Fri, 02 Nov 2007)\nNew Revision: 37718\n\nModified:\nosp/trunk/presentation/tool/src/bundle/org/theospi/portfolio/presentation/bundle/Messages_nl.properties\nLog:\nSAK-11241 Dutch translations\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom bkirschn@umich.edu Sun Nov  4 10:05:12 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 04 Nov 2007 10:05:12 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 04 Nov 2007 10:05:12 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby flawless.mail.umich.edu () with ESMTP id lA4F5Bom005379;\n\tSun, 4 Nov 2007 10:05:11 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 472DDF99.8636.19620 ; \n\t 4 Nov 2007 10:04:59 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B356571358;\n\tSat,  3 Nov 2007 18:42:27 +0000 (GMT)\nMessage-ID: <200711021904.lA2J4mU3030922@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 613\n          for <source@collab.sakaiproject.org>;\n          Sat, 3 Nov 2007 18:29:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9E6F11E356\n\tfor <source@collab.sakaiproject.org>; Fri,  2 Nov 2007 19:08:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2J4mUF030924\n\tfor <source@collab.sakaiproject.org>; Fri, 2 Nov 2007 15:04:48 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2J4mU3030922\n\tfor source@collab.sakaiproject.org; Fri, 2 Nov 2007 15:04:48 -0400\nDate: Fri, 2 Nov 2007 15:04:48 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: bkirschn@umich.edu\nSubject: [sakai] svn commit: r37721 - in site-manage/trunk: pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle site-manage-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov  4 10:05:12 2007\nX-DSPAM-Confidence: 0.9864\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37721\n\nAuthor: bkirschn@umich.edu\nDate: 2007-11-02 15:04:39 -0400 (Fri, 02 Nov 2007)\nNew Revision: 37721\n\nModified:\nsite-manage/trunk/pageorder/tool/src/bundle/org/sakaiproject/tool/pageorder/bundle/Messages_nl.properties\nsite-manage/trunk/site-manage-tool/tool/src/bundle/sitesetupgeneric_nl.properties\nLog:\nSAK-11241 Dutch translations\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Sun Nov  4 09:58:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 04 Nov 2007 09:58:37 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 04 Nov 2007 09:58:37 -0500\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby flawless.mail.umich.edu () with ESMTP id lA4Ewbok003261;\n\tSun, 4 Nov 2007 09:58:37 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 472DDE16.3E853.17476 ; \n\t 4 Nov 2007 09:58:33 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D828C71F67;\n\tSat,  3 Nov 2007 18:36:06 +0000 (GMT)\nMessage-ID: <200711021456.lA2EukD2030450@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 751\n          for <source@collab.sakaiproject.org>;\n          Sat, 3 Nov 2007 18:28:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 237381E052\n\tfor <source@collab.sakaiproject.org>; Fri,  2 Nov 2007 15:00:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2EukYO030452\n\tfor <source@collab.sakaiproject.org>; Fri, 2 Nov 2007 10:56:46 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2EukD2030450\n\tfor source@collab.sakaiproject.org; Fri, 2 Nov 2007 10:56:46 -0400\nDate: Fri, 2 Nov 2007 10:56:46 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37701 - assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov  4 09:58:37 2007\nX-DSPAM-Confidence: 0.7610\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37701\n\nAuthor: zqian@umich.edu\nDate: 2007-11-02 10:56:44 -0400 (Fri, 02 Nov 2007)\nNew Revision: 37701\n\nModified:\nassignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm\nassignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm\nassignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_report_submissions.vm\nassignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_student_list_submissions.vm\nLog:\nFix to SAK-11858:Assignment Grade view doesn't include EID\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ktsao@stanford.edu Sun Nov  4 09:58:14 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 04 Nov 2007 09:58:14 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 04 Nov 2007 09:58:14 -0500\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby chaos.mail.umich.edu () with ESMTP id lA4EwDMo029646;\n\tSun, 4 Nov 2007 09:58:13 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 472DDDFF.54A91.6944 ; \n\t 4 Nov 2007 09:58:10 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6DD4272230;\n\tSat,  3 Nov 2007 18:35:44 +0000 (GMT)\nMessage-ID: <200711040724.lA47OF8o032118@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 792\n          for <source@collab.sakaiproject.org>;\n          Sat, 3 Nov 2007 18:29:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A753920716\n\tfor <source@collab.sakaiproject.org>; Sun,  4 Nov 2007 07:27:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA47OFoP032120\n\tfor <source@collab.sakaiproject.org>; Sun, 4 Nov 2007 02:24:15 -0500\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA47OF8o032118\n\tfor source@collab.sakaiproject.org; Sun, 4 Nov 2007 02:24:15 -0500\nDate: Sun, 4 Nov 2007 02:24:15 -0500\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ktsao@stanford.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ktsao@stanford.edu\nSubject: [sakai] svn commit: r37726 - in sam/trunk: . samigo-shared-deploy\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov  4 09:58:14 2007\nX-DSPAM-Confidence: 0.9816\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37726\n\nAuthor: ktsao@stanford.edu\nDate: 2007-11-04 02:24:05 -0500 (Sun, 04 Nov 2007)\nNew Revision: 37726\n\nAdded:\nsam/trunk/samigo-shared-deploy/\nsam/trunk/samigo-shared-deploy/pom.xml\nModified:\nsam/trunk/pom.xml\nLog:\nSAK-12089\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Sun Nov  4 09:58:01 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 04 Nov 2007 09:58:01 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 04 Nov 2007 09:58:01 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby jacknife.mail.umich.edu () with ESMTP id lA4Ew09j021744;\n\tSun, 4 Nov 2007 09:58:00 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 472DDDF3.49E52.23588 ; \n\t 4 Nov 2007 09:57:58 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E50B071485;\n\tSat,  3 Nov 2007 18:35:26 +0000 (GMT)\nMessage-ID: <200711021310.lA2DAGcZ030305@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 963\n          for <source@collab.sakaiproject.org>;\n          Sat, 3 Nov 2007 18:31:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EA4631DE30\n\tfor <source@collab.sakaiproject.org>; Fri,  2 Nov 2007 13:13:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2DAG4u030307\n\tfor <source@collab.sakaiproject.org>; Fri, 2 Nov 2007 09:10:16 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2DAGcZ030305\n\tfor source@collab.sakaiproject.org; Fri, 2 Nov 2007 09:10:16 -0400\nDate: Fri, 2 Nov 2007 09:10:16 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37698 - in reference/branches/sakai_2-5-x: demo docs\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov  4 09:58:01 2007\nX-DSPAM-Confidence: 0.7620\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37698\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-02 09:10:14 -0400 (Fri, 02 Nov 2007)\nNew Revision: 37698\n\nModified:\nreference/branches/sakai_2-5-x/demo/sakai.properties\nreference/branches/sakai_2-5-x/docs/sakai.properties\nLog:\nsvn merge -r 37695:37696 https://source.sakaiproject.org/svn/reference/trunk\nU    demo/sakai.properties\nU    docs/sakai.properties\nin-143-196:~/java/2-5/sakai_2-5-x/reference mmmay$ svn log -r 37695:37696 https://source.sakaiproject.org/svn/reference/trunk\n------------------------------------------------------------------------\nr37696 | ian@caret.cam.ac.uk | 2007-11-02 02:08:53 -0400 (Fri, 02 Nov 2007) | 4 lines\n\nhttp://jira.sakaiproject.org/jira/browse/SAK-12055\nFixed\n\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Sun Nov  4 09:57:44 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 04 Nov 2007 09:57:44 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 04 Nov 2007 09:57:44 -0500\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby awakenings.mail.umich.edu () with ESMTP id lA4EvfKR029821;\n\tSun, 4 Nov 2007 09:57:41 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 472DDCF5.449CA.23872 ; \n\t 4 Nov 2007 09:53:44 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7A18D71E69;\n\tSat,  3 Nov 2007 18:30:28 +0000 (GMT)\nMessage-ID: <200711021504.lA2F4dXS030479@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 876\n          for <source@collab.sakaiproject.org>;\n          Sat, 3 Nov 2007 18:28:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 04DD71E063\n\tfor <source@collab.sakaiproject.org>; Fri,  2 Nov 2007 15:08:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2F4eEu030481\n\tfor <source@collab.sakaiproject.org>; Fri, 2 Nov 2007 11:04:40 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2F4dXS030479\n\tfor source@collab.sakaiproject.org; Fri, 2 Nov 2007 11:04:39 -0400\nDate: Fri, 2 Nov 2007 11:04:39 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37703 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov  4 09:57:44 2007\nX-DSPAM-Confidence: 0.9881\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37703\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-02 11:04:38 -0400 (Fri, 02 Nov 2007)\nNew Revision: 37703\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties\nLog:\nCTools: update patch for SAK 9725 for new build.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Sun Nov  4 09:57:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 04 Nov 2007 09:57:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 04 Nov 2007 09:57:17 -0500\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby jacknife.mail.umich.edu () with ESMTP id lA4EvGQB021430;\n\tSun, 4 Nov 2007 09:57:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 472DDDC7.98E5.23855 ; \n\t 4 Nov 2007 09:57:13 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 413DF712E1;\n\tSat,  3 Nov 2007 18:34:45 +0000 (GMT)\nMessage-ID: <200711021426.lA2EQBMv030389@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 0\n          for <source@collab.sakaiproject.org>;\n          Sat, 3 Nov 2007 18:31:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id F39801DFFD\n\tfor <source@collab.sakaiproject.org>; Fri,  2 Nov 2007 14:29:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2EQBxO030391\n\tfor <source@collab.sakaiproject.org>; Fri, 2 Nov 2007 10:26:11 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2EQBMv030389\n\tfor source@collab.sakaiproject.org; Fri, 2 Nov 2007 10:26:11 -0400\nDate: Fri, 2 Nov 2007 10:26:11 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37700 - assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov  4 09:57:17 2007\nX-DSPAM-Confidence: 0.9873\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37700\n\nAuthor: zqian@umich.edu\nDate: 2007-11-02 10:26:09 -0400 (Fri, 02 Nov 2007)\nNew Revision: 37700\n\nModified:\nassignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm\nLog:\nFix to SAK-12085:Long group list in For column does not wrap\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Sun Nov  4 09:56:01 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 04 Nov 2007 09:56:01 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 04 Nov 2007 09:56:01 -0500\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby casino.mail.umich.edu () with ESMTP id lA4Eu0Wt019250;\n\tSun, 4 Nov 2007 09:56:00 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 472DDD76.7251.11045 ; \n\t 4 Nov 2007 09:55:52 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 113E37128C;\n\tSat,  3 Nov 2007 18:33:26 +0000 (GMT)\nMessage-ID: <200711021531.lA2FV64u030555@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 72\n          for <source@collab.sakaiproject.org>;\n          Sat, 3 Nov 2007 18:29:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5BCB41E092\n\tfor <source@collab.sakaiproject.org>; Fri,  2 Nov 2007 15:34:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2FV69Y030557\n\tfor <source@collab.sakaiproject.org>; Fri, 2 Nov 2007 11:31:06 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2FV64u030555\n\tfor source@collab.sakaiproject.org; Fri, 2 Nov 2007 11:31:06 -0400\nDate: Fri, 2 Nov 2007 11:31:06 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37705 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov  4 09:56:01 2007\nX-DSPAM-Confidence: 0.9887\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37705\n\nAuthor: dlhaines@umich.edu\nDate: 2007-11-02 11:31:04 -0400 (Fri, 02 Nov 2007)\nNew Revision: 37705\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties\nLog:\nCTools: update for fix to SAK 10419 patch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom bkirschn@umich.edu Sun Nov  4 09:55:39 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 04 Nov 2007 09:55:39 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 04 Nov 2007 09:55:39 -0500\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby flawless.mail.umich.edu () with ESMTP id lA4Etcx3002010;\n\tSun, 4 Nov 2007 09:55:38 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 472DDD64.978D6.30700 ; \n\t 4 Nov 2007 09:55:35 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 776FE7236E;\n\tSat,  3 Nov 2007 18:33:09 +0000 (GMT)\nMessage-ID: <200711021904.lA2J4aMf030910@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 551\n          for <source@collab.sakaiproject.org>;\n          Sat, 3 Nov 2007 18:30:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D9F941E352\n\tfor <source@collab.sakaiproject.org>; Fri,  2 Nov 2007 19:08:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2J4awH030912\n\tfor <source@collab.sakaiproject.org>; Fri, 2 Nov 2007 15:04:36 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2J4aMf030910\n\tfor source@collab.sakaiproject.org; Fri, 2 Nov 2007 15:04:36 -0400\nDate: Fri, 2 Nov 2007 15:04:36 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: bkirschn@umich.edu\nSubject: [sakai] svn commit: r37720 - profile/trunk/profile-app/src/bundle/org/sakaiproject/tool/profile/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov  4 09:55:39 2007\nX-DSPAM-Confidence: 0.9851\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37720\n\nAuthor: bkirschn@umich.edu\nDate: 2007-11-02 15:04:33 -0400 (Fri, 02 Nov 2007)\nNew Revision: 37720\n\nModified:\nprofile/trunk/profile-app/src/bundle/org/sakaiproject/tool/profile/bundle/Messages_nl.properties\nLog:\nSAK-11241 Dutch translations\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Sun Nov  4 09:55:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 04 Nov 2007 09:55:17 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 04 Nov 2007 09:55:17 -0500\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby flawless.mail.umich.edu () with ESMTP id lA4EtGLu001891;\n\tSun, 4 Nov 2007 09:55:16 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 472DDD4E.7C55C.16141 ; \n\t 4 Nov 2007 09:55:13 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5255A71E32;\n\tSat,  3 Nov 2007 18:32:45 +0000 (GMT)\nMessage-ID: <200711022021.lA2KLqdD031036@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 854\n          for <source@collab.sakaiproject.org>;\n          Sat, 3 Nov 2007 18:29:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 839AA1E378\n\tfor <source@collab.sakaiproject.org>; Fri,  2 Nov 2007 20:25:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2KLqRx031038\n\tfor <source@collab.sakaiproject.org>; Fri, 2 Nov 2007 16:21:52 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2KLqdD031036\n\tfor source@collab.sakaiproject.org; Fri, 2 Nov 2007 16:21:52 -0400\nDate: Fri, 2 Nov 2007 16:21:52 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37723 - assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov  4 09:55:17 2007\nX-DSPAM-Confidence: 0.8500\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37723\n\nAuthor: zqian@umich.edu\nDate: 2007-11-02 16:21:48 -0400 (Fri, 02 Nov 2007)\nNew Revision: 37723\n\nModified:\nassignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nFix to SAK-12029:zip file not accepted in Assignments \"Upload All\" feature\n\nChecked in Ray's patch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom bkirschn@umich.edu Sun Nov  4 09:53:39 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 04 Nov 2007 09:53:39 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 04 Nov 2007 09:53:39 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby faithful.mail.umich.edu () with ESMTP id lA4Erc5Q024826;\n\tSun, 4 Nov 2007 09:53:38 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 472DDCEA.ED2E.25115 ; \n\t 4 Nov 2007 09:53:33 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B8B9471E83;\n\tSat,  3 Nov 2007 18:30:28 +0000 (GMT)\nMessage-ID: <200711021903.lA2J3oQW030862@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 897\n          for <source@collab.sakaiproject.org>;\n          Sat, 3 Nov 2007 18:28:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0FAA11E348\n\tfor <source@collab.sakaiproject.org>; Fri,  2 Nov 2007 19:07:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2J3oAs030864\n\tfor <source@collab.sakaiproject.org>; Fri, 2 Nov 2007 15:03:50 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2J3oQW030862\n\tfor source@collab.sakaiproject.org; Fri, 2 Nov 2007 15:03:50 -0400\nDate: Fri, 2 Nov 2007 15:03:50 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: bkirschn@umich.edu\nSubject: [sakai] svn commit: r37716 - calendar/trunk/calendar-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov  4 09:53:39 2007\nX-DSPAM-Confidence: 0.9866\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37716\n\nAuthor: bkirschn@umich.edu\nDate: 2007-11-02 15:03:47 -0400 (Fri, 02 Nov 2007)\nNew Revision: 37716\n\nModified:\ncalendar/trunk/calendar-tool/tool/src/bundle/calendar_nl.properties\nLog:\nSAK-11241 Dutch translations\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Sun Nov  4 09:53:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 04 Nov 2007 09:53:30 -0500\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 04 Nov 2007 09:53:30 -0500\nReceived: from dreamcatcher.mr.itd.umich.edu (dreamcatcher.mr.itd.umich.edu [141.211.14.43])\n\tby brazil.mail.umich.edu () with ESMTP id lA4ErTbY011160;\n\tSun, 4 Nov 2007 09:53:29 -0500\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dreamcatcher.mr.itd.umich.edu ID 472DDCE3.11315.24761 ; \n\t 4 Nov 2007 09:53:26 -0500\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1FB7171C68;\n\tSat,  3 Nov 2007 18:30:08 +0000 (GMT)\nMessage-ID: <200711022227.lA2MR8ql031161@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 175\n          for <source@collab.sakaiproject.org>;\n          Sat, 3 Nov 2007 18:28:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 24D8E1E632\n\tfor <source@collab.sakaiproject.org>; Fri,  2 Nov 2007 22:30:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2MR8Fh031163\n\tfor <source@collab.sakaiproject.org>; Fri, 2 Nov 2007 18:27:08 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2MR8ql031161\n\tfor source@collab.sakaiproject.org; Fri, 2 Nov 2007 18:27:08 -0400\nDate: Fri, 2 Nov 2007 18:27:08 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Nov  4 09:53:30 2007\nX-DSPAM-Confidence: 0.7598\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37724\n\nAuthor: ray@media.berkeley.edu\nDate: 2007-11-02 18:26:46 -0400 (Fri, 02 Nov 2007)\nNew Revision: 37724\n\nAdded:\ncomponent/branches/SAK-8315/component-api/component/src/config/org/sakaiproject/config/sakai-configuration.xml\ncomponent/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/util/SakaiApplicationContext.java\ncomponent/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/util/SakaiPropertyPromoter.java\nRemoved:\ncomponent/branches/SAK-8315/component-impl/impl/src/resources/\nModified:\ncomponent/branches/SAK-8315/component-api/.classpath\ncomponent/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/component/api/ComponentManager.java\ncomponent/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/component/impl/SpringCompMgr.java\ncomponent/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/util/ComponentsLoader.java\ncomponent/branches/SAK-8315/component-api/component/src/java/org/sakaiproject/util/NoisierDefaultListableBeanFactory.java\ncomponent/branches/SAK-8315/component-impl/.classpath\ncomponent/branches/SAK-8315/component-impl/impl/src/java/org/sakaiproject/component/impl/BasicConfigurationService.java\ncomponent/branches/SAK-8315/component-impl/pack/src/webapp/WEB-INF/components.xml\nLog:\nMove ApplicationContext refresh logic out of other locations and into ApplicationContext subclass\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Fri Nov  2 02:14:28 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 02 Nov 2007 02:14:28 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 02 Nov 2007 02:14:28 -0400\nReceived: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43])\n\tby score.mail.umich.edu () with ESMTP id lA26ESma017267;\n\tFri, 2 Nov 2007 02:14:28 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY serenity.mr.itd.umich.edu ID 472AC03E.6A198.10307 ; \n\t 2 Nov 2007 02:14:25 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E6555709D3;\n\tThu,  1 Nov 2007 10:45:44 +0000 (GMT)\nMessage-ID: <200711020610.lA26AU8K029607@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 950\n          for <source@collab.sakaiproject.org>;\n          Thu, 1 Nov 2007 10:45:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id ABAC61DBF7\n\tfor <source@collab.sakaiproject.org>; Fri,  2 Nov 2007 06:13:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA26AULU029609\n\tfor <source@collab.sakaiproject.org>; Fri, 2 Nov 2007 02:10:30 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA26AU8K029607\n\tfor source@collab.sakaiproject.org; Fri, 2 Nov 2007 02:10:30 -0400\nDate: Fri, 2 Nov 2007 02:10:30 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r37697 - component/trunk/component-api/component/src/config/org/sakaiproject/config\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov  2 02:14:28 2007\nX-DSPAM-Confidence: 0.9786\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37697\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-02 02:10:20 -0400 (Fri, 02 Nov 2007)\nNew Revision: 37697\n\nModified:\ncomponent/trunk/component-api/component/src/config/org/sakaiproject/config/sakai.properties\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-12055\nFixed\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Fri Nov  2 02:13:16 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 02 Nov 2007 02:13:16 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 02 Nov 2007 02:13:16 -0400\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby score.mail.umich.edu () with ESMTP id lA26DC7p017044;\n\tFri, 2 Nov 2007 02:13:13 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 472ABFEC.99B5A.3770 ; \n\t 2 Nov 2007 02:13:10 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 039B0709D1;\n\tThu,  1 Nov 2007 10:44:23 +0000 (GMT)\nMessage-ID: <200711020609.lA2697d7029595@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 568\n          for <source@collab.sakaiproject.org>;\n          Thu, 1 Nov 2007 10:44:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D71991DBF7\n\tfor <source@collab.sakaiproject.org>; Fri,  2 Nov 2007 06:12:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA2698TE029597\n\tfor <source@collab.sakaiproject.org>; Fri, 2 Nov 2007 02:09:08 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA2697d7029595\n\tfor source@collab.sakaiproject.org; Fri, 2 Nov 2007 02:09:07 -0400\nDate: Fri, 2 Nov 2007 02:09:07 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r37696 - in reference/trunk: demo docs\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Nov  2 02:13:16 2007\nX-DSPAM-Confidence: 0.9793\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37696\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-11-02 02:08:53 -0400 (Fri, 02 Nov 2007)\nNew Revision: 37696\n\nModified:\nreference/trunk/demo/sakai.properties\nreference/trunk/docs/sakai.properties\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-12055\nFixed\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zach.thomas@txstate.edu Thu Nov  1 18:14:15 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 01 Nov 2007 18:14:15 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 01 Nov 2007 18:14:15 -0400\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby awakenings.mail.umich.edu () with ESMTP id lA1MEBK4029841;\n\tThu, 1 Nov 2007 18:14:11 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 472A4FAD.8A680.18429 ; \n\t 1 Nov 2007 18:14:08 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 944B34EAA7;\n\tThu,  1 Nov 2007 02:58:02 +0000 (GMT)\nMessage-ID: <200711012210.lA1MAKjW029296@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 914\n          for <source@collab.sakaiproject.org>;\n          Thu, 1 Nov 2007 02:57:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 07DA9162AC\n\tfor <source@collab.sakaiproject.org>; Thu,  1 Nov 2007 22:13:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1MAL4V029298\n\tfor <source@collab.sakaiproject.org>; Thu, 1 Nov 2007 18:10:21 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1MAKjW029296\n\tfor source@collab.sakaiproject.org; Thu, 1 Nov 2007 18:10:20 -0400\nDate: Thu, 1 Nov 2007 18:10:20 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zach.thomas@txstate.edu\nSubject: [sakai] svn commit: r37695 - content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  1 18:14:15 2007\nX-DSPAM-Confidence: 0.9787\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37695\n\nAuthor: zach.thomas@txstate.edu\nDate: 2007-11-01 18:10:14 -0400 (Thu, 01 Nov 2007)\nNew Revision: 37695\n\nModified:\ncontent/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\nLog:\nanother stab at TSQ-789\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ostermmg@whitman.edu Thu Nov  1 18:00:01 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 01 Nov 2007 18:00:01 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 01 Nov 2007 18:00:01 -0400\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby jacknife.mail.umich.edu () with ESMTP id lA1M00IM001821;\n\tThu, 1 Nov 2007 18:00:00 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 472A4C58.9FA52.24336 ; \n\t 1 Nov 2007 17:59:55 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0FA254F8EC;\n\tThu,  1 Nov 2007 02:43:58 +0000 (GMT)\nMessage-ID: <200711012156.lA1Lu7ol029217@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 685\n          for <source@collab.sakaiproject.org>;\n          Thu, 1 Nov 2007 02:43:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A42D21DC37\n\tfor <source@collab.sakaiproject.org>; Thu,  1 Nov 2007 21:59:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1Lu7HC029219\n\tfor <source@collab.sakaiproject.org>; Thu, 1 Nov 2007 17:56:07 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1Lu7ol029217\n\tfor source@collab.sakaiproject.org; Thu, 1 Nov 2007 17:56:07 -0400\nDate: Thu, 1 Nov 2007 17:56:07 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ostermmg@whitman.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ostermmg@whitman.edu\nSubject: [sakai] svn commit: r37694 - content/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  1 18:00:01 2007\nX-DSPAM-Confidence: 0.9823\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37694\n\nAuthor: ostermmg@whitman.edu\nDate: 2007-11-01 17:56:04 -0400 (Thu, 01 Nov 2007)\nNew Revision: 37694\n\nModified:\ncontent/branches/sakai_2-5-x/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\nLog:\nSAK-11813\nProvide mechanism to maintain unintended leading spaces in content volumes\n\nsvn merge -c36566 https://source.sakaiproject.org/svn/content/trunk/ .\nU    content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom bkirschn@umich.edu Thu Nov  1 16:45:49 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 01 Nov 2007 16:45:49 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 01 Nov 2007 16:45:49 -0400\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby mission.mail.umich.edu () with ESMTP id lA1KjmpJ003641;\n\tThu, 1 Nov 2007 16:45:48 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 472A3AEF.57EB3.12554 ; \n\t 1 Nov 2007 16:45:38 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 84B5070785;\n\tThu,  1 Nov 2007 01:29:39 +0000 (GMT)\nMessage-ID: <200711012041.lA1KfqlU029109@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 304\n          for <source@collab.sakaiproject.org>;\n          Thu, 1 Nov 2007 01:29:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A60F01DC05\n\tfor <source@collab.sakaiproject.org>; Thu,  1 Nov 2007 20:45:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1Kfq77029111\n\tfor <source@collab.sakaiproject.org>; Thu, 1 Nov 2007 16:41:52 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1KfqlU029109\n\tfor source@collab.sakaiproject.org; Thu, 1 Nov 2007 16:41:52 -0400\nDate: Thu, 1 Nov 2007 16:41:52 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: bkirschn@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  1 16:45:49 2007\nX-DSPAM-Confidence: 0.9855\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37693\n\nAuthor: bkirschn@umich.edu\nDate: 2007-11-01 16:41:49 -0400 (Thu, 01 Nov 2007)\nNew Revision: 37693\n\nModified:\nosp/trunk/matrix/api/src/java/org/theospi/portfolio/matrix/model/impl/MatrixImpl.hbm.xml\nosp/trunk/matrix/tool/src/java/org/theospi/portfolio/matrix/control/BaseScaffoldingController.java\nosp/trunk/matrix/tool/src/java/org/theospi/portfolio/matrix/control/EditScaffoldingCellController.java\nosp/trunk/matrix/tool/src/java/org/theospi/portfolio/matrix/control/ViewMatrixController.java\nosp/trunk/matrix/tool/src/java/org/theospi/portfolio/matrix/control/ViewScaffoldingController.java\nLog:\nSAK-12066 - fix bugs related to hibernate lazy loading...\nrevert r36794 re-enable lazy loading\nrevert r34564 re-enable BaseScaffoldingController.traverseScaffoldingCells\nupdate BaseScaffoldingController.traverseScaffoldingCells() to use matrixManager.getScaffoldingCells\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Thu Nov  1 16:06:04 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 01 Nov 2007 16:06:04 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 01 Nov 2007 16:06:04 -0400\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby awakenings.mail.umich.edu () with ESMTP id lA1K62Ub010788;\n\tThu, 1 Nov 2007 16:06:02 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 472A31A2.D8B29.22554 ; \n\t 1 Nov 2007 16:05:58 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 885CD70760;\n\tThu,  1 Nov 2007 00:49:59 +0000 (GMT)\nMessage-ID: <200711012002.lA1K2EB3028984@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 433\n          for <source@collab.sakaiproject.org>;\n          Thu, 1 Nov 2007 00:49:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 35A561DADD\n\tfor <source@collab.sakaiproject.org>; Thu,  1 Nov 2007 20:05:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1K2EWW028986\n\tfor <source@collab.sakaiproject.org>; Thu, 1 Nov 2007 16:02:14 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1K2EB3028984\n\tfor source@collab.sakaiproject.org; Thu, 1 Nov 2007 16:02:14 -0400\nDate: Thu, 1 Nov 2007 16:02:14 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37692 - osp/branches/sakai_2-5-x/presentation/tool/src/webapp/WEB-INF/jsp/presentation\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  1 16:06:04 2007\nX-DSPAM-Confidence: 0.7624\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37692\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-01 16:02:13 -0400 (Thu, 01 Nov 2007)\nNew Revision: 37692\n\nModified:\nosp/branches/sakai_2-5-x/presentation/tool/src/webapp/WEB-INF/jsp/presentation/addPresentation2.jsp\nLog:\nsvn merge -r 37363:37364 https://source.sakaiproject.org/svn/osp/trunk\nU    presentation/tool/src/webapp/WEB-INF/jsp/presentation/addPresentation2.jsp\nin-143-196:~/java/2-5/sakai_2-5-x/osp mmmay$ svn log -r 37363:37364 https://source.sakaiproject.org/svn/osp/trunk\n------------------------------------------------------------------------\nr37364 | chmaurer@iupui.edu | 2007-10-24 15:47:28 -0400 (Wed, 24 Oct 2007) | 2 lines\n\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12026\nApplying the patch to fix the multi-select for forms.\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Thu Nov  1 16:02:15 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 01 Nov 2007 16:02:15 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 01 Nov 2007 16:02:15 -0400\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby fan.mail.umich.edu () with ESMTP id lA1K29nd003582;\n\tThu, 1 Nov 2007 16:02:09 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 472A30BB.9ACFD.21548 ; \n\t 1 Nov 2007 16:02:06 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 78A83705BC;\n\tThu,  1 Nov 2007 00:46:07 +0000 (GMT)\nMessage-ID: <200711011958.lA1JwKxZ028959@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 756\n          for <source@collab.sakaiproject.org>;\n          Thu, 1 Nov 2007 00:45:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B33991DADD\n\tfor <source@collab.sakaiproject.org>; Thu,  1 Nov 2007 20:01:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1JwKPO028961\n\tfor <source@collab.sakaiproject.org>; Thu, 1 Nov 2007 15:58:20 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1JwKxZ028959\n\tfor source@collab.sakaiproject.org; Thu, 1 Nov 2007 15:58:20 -0400\nDate: Thu, 1 Nov 2007 15:58:20 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37691 - polls/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/poll/tool/validators\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  1 16:02:15 2007\nX-DSPAM-Confidence: 0.7617\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37691\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-01 15:58:19 -0400 (Thu, 01 Nov 2007)\nNew Revision: 37691\n\nModified:\npolls/branches/sakai_2-5-x/tool/src/java/org/sakaiproject/poll/tool/validators/VoteValidator.java\nLog:\nsvn merge -r 37659:37661 https://source.sakaiproject.org/svn/polls/trunk\nU    tool/src/java/org/sakaiproject/poll/tool/validators/VoteValidator.java\nin-143-196:~/java/2-5/sakai_2-5-x/polls mmmay$ svn merge -r 37660:37661 https://source.sakaiproject.org/svn/polls/trunk\nin-143-196:~/java/2-5/sakai_2-5-x/polls mmmay$ svn log -r 37659:37661 https://source.sakaiproject.org/svn/polls/trunk\n------------------------------------------------------------------------\nr37660 | david.horwitz@uct.ac.za | 2007-10-31 04:16:00 -0400 (Wed, 31 Oct 2007) | 1 line\n\nSAK-12083 only give one error condition on voting\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Thu Nov  1 15:58:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 01 Nov 2007 15:58:52 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 01 Nov 2007 15:58:52 -0400\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby godsend.mail.umich.edu () with ESMTP id lA1JwpLD006843;\n\tThu, 1 Nov 2007 15:58:51 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 472A2FF2.E8D5D.336 ; \n\t 1 Nov 2007 15:58:47 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1984F7024D;\n\tThu,  1 Nov 2007 00:42:48 +0000 (GMT)\nMessage-ID: <200711011955.lA1Jt5tP028947@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 23\n          for <source@collab.sakaiproject.org>;\n          Thu, 1 Nov 2007 00:42:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 862C01DC02\n\tfor <source@collab.sakaiproject.org>; Thu,  1 Nov 2007 19:58:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1Jt547028949\n\tfor <source@collab.sakaiproject.org>; Thu, 1 Nov 2007 15:55:05 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1Jt5tP028947\n\tfor source@collab.sakaiproject.org; Thu, 1 Nov 2007 15:55:05 -0400\nDate: Thu, 1 Nov 2007 15:55:05 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37690 - in webservices/branches/sakai_2-5-x/axis: . provisional src/webapp\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  1 15:58:52 2007\nX-DSPAM-Confidence: 0.7619\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37690\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-01 15:55:04 -0400 (Thu, 01 Nov 2007)\nNew Revision: 37690\n\nAdded:\nwebservices/branches/sakai_2-5-x/axis/provisional/\nwebservices/branches/sakai_2-5-x/axis/provisional/ContentHosting.jws\nwebservices/branches/sakai_2-5-x/axis/provisional/README\nRemoved:\nwebservices/branches/sakai_2-5-x/axis/provisional/ContentHosting.jws\nwebservices/branches/sakai_2-5-x/axis/provisional/README\nwebservices/branches/sakai_2-5-x/axis/src/webapp/ContentHosting.jws\nLog:\nsvn merge -r 37663:37664 https://source.sakaiproject.org/svn/webservices/trunk\nA    axis/provisional\nA    axis/provisional/ContentHosting.jws\nA    axis/provisional/README\nD    axis/src/webapp/ContentHosting.jws\nin-143-196:~/java/2-5/sakai_2-5-x/webservices mmmay$ svn log -r 37663:37664 https://source.sakaiproject.org/svn/webservices/trunk------------------------------------------------------------------------\nr37664 | sgithens@caret.cam.ac.uk | 2007-10-31 08:23:45 -0400 (Wed, 31 Oct 2007) | 1 line\n\nSAK-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.\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Thu Nov  1 15:57:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 01 Nov 2007 15:57:30 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 01 Nov 2007 15:57:30 -0400\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby jacknife.mail.umich.edu () with ESMTP id lA1JvTMW010027;\n\tThu, 1 Nov 2007 15:57:29 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 472A2F9F.A8590.10457 ; \n\t 1 Nov 2007 15:57:23 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9DCFB705AA;\n\tThu,  1 Nov 2007 00:41:15 +0000 (GMT)\nMessage-ID: <200711011953.lA1JrWCx028935@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 638\n          for <source@collab.sakaiproject.org>;\n          Thu, 1 Nov 2007 00:41:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D790A1DADD\n\tfor <source@collab.sakaiproject.org>; Thu,  1 Nov 2007 19:56:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1JrW0H028937\n\tfor <source@collab.sakaiproject.org>; Thu, 1 Nov 2007 15:53:32 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1JrWCx028935\n\tfor source@collab.sakaiproject.org; Thu, 1 Nov 2007 15:53:32 -0400\nDate: Thu, 1 Nov 2007 15:53:32 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [sakai] svn commit: r37689 - in postem/trunk: postem-app/src/java/org/sakaiproject/tool/postem postem-impl/src/java/org/sakaiproject/component/app/postem\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  1 15:57:30 2007\nX-DSPAM-Confidence: 0.9854\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37689\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-11-01 15:53:31 -0400 (Thu, 01 Nov 2007)\nNew Revision: 37689\n\nModified:\npostem/trunk/postem-app/src/java/org/sakaiproject/tool/postem/PostemTool.java\npostem/trunk/postem-impl/src/java/org/sakaiproject/component/app/postem/GradebookManagerImpl.java\nLog:\nSAK-12095\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12095\nPerformance problems when tool contains large posts\nfix for uploads with extra white space around username\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Thu Nov  1 15:50:56 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 01 Nov 2007 15:50:56 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 01 Nov 2007 15:50:56 -0400\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby chaos.mail.umich.edu () with ESMTP id lA1Jotgm015660;\n\tThu, 1 Nov 2007 15:50:55 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 472A2E17.B2C5.10265 ; \n\t 1 Nov 2007 15:50:50 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 58F08705E8;\n\tThu,  1 Nov 2007 00:34:51 +0000 (GMT)\nMessage-ID: <200711011947.lA1Jl7f5028923@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 255\n          for <source@collab.sakaiproject.org>;\n          Thu, 1 Nov 2007 00:34:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B341A1DC02\n\tfor <source@collab.sakaiproject.org>; Thu,  1 Nov 2007 19:50:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1Jl7DS028925\n\tfor <source@collab.sakaiproject.org>; Thu, 1 Nov 2007 15:47:07 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1Jl7f5028923\n\tfor source@collab.sakaiproject.org; Thu, 1 Nov 2007 15:47:07 -0400\nDate: Thu, 1 Nov 2007 15:47:07 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  1 15:50:56 2007\nX-DSPAM-Confidence: 0.7613\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37688\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-01 15:47:06 -0400 (Thu, 01 Nov 2007)\nNew Revision: 37688\n\nAdded:\nreports/branches/sakai_2-5-x/reports-tool/tool/src/java/org/sakaiproject/reports/tool/ReportsStartupListener.java\nModified:\nreports/branches/sakai_2-5-x/reports-api/api/src/java/org/sakaiproject/reports/service/ReportsManager.java\nreports/branches/sakai_2-5-x/reports-impl/impl/src/java/org/sakaiproject/reports/logic/impl/ReportsManagerImpl.java\nreports/branches/sakai_2-5-x/reports-tool/tool/src/webapp/WEB-INF/web.xml\nLog:\nsvn merge -r 37645:37646 https://source.sakaiproject.org/svn/reports/trunk\nU    reports-api/api/src/java/org/sakaiproject/reports/service/ReportsManager.java\nA    reports-tool/tool/src/java/org/sakaiproject/reports/tool/ReportsStartupListener.java\nU    reports-tool/tool/src/webapp/WEB-INF/web.xml\nU    reports-impl/impl/src/java/org/sakaiproject/reports/logic/impl/ReportsManagerImpl.java\nin-143-196:~/java/2-5/sakai_2-5-x/reports mmmay$ svn log -r 37645:37646 https://source.sakaiproject.org/svn/reports/trunk\n------------------------------------------------------------------------\nr37646 | john.ellis@rsmart.com | 2007-10-30 14:44:35 -0400 (Tue, 30 Oct 2007) | 3 lines\n\nSAK-12028\nmoved around where the init took place so that it would be surrounded by the correct tx\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Thu Nov  1 15:48:34 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 01 Nov 2007 15:48:34 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 01 Nov 2007 15:48:34 -0400\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby jacknife.mail.umich.edu () with ESMTP id lA1JmWIE002980;\n\tThu, 1 Nov 2007 15:48:32 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 472A2D8A.3583F.17184 ; \n\t 1 Nov 2007 15:48:29 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 28923707C6;\n\tThu,  1 Nov 2007 00:32:30 +0000 (GMT)\nMessage-ID: <200711011944.lA1JijC4028911@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 339\n          for <source@collab.sakaiproject.org>;\n          Thu, 1 Nov 2007 00:32:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A683E1DC02\n\tfor <source@collab.sakaiproject.org>; Thu,  1 Nov 2007 19:48:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1JijoM028913\n\tfor <source@collab.sakaiproject.org>; Thu, 1 Nov 2007 15:44:45 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1JijC4028911\n\tfor source@collab.sakaiproject.org; Thu, 1 Nov 2007 15:44:45 -0400\nDate: Thu, 1 Nov 2007 15:44:45 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  1 15:48:34 2007\nX-DSPAM-Confidence: 0.7617\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37687\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-01 15:44:43 -0400 (Thu, 01 Nov 2007)\nNew Revision: 37687\n\nAdded:\ncalendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_en_GB.properties\ncalendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_ko.properties\ncalendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/java/org/sakaiproject/tool/summarycalendar/ui/EventTypes.java\nModified:\ncalendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages.properties\ncalendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_ar.properties\ncalendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_ca.properties\ncalendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_es.properties\ncalendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_fr_CA.properties\ncalendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_ja.properties\ncalendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_nl.properties\ncalendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_ru.properties\ncalendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_sv.properties\ncalendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_zh_CN.properties\ncalendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/java/org/sakaiproject/tool/summarycalendar/ui/CalendarBean.java\ncalendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/java/org/sakaiproject/tool/summarycalendar/ui/EventSummary.java\ncalendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/java/org/sakaiproject/tool/summarycalendar/ui/PrefsBean.java\ncalendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/webapp/summary-calendar/calendar.jsp\ncalendar/branches/sakai_2-5-x/calendar-summary-tool/tool/src/webapp/summary-calendar/prefs.jsp\nLog:\nsvn merge -r 37633:37634 https://source.sakaiproject.org/svn/calendar/trunk\nU    calendar-summary-tool/tool/src/java/org/sakaiproject/tool/summarycalendar/ui/CalendarBean.java\nU    calendar-summary-tool/tool/src/java/org/sakaiproject/tool/summarycalendar/ui/EventSummary.java\nU    calendar-summary-tool/tool/src/java/org/sakaiproject/tool/summarycalendar/ui/PrefsBean.java\nA    calendar-summary-tool/tool/src/java/org/sakaiproject/tool/summarycalendar/ui/EventTypes.java\nU    calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages.properties\nU    calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_zh_CN.properties\nU    calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_ar.properties\nU    calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_ca.properties\nU    calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_ru.properties\nU    calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_es.properties\nU    calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_sv.properties\nA    calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_ko.properties\nU    calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_nl.properties\nA    calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_en_GB.properties\nU    calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_fr_CA.properties\nU    calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_ja.properties\nU    calendar-summary-tool/tool/src/webapp/summary-calendar/calendar.jsp\nU    calendar-summary-tool/tool/src/webapp/summary-calendar/prefs.jsp\nin-143-196:~/java/2-5/sakai_2-5-x/calendar mmmay$ svn log -r 37633:37634 https://source.sakaiproject.org/svn/calendar/trunk\n------------------------------------------------------------------------\nr37634 | nuno@ufp.pt | 2007-10-30 11:58:56 -0400 (Tue, 30 Oct 2007) | 1 line\n\nSAK-10440: Localize Calendar Summary event types\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Thu Nov  1 15:42:36 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 01 Nov 2007 15:42:36 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 01 Nov 2007 15:42:36 -0400\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby faithful.mail.umich.edu () with ESMTP id lA1JgZ8M021494;\n\tThu, 1 Nov 2007 15:42:35 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 472A2C24.C3513.9476 ; \n\t 1 Nov 2007 15:42:31 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A563470548;\n\tThu,  1 Nov 2007 00:26:31 +0000 (GMT)\nMessage-ID: <200711011938.lA1JciCb028899@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 875\n          for <source@collab.sakaiproject.org>;\n          Thu, 1 Nov 2007 00:26:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 02C191DBFF\n\tfor <source@collab.sakaiproject.org>; Thu,  1 Nov 2007 19:42:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1JciXZ028901\n\tfor <source@collab.sakaiproject.org>; Thu, 1 Nov 2007 15:38:44 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1JciCb028899\n\tfor source@collab.sakaiproject.org; Thu, 1 Nov 2007 15:38:44 -0400\nDate: Thu, 1 Nov 2007 15:38:44 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37686 - sam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/select\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  1 15:42:36 2007\nX-DSPAM-Confidence: 0.7622\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37686\n\nAuthor: mmmay@indiana.edu\nDate: 2007-11-01 15:38:43 -0400 (Thu, 01 Nov 2007)\nNew Revision: 37686\n\nModified:\nsam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/select/SelectActionListener.java\nLog:\nvn merge -r 37419:37420 https://source.sakaiproject.org/svn/sam/trunk\nU    samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/select/SelectActionListener.java\nin-143-196:~/java/2-5/sakai_2-5-x/sam mmmay$ svn log -r 37419:37420 https://source.sakaiproject.org/svn/sam/trunk\n------------------------------------------------------------------------\nr37420 | ktsao@stanford.edu | 2007-10-26 13:47:03 -0400 (Fri, 26 Oct 2007) | 1 line\n\nSAK-12049\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zach.thomas@txstate.edu Thu Nov  1 14:51:08 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 01 Nov 2007 14:51:08 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 01 Nov 2007 14:51:08 -0400\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby mission.mail.umich.edu () with ESMTP id lA1Ip7wV002590;\n\tThu, 1 Nov 2007 14:51:07 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 472A2013.A0470.18152 ; \n\t 1 Nov 2007 14:51:03 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D1178707A7;\n\tWed, 31 Oct 2007 23:44:54 +0000 (GMT)\nMessage-ID: <200711011847.lA1IlA9l028847@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 513\n          for <source@collab.sakaiproject.org>;\n          Wed, 31 Oct 2007 23:44:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 287B0AEF0\n\tfor <source@collab.sakaiproject.org>; Thu,  1 Nov 2007 18:50:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1IlAKa028849\n\tfor <source@collab.sakaiproject.org>; Thu, 1 Nov 2007 14:47:10 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1IlA9l028847\n\tfor source@collab.sakaiproject.org; Thu, 1 Nov 2007 14:47:10 -0400\nDate: Thu, 1 Nov 2007 14:47:10 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zach.thomas@txstate.edu\nSubject: [sakai] svn commit: r37685 - content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  1 14:51:08 2007\nX-DSPAM-Confidence: 0.9835\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37685\n\nAuthor: zach.thomas@txstate.edu\nDate: 2007-11-01 14:47:07 -0400 (Thu, 01 Nov 2007)\nNew Revision: 37685\n\nModified:\ncontent/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\nLog:\nfix for TSQ-789, event name too long for the SAKAI_EVENT table\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Thu Nov  1 14:28:46 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 01 Nov 2007 14:28:46 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 01 Nov 2007 14:28:46 -0400\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby brazil.mail.umich.edu () with ESMTP id lA1ISj5Z032348;\n\tThu, 1 Nov 2007 14:28:45 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 472A1AD6.1B422.1868 ; \n\t 1 Nov 2007 14:28:41 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 71D0970572;\n\tWed, 31 Oct 2007 23:22:43 +0000 (GMT)\nMessage-ID: <200711011824.lA1IOvIC028753@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 769\n          for <source@collab.sakaiproject.org>;\n          Wed, 31 Oct 2007 23:22:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AB5CA1DBC7\n\tfor <source@collab.sakaiproject.org>; Thu,  1 Nov 2007 18:28:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1IOwn5028755\n\tfor <source@collab.sakaiproject.org>; Thu, 1 Nov 2007 14:24:58 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1IOvIC028753\n\tfor source@collab.sakaiproject.org; Thu, 1 Nov 2007 14:24:57 -0400\nDate: Thu, 1 Nov 2007 14:24:57 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  1 14:28:46 2007\nX-DSPAM-Confidence: 0.9849\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37684\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-11-01 14:24:54 -0400 (Thu, 01 Nov 2007)\nNew Revision: 37684\n\nAdded:\npostem/trunk/postem-api/src/java/org/sakaiproject/api/app/postem/data/Heading.java\npostem/trunk/postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGradeData.java\npostem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.hbm.xml\npostem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/HeadingImpl.java\npostem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.hbm.xml\npostem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradeDataImpl.java\nModified:\npostem/trunk/.classpath\npostem/trunk/components/src/webapp/WEB-INF/components.xml\npostem/trunk/postem-api/src/java/org/sakaiproject/api/app/postem/data/Gradebook.java\npostem/trunk/postem-api/src/java/org/sakaiproject/api/app/postem/data/GradebookManager.java\npostem/trunk/postem-api/src/java/org/sakaiproject/api/app/postem/data/StudentGrades.java\npostem/trunk/postem-app/pom.xml\npostem/trunk/postem-app/src/java/org/sakaiproject/tool/postem/Column.java\npostem/trunk/postem-app/src/java/org/sakaiproject/tool/postem/PostemTool.java\npostem/trunk/postem-app/src/webapp/WEB-INF/components.xml\npostem/trunk/postem-app/src/webapp/postem/main.jsp\npostem/trunk/postem-hbm/pom.xml\npostem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.hbm.xml\npostem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/GradebookImpl.java\npostem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.hbm.xml\npostem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/StudentGradesImpl.java\npostem/trunk/postem-hbm/src/java/org/sakaiproject/component/app/postem/data/TemplateImpl.java\npostem/trunk/postem-impl/src/java/org/sakaiproject/component/app/postem/GradebookManagerImpl.java\nLog:\nSAK-12095\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12095\nPerformance problems when tool contains large posts\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gsilver@umich.edu Thu Nov  1 12:59:55 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 01 Nov 2007 12:59:55 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 01 Nov 2007 12:59:55 -0400\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby godsend.mail.umich.edu () with ESMTP id lA1GxsQR024868;\n\tThu, 1 Nov 2007 12:59:54 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 472A0602.B5C20.12648 ; \n\t 1 Nov 2007 12:59:50 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CF341704EB;\n\tWed, 31 Oct 2007 21:57:55 +0000 (GMT)\nMessage-ID: <200711011656.lA1Gu5DY028591@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 897\n          for <source@collab.sakaiproject.org>;\n          Wed, 31 Oct 2007 21:57:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2CB391DBC8\n\tfor <source@collab.sakaiproject.org>; Thu,  1 Nov 2007 16:59:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1Gu5RB028593\n\tfor <source@collab.sakaiproject.org>; Thu, 1 Nov 2007 12:56:05 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1Gu5DY028591\n\tfor source@collab.sakaiproject.org; Thu, 1 Nov 2007 12:56:05 -0400\nDate: Thu, 1 Nov 2007 12:56:05 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gsilver@umich.edu\nSubject: [sakai] svn commit: r37683 - reference/trunk/library/src/webapp/skin\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  1 12:59:55 2007\nX-DSPAM-Confidence: 0.9802\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37683\n\nAuthor: gsilver@umich.edu\nDate: 2007-11-01 12:56:04 -0400 (Thu, 01 Nov 2007)\nNew Revision: 37683\n\nModified:\nreference/trunk/library/src/webapp/skin/tool_base.css\nLog:\nSAK-9279\n- help IE render a disabled text input as disabled\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Thu Nov  1 11:23:48 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 01 Nov 2007 11:23:48 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 01 Nov 2007 11:23:48 -0400\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby jacknife.mail.umich.edu () with ESMTP id lA1FNlKF006233;\n\tThu, 1 Nov 2007 11:23:47 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 4729EF7B.AF962.20303 ; \n\t 1 Nov 2007 11:23:43 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9DB22703BE;\n\tWed, 31 Oct 2007 20:21:44 +0000 (GMT)\nMessage-ID: <200711011519.lA1FJbnS028483@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 930\n          for <source@collab.sakaiproject.org>;\n          Wed, 31 Oct 2007 20:21:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D4ABE1DB84\n\tfor <source@collab.sakaiproject.org>; Thu,  1 Nov 2007 15:23:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1FJcxC028485\n\tfor <source@collab.sakaiproject.org>; Thu, 1 Nov 2007 11:19:38 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1FJbnS028483\n\tfor source@collab.sakaiproject.org; Thu, 1 Nov 2007 11:19:37 -0400\nDate: Thu, 1 Nov 2007 11:19:37 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r37682 - in announcement/trunk/announcement-tool/tool: . src/bundle src/java/org/sakaiproject/announcement/tool src/webapp/vm/announcement\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  1 11:23:48 2007\nX-DSPAM-Confidence: 0.8459\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37682\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-11-01 11:19:36 -0400 (Thu, 01 Nov 2007)\nNew Revision: 37682\n\nModified:\nannouncement/trunk/announcement-tool/tool/pom.xml\nannouncement/trunk/announcement-tool/tool/src/bundle/announcement.properties\nannouncement/trunk/announcement-tool/tool/src/java/org/sakaiproject/announcement/tool/AnnouncementAction.java\nannouncement/trunk/announcement-tool/tool/src/webapp/vm/announcement/chef_announcements-metadata.vm\nLog:\nAdds a direct link back to the associated assignment if certain criteria exists.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Thu Nov  1 10:56:46 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 01 Nov 2007 10:56:46 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 01 Nov 2007 10:56:46 -0400\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby score.mail.umich.edu () with ESMTP id lA1Eujhp021947;\n\tThu, 1 Nov 2007 10:56:45 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 4729E926.C79A9.3327 ; \n\t 1 Nov 2007 10:56:41 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BB87F615DB;\n\tWed, 31 Oct 2007 19:54:47 +0000 (GMT)\nMessage-ID: <200711011452.lA1EqxfW028401@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 940\n          for <source@collab.sakaiproject.org>;\n          Wed, 31 Oct 2007 19:54:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B9F501C378\n\tfor <source@collab.sakaiproject.org>; Thu,  1 Nov 2007 14:56:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1Eqxqq028403\n\tfor <source@collab.sakaiproject.org>; Thu, 1 Nov 2007 10:52:59 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1EqxfW028401\n\tfor source@collab.sakaiproject.org; Thu, 1 Nov 2007 10:52:59 -0400\nDate: Thu, 1 Nov 2007 10:52:59 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r37681 - in calendar/trunk/calendar-tool/tool/src: bundle java/org/sakaiproject/calendar/tool webapp/vm/calendar\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  1 10:56:46 2007\nX-DSPAM-Confidence: 0.8465\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37681\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-11-01 10:52:56 -0400 (Thu, 01 Nov 2007)\nNew Revision: 37681\n\nModified:\ncalendar/trunk/calendar-tool/tool/src/bundle/calendar.properties\ncalendar/trunk/calendar-tool/tool/src/java/org/sakaiproject/calendar/tool/CalendarAction.java\ncalendar/trunk/calendar-tool/tool/src/webapp/vm/calendar/chef_calendar_viewActivity.vm\nLog:\nAdds a direct link back to the associated assignment if certain criteria exists.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom hu2@iupui.edu Thu Nov  1 09:07:45 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 01 Nov 2007 09:07:45 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 01 Nov 2007 09:07:45 -0400\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby score.mail.umich.edu () with ESMTP id lA1D7iZE017856;\n\tThu, 1 Nov 2007 09:07:44 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4729CF9A.D6894.15663 ; \n\t 1 Nov 2007 09:07:41 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CF91F562F6;\n\tWed, 31 Oct 2007 18:06:23 +0000 (GMT)\nMessage-ID: <200711011304.lA1D43xs028265@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 874\n          for <source@collab.sakaiproject.org>;\n          Wed, 31 Oct 2007 18:06:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4E8E41DB70\n\tfor <source@collab.sakaiproject.org>; Thu,  1 Nov 2007 13:07:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1D44Rq028267\n\tfor <source@collab.sakaiproject.org>; Thu, 1 Nov 2007 09:04:04 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1D43xs028265\n\tfor source@collab.sakaiproject.org; Thu, 1 Nov 2007 09:04:03 -0400\nDate: Thu, 1 Nov 2007 09:04:03 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to hu2@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: hu2@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  1 09:07:45 2007\nX-DSPAM-Confidence: 0.7000\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37680\n\nAuthor: hu2@iupui.edu\nDate: 2007-11-01 09:03:59 -0400 (Thu, 01 Nov 2007)\nNew Revision: 37680\n\nModified:\nmsgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java\nmsgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums/ui/MessageForumSynopticBean.java\nmsgcntr/trunk/messageforums-app/src/webapp/jsp/privateMsg/pvtMsg.jsp\nmsgcntr/trunk/messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/ui/PrivateMessageManagerImpl.java\nLog:\nSAK-11130\nhttp://jira.sakaiproject.org/jira/browse/SAK-11130\nWith 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.\n\nWithout 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.\n\nQuick fix: do not localize pvt_deleted, pvt_received and pvt_sent. I've done it and it works.\n\nBetter 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. :-)\n\nit support english and spanish now.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Thu Nov  1 08:46:46 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 01 Nov 2007 08:46:46 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 01 Nov 2007 08:46:46 -0400\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby score.mail.umich.edu () with ESMTP id lA1CkjVh007751;\n\tThu, 1 Nov 2007 08:46:45 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 4729CAAF.9C537.25327 ; \n\t 1 Nov 2007 08:46:42 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6574F701C3;\n\tWed, 31 Oct 2007 17:47:42 +0000 (GMT)\nMessage-ID: <200711011243.lA1ChGgI028251@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 224\n          for <source@collab.sakaiproject.org>;\n          Wed, 31 Oct 2007 17:47:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2E5821DB62\n\tfor <source@collab.sakaiproject.org>; Thu,  1 Nov 2007 12:46:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1ChGeo028253\n\tfor <source@collab.sakaiproject.org>; Thu, 1 Nov 2007 08:43:16 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1ChGgI028251\n\tfor source@collab.sakaiproject.org; Thu, 1 Nov 2007 08:43:16 -0400\nDate: Thu, 1 Nov 2007 08:43:16 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37679 - oncourse/branches/sakai_2-4-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  1 08:46:46 2007\nX-DSPAM-Confidence: 0.9824\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37679\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-11-01 08:43:15 -0400 (Thu, 01 Nov 2007)\nNew Revision: 37679\n\nModified:\noncourse/branches/sakai_2-4-x/\noncourse/branches/sakai_2-4-x/.externals\nLog:\nUpdated externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Thu Nov  1 08:46:31 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 01 Nov 2007 08:46:31 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 01 Nov 2007 08:46:31 -0400\nReceived: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43])\n\tby godsend.mail.umich.edu () with ESMTP id lA1CkU3Q014397;\n\tThu, 1 Nov 2007 08:46:30 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY serenity.mr.itd.umich.edu ID 4729CA9F.5A015.19890 ; \n\t 1 Nov 2007 08:46:26 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 71ABF701DD;\n\tWed, 31 Oct 2007 17:47:20 +0000 (GMT)\nMessage-ID: <200711011241.lA1CfrWm028239@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 600\n          for <source@collab.sakaiproject.org>;\n          Wed, 31 Oct 2007 17:47:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 37C2B1DB62\n\tfor <source@collab.sakaiproject.org>; Thu,  1 Nov 2007 12:45:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA1CfrN6028241\n\tfor <source@collab.sakaiproject.org>; Thu, 1 Nov 2007 08:41:54 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA1CfrWm028239\n\tfor source@collab.sakaiproject.org; Thu, 1 Nov 2007 08:41:53 -0400\nDate: Thu, 1 Nov 2007 08:41:53 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [sakai] svn commit: r37678 - assignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  1 08:46:31 2007\nX-DSPAM-Confidence: 0.8516\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37678\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-11-01 08:41:52 -0400 (Thu, 01 Nov 2007)\nNew Revision: 37678\n\nModified:\nassignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nsvn merge -r34159:34160 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\n------------------------------------------------------------------------\nr34160 | zqian@umich.edu | 2007-08-20 12:31:43 -0400 (Mon, 20 Aug 2007) | 1 line\n\nfix to SAK-11191:Student unable to resubmit assignment that is past 'Accept Until' date\n------------------------------------------------------------------------\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Thu Nov  1 03:45:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 01 Nov 2007 03:45:50 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 01 Nov 2007 03:45:50 -0400\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby awakenings.mail.umich.edu () with ESMTP id lA17jkHZ009034;\n\tThu, 1 Nov 2007 03:45:46 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 47298425.66819.2341 ; \n\t 1 Nov 2007 03:45:44 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 321E051FA6;\n\tWed, 31 Oct 2007 12:52:32 +0000 (GMT)\nMessage-ID: <200711010742.lA17gEdi027612@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 330\n          for <source@collab.sakaiproject.org>;\n          Wed, 31 Oct 2007 12:52:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1E0601DB3D\n\tfor <source@collab.sakaiproject.org>; Thu,  1 Nov 2007 07:45:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA17gEOY027614\n\tfor <source@collab.sakaiproject.org>; Thu, 1 Nov 2007 03:42:14 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA17gEdi027612\n\tfor source@collab.sakaiproject.org; Thu, 1 Nov 2007 03:42:14 -0400\nDate: Thu, 1 Nov 2007 03:42:14 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r37677 - sam/branches/SAK-12065/samigo-app\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Nov  1 03:45:50 2007\nX-DSPAM-Confidence: 0.8463\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37677\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-11-01 03:42:06 -0400 (Thu, 01 Nov 2007)\nNew Revision: 37677\n\nModified:\nsam/branches/SAK-12065/samigo-app/pom.xml\nLog:\nSAK-12065 update to current trunk\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Wed Oct 31 21:44:55 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 31 Oct 2007 21:44:55 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 31 Oct 2007 21:44:55 -0400\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby mission.mail.umich.edu () with ESMTP id lA11isq7002073;\n\tWed, 31 Oct 2007 21:44:54 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 47292F8D.9F4DF.2649 ; \n\t31 Oct 2007 21:44:51 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 905BE50983;\n\tWed, 31 Oct 2007 06:53:12 +0000 (GMT)\nMessage-ID: <200711010141.lA11fHn8027298@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 852\n          for <source@collab.sakaiproject.org>;\n          Wed, 31 Oct 2007 06:52:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A3D6E1DAD6\n\tfor <source@collab.sakaiproject.org>; Thu,  1 Nov 2007 01:44:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id lA11fHSF027300\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 21:41:17 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id lA11fHn8027298\n\tfor source@collab.sakaiproject.org; Wed, 31 Oct 2007 21:41:17 -0400\nDate: Wed, 31 Oct 2007 21:41:17 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 31 21:44:55 2007\nX-DSPAM-Confidence: 0.9883\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37676\n\nAuthor: zqian@umich.edu\nDate: 2007-10-31 21:41:13 -0400 (Wed, 31 Oct 2007)\nNew Revision: 37676\n\nModified:\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nassignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nfix to SAK-11226:notification to site leader not affected by all.groups permission in assignments tool\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jzaremba@unicon.net Wed Oct 31 19:55:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 31 Oct 2007 19:55:13 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 31 Oct 2007 19:55:13 -0400\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby mission.mail.umich.edu () with ESMTP id l9VNtCFS010200;\n\tWed, 31 Oct 2007 19:55:12 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 472915DA.9B013.18115 ; \n\t31 Oct 2007 19:55:09 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D76F86FCC8;\n\tWed, 31 Oct 2007 05:07:52 +0000 (GMT)\nMessage-ID: <200710312351.l9VNpXZa027189@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 873\n          for <source@collab.sakaiproject.org>;\n          Wed, 31 Oct 2007 05:07:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 663801DA5C\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 23:54:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9VNpXWo027191\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 19:51:33 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9VNpXZa027189\n\tfor source@collab.sakaiproject.org; Wed, 31 Oct 2007 19:51:33 -0400\nDate: Wed, 31 Oct 2007 19:51:33 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jzaremba@unicon.net using -f\nTo: source@collab.sakaiproject.org\nFrom: jzaremba@unicon.net\nSubject: [sakai] svn commit: r37675 - content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 31 19:55:13 2007\nX-DSPAM-Confidence: 0.8466\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37675\n\nAuthor: jzaremba@unicon.net\nDate: 2007-10-31 19:51:30 -0400 (Wed, 31 Oct 2007)\nNew Revision: 37675\n\nModified:\ncontent/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\ncontent/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java\nLog:\nTSQ-788 conditions now available when using add details link for an item\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Wed Oct 31 16:48:24 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 31 Oct 2007 16:48:24 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 31 Oct 2007 16:48:24 -0400\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby mission.mail.umich.edu () with ESMTP id l9VKmN2s029707;\n\tWed, 31 Oct 2007 16:48:23 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 4728EA11.43A17.28059 ; \n\t31 Oct 2007 16:48:20 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3BE0D6F9F2;\n\tWed, 31 Oct 2007 02:00:56 +0000 (GMT)\nMessage-ID: <200710312045.l9VKj22x026979@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 766\n          for <source@collab.sakaiproject.org>;\n          Wed, 31 Oct 2007 02:00:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C232E1A7AB\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 20:48:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9VKj2fx026981\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 16:45:02 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9VKj22x026979\n\tfor source@collab.sakaiproject.org; Wed, 31 Oct 2007 16:45:02 -0400\nDate: Wed, 31 Oct 2007 16:45:02 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 31 16:48:24 2007\nX-DSPAM-Confidence: 0.7566\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37674\n\nAuthor: cwen@iupui.edu\nDate: 2007-10-31 16:44:59 -0400 (Wed, 31 Oct 2007)\nNew Revision: 37674\n\nAdded:\ngradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/MultipleAssignmentSavingException.java\nModified:\ngradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/GradebookManager.java\ngradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\ngradebook/trunk/app/standalone-app/src/test/org/sakaiproject/tool/gradebook/test/GradebookManagerOPCTest.java\nLog:\nhttp://128.196.219.68/jira/browse/SAK-12091\nSAK-12091\n=>\nadd createAssignments and checkValidName methods to GradebookManager.\nalso add MultipleAssignmentSavingException.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ktsao@stanford.edu Wed Oct 31 16:40:18 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 31 Oct 2007 16:40:18 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 31 Oct 2007 16:40:18 -0400\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby panther.mail.umich.edu () with ESMTP id l9VKeH7R031293;\n\tWed, 31 Oct 2007 16:40:18 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 4728E822.397CE.31193 ; \n\t31 Oct 2007 16:40:15 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 251BC6FB74;\n\tWed, 31 Oct 2007 01:52:36 +0000 (GMT)\nMessage-ID: <200710312036.l9VKajAN026964@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 530\n          for <source@collab.sakaiproject.org>;\n          Wed, 31 Oct 2007 01:52:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 308631A7AB\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 20:39:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9VKajsK026966\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 16:36:45 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9VKajAN026964\n\tfor source@collab.sakaiproject.org; Wed, 31 Oct 2007 16:36:45 -0400\nDate: Wed, 31 Oct 2007 16:36:45 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ktsao@stanford.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ktsao@stanford.edu\nSubject: [sakai] svn commit: r37673 - sam/trunk/samigo-app\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 31 16:40:18 2007\nX-DSPAM-Confidence: 0.9807\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37673\n\nAuthor: ktsao@stanford.edu\nDate: 2007-10-31 16:36:42 -0400 (Wed, 31 Oct 2007)\nNew Revision: 37673\n\nModified:\nsam/trunk/samigo-app/pom.xml\nLog:\nSAK-12090\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom bahollad@indiana.edu Wed Oct 31 15:43:31 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 31 Oct 2007 15:43:31 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 31 Oct 2007 15:43:31 -0400\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby fan.mail.umich.edu () with ESMTP id l9VJhSl8021197;\n\tWed, 31 Oct 2007 15:43:28 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4728DAD9.915B2.9058 ; \n\t31 Oct 2007 15:43:25 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 146A76FA11;\n\tWed, 31 Oct 2007 00:55:49 +0000 (GMT)\nMessage-ID: <200710311940.l9VJe30S026863@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 442\n          for <source@collab.sakaiproject.org>;\n          Wed, 31 Oct 2007 00:55:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E7978AF3C\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 19:43:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9VJe33P026865\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 15:40:03 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9VJe30S026863\n\tfor source@collab.sakaiproject.org; Wed, 31 Oct 2007 15:40:03 -0400\nDate: Wed, 31 Oct 2007 15:40:03 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bahollad@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: bahollad@indiana.edu\nSubject: [sakai] svn commit: r37672 - reference/trunk/docs/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 31 15:43:31 2007\nX-DSPAM-Confidence: 0.6509\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37672\n\nAuthor: bahollad@indiana.edu\nDate: 2007-10-31 15:40:02 -0400 (Wed, 31 Oct 2007)\nNew Revision: 37672\n\nModified:\nreference/trunk/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql\nreference/trunk/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\nLog:\nSAK-12027\nAdded back some removed lines.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zach.thomas@txstate.edu Wed Oct 31 13:37:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 31 Oct 2007 13:37:37 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 31 Oct 2007 13:37:37 -0400\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby brazil.mail.umich.edu () with ESMTP id l9VHbanl006857;\n\tWed, 31 Oct 2007 13:37:36 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 4728BD58.DD21F.12018 ; \n\t31 Oct 2007 13:37:31 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E35546F9C2;\n\tTue, 30 Oct 2007 23:13:07 +0000 (GMT)\nMessage-ID: <200710311734.l9VHYGJm026629@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 192\n          for <source@collab.sakaiproject.org>;\n          Tue, 30 Oct 2007 23:12:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E452A1AAA6\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 17:37:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9VHYHA1026631\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 13:34:17 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9VHYGJm026629\n\tfor source@collab.sakaiproject.org; Wed, 31 Oct 2007 13:34:17 -0400\nDate: Wed, 31 Oct 2007 13:34:17 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zach.thomas@txstate.edu\nSubject: [sakai] svn commit: r37670 - content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 31 13:37:37 2007\nX-DSPAM-Confidence: 0.9831\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37670\n\nAuthor: zach.thomas@txstate.edu\nDate: 2007-10-31 13:34:14 -0400 (Wed, 31 Oct 2007)\nNew Revision: 37670\n\nModified:\ncontent/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\nLog:\nwe have persistence\\! fixes TSQ-722\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Wed Oct 31 13:19:03 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 31 Oct 2007 13:19:03 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 31 Oct 2007 13:19:03 -0400\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby brazil.mail.umich.edu () with ESMTP id l9VHJ2o8027747;\n\tWed, 31 Oct 2007 13:19:02 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4728B900.1B213.24285 ; \n\t31 Oct 2007 13:18:59 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 469426F98B;\n\tTue, 30 Oct 2007 22:54:31 +0000 (GMT)\nMessage-ID: <200710311715.l9VHFVms026595@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 498\n          for <source@collab.sakaiproject.org>;\n          Tue, 30 Oct 2007 22:54:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 792D51D61F\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 17:18:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9VHFVtk026597\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 13:15:31 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9VHFVms026595\n\tfor source@collab.sakaiproject.org; Wed, 31 Oct 2007 13:15:31 -0400\nDate: Wed, 31 Oct 2007 13:15:31 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 31 13:19:03 2007\nX-DSPAM-Confidence: 0.7598\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37669\n\nAuthor: cwen@iupui.edu\nDate: 2007-10-31 13:15:28 -0400 (Wed, 31 Oct 2007)\nNew Revision: 37669\n\nModified:\ngradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/jsf/ClassAvgConverter.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentDetailsBean.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/GradebookDependentBean.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/InstructorViewBean.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/ViewByStudentBean.java\ngradebook/trunk/app/ui/src/webapp/assignmentDetails.jsp\ngradebook/trunk/app/ui/src/webapp/instructorView.jsp\nLog:\nhttp://128.196.219.68/jira/browse/SAK-10427\nSAK-10427\n=>\nfix some displyaing/saving issues.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Wed Oct 31 10:15:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 31 Oct 2007 10:15:19 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 31 Oct 2007 10:15:19 -0400\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby brazil.mail.umich.edu () with ESMTP id l9VEFIZe031777;\n\tWed, 31 Oct 2007 10:15:18 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 47288DF0.8EA4A.5867 ; \n\t31 Oct 2007 10:15:16 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3CC446F7BE;\n\tTue, 30 Oct 2007 19:50:50 +0000 (GMT)\nMessage-ID: <200710311412.l9VEC2CY026322@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 437\n          for <source@collab.sakaiproject.org>;\n          Tue, 30 Oct 2007 19:50:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id F018C1D5CF\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 14:14:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9VEC2bL026324\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 10:12:02 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9VEC2CY026322\n\tfor source@collab.sakaiproject.org; Wed, 31 Oct 2007 10:12:02 -0400\nDate: Wed, 31 Oct 2007 10:12:02 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37668 - oncourse/branches/sakai_2-4-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 31 10:15:19 2007\nX-DSPAM-Confidence: 0.9808\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37668\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-31 10:12:00 -0400 (Wed, 31 Oct 2007)\nNew Revision: 37668\n\nModified:\noncourse/branches/sakai_2-4-x/\noncourse/branches/sakai_2-4-x/.externals\nLog:\nUpdated externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Wed Oct 31 10:13:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 31 Oct 2007 10:13:50 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 31 Oct 2007 10:13:50 -0400\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby score.mail.umich.edu () with ESMTP id l9VEDnsP014246;\n\tWed, 31 Oct 2007 10:13:49 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 47288D8E.84861.19803 ; \n\t31 Oct 2007 10:13:38 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8F25C583D6;\n\tTue, 30 Oct 2007 19:49:05 +0000 (GMT)\nMessage-ID: <200710311410.l9VEACPe026309@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 631\n          for <source@collab.sakaiproject.org>;\n          Tue, 30 Oct 2007 19:48:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C214C1D5CF\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 14:13:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9VEACQU026311\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 10:10:12 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9VEACPe026309\n\tfor source@collab.sakaiproject.org; Wed, 31 Oct 2007 10:10:12 -0400\nDate: Wed, 31 Oct 2007 10:10:12 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [sakai] svn commit: r37667 - assignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 31 10:13:50 2007\nX-DSPAM-Confidence: 0.7011\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37667\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-10-31 10:10:11 -0400 (Wed, 31 Oct 2007)\nNew Revision: 37667\n\nModified:\nassignment/branches/oncourse_2-4-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nsvn merge -r37384:37385 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\n------------------------------------------------------------------------\nr37385 | zqian@umich.edu | 2007-10-25 12:05:12 -0400 (Thu, 25 Oct 2007) | 1 line\n\nfix to SAK-12047:Upload All/ When only 1 students information is uploaded, the data for other students is being wiped out\n------------------------------------------------------------------------\n\nsvn merge -r37399:37400  https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\n------------------------------------------------------------------------\nr37400 | zqian@umich.edu | 2007-10-25 22:16:42 -0400 (Thu, 25 Oct 2007) | 1 line\n\nfix to SAK-12029:zip file not accepted in Assignments \"Upload All\" feature\n------------------------------------------------------------------------\n\nsvn merge -r37499:37500 https://source.sakaiproject.org/svn/assignment/trunk\nG    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\n------------------------------------------------------------------------\nr37500 | zqian@umich.edu | 2007-10-29 16:33:02 -0400 (Mon, 29 Oct 2007) | 1 line\n\nfix to SAK-12047:Upload All/ When only 1 students information is uploaded, the data for other students is being wiped out\n------------------------------------------------------------------------\n\nsvn merge -r37435:37436 https://source.sakaiproject.org/svn/assignment/trunk\nG    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nU    assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm\nU    assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\n\n------------------------------------------------------------------------\nr37436 | zqian@umich.edu | 2007-10-26 23:12:38 -0400 (Fri, 26 Oct 2007) | 1 line\n\nfix to SAK-12053:If user sets an invalid accept until date for a single student a warning should be displayed\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Wed Oct 31 10:13:40 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 31 Oct 2007 10:13:40 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 31 Oct 2007 10:13:40 -0400\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby chaos.mail.umich.edu () with ESMTP id l9VEDdmG013484;\n\tWed, 31 Oct 2007 10:13:39 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 47288D8A.3A2D4.11763 ; \n\t31 Oct 2007 10:13:35 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 48B7B52E40;\n\tTue, 30 Oct 2007 19:49:05 +0000 (GMT)\nMessage-ID: <200710311410.l9VEAAvh026297@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1010\n          for <source@collab.sakaiproject.org>;\n          Tue, 30 Oct 2007 19:48:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0DC241D5CF\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 14:13:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9VEAAJF026299\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 10:10:10 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9VEAAvh026297\n\tfor source@collab.sakaiproject.org; Wed, 31 Oct 2007 10:10:10 -0400\nDate: Wed, 31 Oct 2007 10:10:10 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [sakai] svn commit: r37666 - in assignment/branches/oncourse_2-4-x/assignment-tool/tool/src: java/org/sakaiproject/assignment/tool webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 31 10:13:40 2007\nX-DSPAM-Confidence: 0.7011\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37666\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-10-31 10:10:08 -0400 (Wed, 31 Oct 2007)\nNew Revision: 37666\n\nModified:\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm\nLog:\nsvn merge -r37384:37385 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\n------------------------------------------------------------------------\nr37385 | zqian@umich.edu | 2007-10-25 12:05:12 -0400 (Thu, 25 Oct 2007) | 1 line\n\nfix to SAK-12047:Upload All/ When only 1 students information is uploaded, the data for other students is being wiped out\n------------------------------------------------------------------------\n\nsvn merge -r37399:37400  https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\n------------------------------------------------------------------------\nr37400 | zqian@umich.edu | 2007-10-25 22:16:42 -0400 (Thu, 25 Oct 2007) | 1 line\n\nfix to SAK-12029:zip file not accepted in Assignments \"Upload All\" feature\n------------------------------------------------------------------------\n\nsvn merge -r37499:37500 https://source.sakaiproject.org/svn/assignment/trunk\nG    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\n------------------------------------------------------------------------\nr37500 | zqian@umich.edu | 2007-10-29 16:33:02 -0400 (Mon, 29 Oct 2007) | 1 line\n\nfix to SAK-12047:Upload All/ When only 1 students information is uploaded, the data for other students is being wiped out\n------------------------------------------------------------------------\n\nsvn merge -r37435:37436 https://source.sakaiproject.org/svn/assignment/trunk\nG    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nU    assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm\nU    assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\n\n------------------------------------------------------------------------\nr37436 | zqian@umich.edu | 2007-10-26 23:12:38 -0400 (Fri, 26 Oct 2007) | 1 line\n\nfix to SAK-12053:If user sets an invalid accept until date for a single student a warning should be displayed\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Oct 31 09:16:22 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 31 Oct 2007 09:16:22 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 31 Oct 2007 09:16:22 -0400\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby score.mail.umich.edu () with ESMTP id l9VDGKvp016331;\n\tWed, 31 Oct 2007 09:16:20 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 4728801A.10980.3413 ; \n\t31 Oct 2007 09:16:16 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B4FBE50C5B;\n\tTue, 30 Oct 2007 18:52:44 +0000 (GMT)\nMessage-ID: <200710311312.l9VDCsfg026258@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 603\n          for <source@collab.sakaiproject.org>;\n          Tue, 30 Oct 2007 18:52:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 389B41D4E1\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 13:15:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9VDCsdW026260\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 09:12:54 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9VDCsfg026258\n\tfor source@collab.sakaiproject.org; Wed, 31 Oct 2007 09:12:54 -0400\nDate: Wed, 31 Oct 2007 09:12:54 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37665 - in memory/branches/SAK-11913/memory-test: . impl impl/src/java/org/sakaiproject/memory/test pack/src/webapp/WEB-INF\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 31 09:16:22 2007\nX-DSPAM-Confidence: 0.9860\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37665\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-31 09:12:41 -0400 (Wed, 31 Oct 2007)\nNew Revision: 37665\n\nAdded:\nmemory/branches/SAK-11913/memory-test/impl/src/java/org/sakaiproject/memory/test/LoadTestSakaiCaches.java\nModified:\nmemory/branches/SAK-11913/memory-test/.classpath\nmemory/branches/SAK-11913/memory-test/impl/pom.xml\nmemory/branches/SAK-11913/memory-test/impl/src/java/org/sakaiproject/memory/test/LoadTestMemoryService.java\nmemory/branches/SAK-11913/memory-test/pack/src/webapp/WEB-INF/components.xml\nLog:\nSAK-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...\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom sgithens@caret.cam.ac.uk Wed Oct 31 08:27:33 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 31 Oct 2007 08:27:33 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 31 Oct 2007 08:27:33 -0400\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby casino.mail.umich.edu () with ESMTP id l9VCRWOY021025;\n\tWed, 31 Oct 2007 08:27:32 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 472874AB.381E0.20008 ; \n\t31 Oct 2007 08:27:29 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6A1756F775;\n\tTue, 30 Oct 2007 18:03:53 +0000 (GMT)\nMessage-ID: <200710311223.l9VCNtig026222@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 643\n          for <source@collab.sakaiproject.org>;\n          Tue, 30 Oct 2007 18:03:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0819D1D4D8\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 12:26:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9VCNtTN026224\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 08:23:55 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9VCNtig026222\n\tfor source@collab.sakaiproject.org; Wed, 31 Oct 2007 08:23:55 -0400\nDate: Wed, 31 Oct 2007 08:23:55 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to sgithens@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: sgithens@caret.cam.ac.uk\nSubject: [sakai] svn commit: r37664 - in webservices/trunk/axis: . provisional src/webapp\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 31 08:27:33 2007\nX-DSPAM-Confidence: 0.9862\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37664\n\nAuthor: sgithens@caret.cam.ac.uk\nDate: 2007-10-31 08:23:45 -0400 (Wed, 31 Oct 2007)\nNew Revision: 37664\n\nAdded:\nwebservices/trunk/axis/provisional/\nwebservices/trunk/axis/provisional/ContentHosting.jws\nwebservices/trunk/axis/provisional/README\nRemoved:\nwebservices/trunk/axis/src/webapp/ContentHosting.jws\nLog:\nSAK-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.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom a.fish@lancaster.ac.uk Wed Oct 31 07:50:11 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 31 Oct 2007 07:50:11 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 31 Oct 2007 07:50:11 -0400\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby sleepers.mail.umich.edu () with ESMTP id l9VBoAjh002547;\n\tWed, 31 Oct 2007 07:50:10 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 47286BEA.BA4FB.3657 ; \n\t31 Oct 2007 07:50:05 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8C3D56F305;\n\tTue, 30 Oct 2007 17:31:29 +0000 (GMT)\nMessage-ID: <200710311146.l9VBkZdp026196@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 573\n          for <source@collab.sakaiproject.org>;\n          Tue, 30 Oct 2007 17:31:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C95671D3B1\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 11:49:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9VBkaBX026198\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 07:46:36 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9VBkZdp026196\n\tfor source@collab.sakaiproject.org; Wed, 31 Oct 2007 07:46:35 -0400\nDate: Wed, 31 Oct 2007 07:46:35 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to a.fish@lancaster.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: a.fish@lancaster.ac.uk\nSubject: [sakai] svn commit: r37663 - blog/trunk/jsfComponent\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 31 07:50:11 2007\nX-DSPAM-Confidence: 0.9822\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37663\n\nAuthor: a.fish@lancaster.ac.uk\nDate: 2007-10-31 07:46:28 -0400 (Wed, 31 Oct 2007)\nNew Revision: 37663\n\nModified:\nblog/trunk/jsfComponent/project.xml\nLog:\nAdded sakai-util dependency\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Oct 31 07:13:36 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 31 Oct 2007 07:13:36 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 31 Oct 2007 07:13:36 -0400\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby sleepers.mail.umich.edu () with ESMTP id l9VBDaBo021084;\n\tWed, 31 Oct 2007 07:13:36 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 4728635A.D8EAE.24740 ; \n\t31 Oct 2007 07:13:33 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 08AA26F2EE;\n\tTue, 30 Oct 2007 16:55:05 +0000 (GMT)\nMessage-ID: <200710311110.l9VBAG2x026182@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 427\n          for <source@collab.sakaiproject.org>;\n          Tue, 30 Oct 2007 16:54:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BE01F1D300\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 11:13:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9VBAGbw026184\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 07:10:16 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9VBAG2x026182\n\tfor source@collab.sakaiproject.org; Wed, 31 Oct 2007 07:10:16 -0400\nDate: Wed, 31 Oct 2007 07:10:16 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37662 - memory/branches/SAK-11913/memory-test/impl/src/java/org/sakaiproject/memory/test\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 31 07:13:36 2007\nX-DSPAM-Confidence: 0.9834\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37662\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-31 07:10:11 -0400 (Wed, 31 Oct 2007)\nNew Revision: 37662\n\nModified:\nmemory/branches/SAK-11913/memory-test/impl/src/java/org/sakaiproject/memory/test/LoadTestMemoryService.java\nLog:\nSAK-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\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Wed Oct 31 04:50:54 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 31 Oct 2007 04:50:54 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 31 Oct 2007 04:50:54 -0400\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby brazil.mail.umich.edu () with ESMTP id l9V8or0p014925;\n\tWed, 31 Oct 2007 04:50:53 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 472841E8.A7DC5.721 ; \n\t31 Oct 2007 04:50:51 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3A5E16F684;\n\tTue, 30 Oct 2007 14:33:22 +0000 (GMT)\nMessage-ID: <200710310847.l9V8lVd0026130@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 983\n          for <source@collab.sakaiproject.org>;\n          Tue, 30 Oct 2007 14:32:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EE2DA1D3D3\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 08:50:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9V8lVFY026132\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 04:47:31 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9V8lVd0026130\n\tfor source@collab.sakaiproject.org; Wed, 31 Oct 2007 04:47:31 -0400\nDate: Wed, 31 Oct 2007 04:47:31 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r37661 - polls/branches/sakai_2-4-x/tool/src/java/org/sakaiproject/poll/tool/validators\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 31 04:50:54 2007\nX-DSPAM-Confidence: 0.9786\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37661\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-10-31 04:47:18 -0400 (Wed, 31 Oct 2007)\nNew Revision: 37661\n\nModified:\npolls/branches/sakai_2-4-x/tool/src/java/org/sakaiproject/poll/tool/validators/VoteValidator.java\nLog:\nSAK-12083 merge into 2-4-x\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Wed Oct 31 04:19:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 31 Oct 2007 04:19:43 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 31 Oct 2007 04:19:43 -0400\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby flawless.mail.umich.edu () with ESMTP id l9V8Jg9q004001;\n\tWed, 31 Oct 2007 04:19:42 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 47283A97.B8439.605 ; \n\t31 Oct 2007 04:19:38 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 373646F665;\n\tTue, 30 Oct 2007 14:02:05 +0000 (GMT)\nMessage-ID: <200710310816.l9V8GNhu025870@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 386\n          for <source@collab.sakaiproject.org>;\n          Tue, 30 Oct 2007 14:01:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4B3E51CFEA\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 08:19:19 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9V8GNMk025872\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 04:16:23 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9V8GNhu025870\n\tfor source@collab.sakaiproject.org; Wed, 31 Oct 2007 04:16:23 -0400\nDate: Wed, 31 Oct 2007 04:16:23 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r37660 - polls/trunk/tool/src/java/org/sakaiproject/poll/tool/validators\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 31 04:19:43 2007\nX-DSPAM-Confidence: 0.9756\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37660\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-10-31 04:16:00 -0400 (Wed, 31 Oct 2007)\nNew Revision: 37660\n\nModified:\npolls/trunk/tool/src/java/org/sakaiproject/poll/tool/validators/VoteValidator.java\nLog:\nSAK-12083 only give one error condition on voting\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Tue Oct 30 23:23:32 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 23:23:32 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 23:23:32 -0400\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby panther.mail.umich.edu () with ESMTP id l9V3NU44000602;\n\tTue, 30 Oct 2007 23:23:30 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4727F52D.A12EB.12924 ; \n\t30 Oct 2007 23:23:28 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1E2956F2EE;\n\tTue, 30 Oct 2007 09:09:45 +0000 (GMT)\nMessage-ID: <200710310320.l9V3KA4x025142@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 205\n          for <source@collab.sakaiproject.org>;\n          Tue, 30 Oct 2007 09:09:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DC6261CDDB\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 03:23:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9V3KAFZ025144\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 23:20:10 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9V3KA4x025142\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 23:20:10 -0400\nDate: Tue, 30 Oct 2007 23:20:10 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37659 - assignment/trunk/assignment-tool/tool/src/webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 23:23:32 2007\nX-DSPAM-Confidence: 0.9844\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37659\n\nAuthor: zqian@umich.edu\nDate: 2007-10-30 23:20:08 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37659\n\nModified:\nassignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm\nLog:\nFix to SAK-11898: View or grade submissions: Pager is shown even when there aren't submissions\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jzaremba@unicon.net Tue Oct 30 20:03:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 20:03:25 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 20:03:25 -0400\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby sleepers.mail.umich.edu () with ESMTP id l9V03O76001306;\n\tTue, 30 Oct 2007 20:03:24 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4727C646.8CE7.21500 ; \n\t30 Oct 2007 20:03:20 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 472B56F20A;\n\tTue, 30 Oct 2007 05:59:37 +0000 (GMT)\nMessage-ID: <200710310000.l9V0098g025070@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 538\n          for <source@collab.sakaiproject.org>;\n          Tue, 30 Oct 2007 05:59:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 09320B5B3\n\tfor <source@collab.sakaiproject.org>; Wed, 31 Oct 2007 00:03:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9V0090C025072\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 20:00:09 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9V0098g025070\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 20:00:09 -0400\nDate: Tue, 30 Oct 2007 20:00:09 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jzaremba@unicon.net using -f\nTo: source@collab.sakaiproject.org\nFrom: jzaremba@unicon.net\nSubject: [sakai] svn commit: r37658 - in content/branches/SAK-11543/content-tool/tool/src: java/org/sakaiproject/content/tool webapp/vm/resources\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 20:03:25 2007\nX-DSPAM-Confidence: 0.8436\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37658\n\nAuthor: jzaremba@unicon.net\nDate: 2007-10-30 20:00:02 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37658\n\nModified:\ncontent/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\ncontent/branches/SAK-11543/content-tool/tool/src/webapp/vm/resources/sakai_properties.vm\nLog:\nCondition widgets now working upon creating new resource.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zach.thomas@txstate.edu Tue Oct 30 19:23:38 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 19:23:38 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 19:23:38 -0400\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby panther.mail.umich.edu () with ESMTP id l9UNNcbp006155;\n\tTue, 30 Oct 2007 19:23:38 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 4727BCF4.3DB.19800 ; \n\t30 Oct 2007 19:23:34 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6089A6F1EF;\n\tTue, 30 Oct 2007 05:19:52 +0000 (GMT)\nMessage-ID: <200710302320.l9UNKHPx025056@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 611\n          for <source@collab.sakaiproject.org>;\n          Tue, 30 Oct 2007 05:19:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 93A221CF1D\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 23:23:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UNKH93025058\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 19:20:17 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UNKHPx025056\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 19:20:17 -0400\nDate: Tue, 30 Oct 2007 19:20:17 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zach.thomas@txstate.edu\nSubject: [sakai] svn commit: r37657 - content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 19:23:38 2007\nX-DSPAM-Confidence: 0.7556\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37657\n\nAuthor: zach.thomas@txstate.edu\nDate: 2007-10-30 19:20:15 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37657\n\nModified:\ncontent/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\nLog:\nfix for TSQ-785 Rule should be evaluated at create-time\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jzaremba@unicon.net Tue Oct 30 16:59:12 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 16:59:12 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 16:59:12 -0400\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby jacknife.mail.umich.edu () with ESMTP id l9UKxA7i024586;\n\tTue, 30 Oct 2007 16:59:10 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 47279B16.F09C9.6034 ; \n\t30 Oct 2007 16:59:05 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DE3966EF5B;\n\tTue, 30 Oct 2007 02:55:20 +0000 (GMT)\nMessage-ID: <200710302055.l9UKtmK0024847@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 738\n          for <source@collab.sakaiproject.org>;\n          Tue, 30 Oct 2007 02:55:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0B9C51CDEC\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 20:58:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UKtmpE024849\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 16:55:48 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UKtmK0024847\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 16:55:48 -0400\nDate: Tue, 30 Oct 2007 16:55:48 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jzaremba@unicon.net using -f\nTo: source@collab.sakaiproject.org\nFrom: jzaremba@unicon.net\nSubject: [sakai] svn commit: r37655 - in content/branches/SAK-11543: content-bundles content-tool/tool/src/webapp/vm/resources\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 16:59:12 2007\nX-DSPAM-Confidence: 0.8413\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37655\n\nAuthor: jzaremba@unicon.net\nDate: 2007-10-30 16:55:42 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37655\n\nModified:\ncontent/branches/SAK-11543/content-bundles/types.properties\ncontent/branches/SAK-11543/content-tool/tool/src/webapp/vm/resources/sakai_properties.vm\nLog:\nTSQ-786 Displaying user friendly message in place of condition widgets when no gradebook assignments are available.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Tue Oct 30 16:43:38 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 16:43:38 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 16:43:38 -0400\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby panther.mail.umich.edu () with ESMTP id l9UKhbHn004247;\n\tTue, 30 Oct 2007 16:43:37 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 4727976E.F09F6.12389 ; \n\t30 Oct 2007 16:43:29 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C461A5A832;\n\tTue, 30 Oct 2007 02:39:48 +0000 (GMT)\nMessage-ID: <200710302040.l9UKeLrr024833@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 589\n          for <source@collab.sakaiproject.org>;\n          Tue, 30 Oct 2007 02:39:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A44B91CDD8\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 20:43:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UKeLSN024835\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 16:40:21 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UKeLrr024833\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 16:40:21 -0400\nDate: Tue, 30 Oct 2007 16:40:21 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37654 - ctools/trunk/builds/ctools_2-4/tools\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 16:43:38 2007\nX-DSPAM-Confidence: 0.9833\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37654\n\nAuthor: dlhaines@umich.edu\nDate: 2007-10-30 16:40:19 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37654\n\nModified:\nctools/trunk/builds/ctools_2-4/tools/build-ctools.xml\nctools/trunk/builds/ctools_2-4/tools/build-patch-util.xml\nLog:\nCTools: delete unnecessary comments.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Tue Oct 30 16:42:39 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 16:42:39 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 16:42:39 -0400\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby fan.mail.umich.edu () with ESMTP id l9UKgcBq022697;\n\tTue, 30 Oct 2007 16:42:38 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 47279737.6DE7A.31432 ; \n\t30 Oct 2007 16:42:35 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id AD9A76F0FB;\n\tTue, 30 Oct 2007 02:38:52 +0000 (GMT)\nMessage-ID: <200710302039.l9UKdNqF024821@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 837\n          for <source@collab.sakaiproject.org>;\n          Tue, 30 Oct 2007 02:38:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EE33C1CDD8\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 20:42:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UKdNn1024823\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 16:39:23 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UKdNqF024821\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 16:39:23 -0400\nDate: Tue, 30 Oct 2007 16:39:23 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37653 - ctools/trunk/builds/ctools_2-4/tools\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 16:42:39 2007\nX-DSPAM-Confidence: 0.9831\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37653\n\nAuthor: dlhaines@umich.edu\nDate: 2007-10-30 16:39:22 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37653\n\nRemoved:\nctools/trunk/builds/ctools_2-4/tools/build-samigo.xml\nLog:\nCTools: delete unneeded module.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Tue Oct 30 16:42:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 16:42:17 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 16:42:17 -0400\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby mission.mail.umich.edu () with ESMTP id l9UKgGep030370;\n\tTue, 30 Oct 2007 16:42:16 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 47279721.D87B2.17416 ; \n\t30 Oct 2007 16:42:12 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3F8D86E0AD;\n\tTue, 30 Oct 2007 02:38:29 +0000 (GMT)\nMessage-ID: <200710302038.l9UKctfT024809@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 453\n          for <source@collab.sakaiproject.org>;\n          Tue, 30 Oct 2007 02:38:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C28631CDD8\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 20:41:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UKctrV024811\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 16:38:55 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UKctfT024809\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 16:38:55 -0400\nDate: Tue, 30 Oct 2007 16:38:55 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37652 - ctools/trunk/builds/ctools_2-4/tools\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 16:42:17 2007\nX-DSPAM-Confidence: 0.9811\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37652\n\nAuthor: dlhaines@umich.edu\nDate: 2007-10-30 16:38:53 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37652\n\nModified:\nctools/trunk/builds/ctools_2-4/tools/build-sakai.xml\nLog:\nCTools: delete unnecessary comments.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Tue Oct 30 16:34:47 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 16:34:47 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 16:34:47 -0400\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby jacknife.mail.umich.edu () with ESMTP id l9UKYkdt010937;\n\tTue, 30 Oct 2007 16:34:46 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4727955D.1DB83.18686 ; \n\t30 Oct 2007 16:34:39 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6B6676E10E;\n\tTue, 30 Oct 2007 02:30:55 +0000 (GMT)\nMessage-ID: <200710302031.l9UKVSg6024795@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 791\n          for <source@collab.sakaiproject.org>;\n          Tue, 30 Oct 2007 02:30:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CFFE51CDAF\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 20:34:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UKVSIP024797\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 16:31:28 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UKVSg6024795\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 16:31:28 -0400\nDate: Tue, 30 Oct 2007 16:31:28 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37651 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 16:34:47 2007\nX-DSPAM-Confidence: 0.8471\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37651\n\nAuthor: dlhaines@umich.edu\nDate: 2007-10-30 16:31:27 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37651\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties\nLog:\nCTools: update 2.4.xP for (most) requested fixes.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Tue Oct 30 16:31:55 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 16:31:55 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 16:31:55 -0400\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby score.mail.umich.edu () with ESMTP id l9UKVsqW023432;\n\tTue, 30 Oct 2007 16:31:54 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 472794B5.962C4.11183 ; \n\t30 Oct 2007 16:31:52 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9CBE66E0AD;\n\tTue, 30 Oct 2007 02:28:07 +0000 (GMT)\nMessage-ID: <200710302028.l9UKSfAL024782@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 240\n          for <source@collab.sakaiproject.org>;\n          Tue, 30 Oct 2007 02:27:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1E44B1CDAF\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 20:31:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UKSfxs024784\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 16:28:41 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UKSfAL024782\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 16:28:41 -0400\nDate: Tue, 30 Oct 2007 16:28:41 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37650 - ctools/trunk/builds/ctools_2-4/tools\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 16:31:55 2007\nX-DSPAM-Confidence: 0.9877\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37650\n\nAuthor: dlhaines@umich.edu\nDate: 2007-10-30 16:28:39 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37650\n\nModified:\nctools/trunk/builds/ctools_2-4/tools/build-patch-util.xml\nctools/trunk/builds/ctools_2-4/tools/build-type-util.xml\nLog:\nCTools: update build tools for testing individual patches.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Tue Oct 30 16:31:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 16:31:02 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 16:31:02 -0400\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby mission.mail.umich.edu () with ESMTP id l9UKV1s2022363;\n\tTue, 30 Oct 2007 16:31:02 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 47279463.DF4D9.27463 ; \n\t30 Oct 2007 16:30:30 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 93C3A64D51;\n\tTue, 30 Oct 2007 02:26:46 +0000 (GMT)\nMessage-ID: <200710302027.l9UKR8Ar024763@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 225\n          for <source@collab.sakaiproject.org>;\n          Tue, 30 Oct 2007 02:26:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E1E571CDAF\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 20:30:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UKR8Oh024765\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 16:27:08 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UKR8Ar024763\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 16:27:08 -0400\nDate: Tue, 30 Oct 2007 16:27:08 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37649 - ctools/trunk/builds/ctools_2-4/patches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 16:31:02 2007\nX-DSPAM-Confidence: 0.9864\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37649\n\nAuthor: dlhaines@umich.edu\nDate: 2007-10-30 16:27:07 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37649\n\nModified:\nctools/trunk/builds/ctools_2-4/patches/SAK-10419.patch\nLog:\nCTools: hand patch for SAK 10419.  Fix file paths.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Tue Oct 30 16:24:14 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 16:24:14 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 16:24:14 -0400\nReceived: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43])\n\tby score.mail.umich.edu () with ESMTP id l9UKODn7018333;\n\tTue, 30 Oct 2007 16:24:13 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY serenity.mr.itd.umich.edu ID 472792E7.C46E5.22956 ; \n\t30 Oct 2007 16:24:10 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 238BB6EF5B;\n\tTue, 30 Oct 2007 02:20:26 +0000 (GMT)\nMessage-ID: <200710302020.l9UKKuCf024724@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 295\n          for <source@collab.sakaiproject.org>;\n          Tue, 30 Oct 2007 02:20:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5ECCC1A371\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 20:23:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UKKu16024726\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 16:20:56 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UKKuCf024724\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 16:20:56 -0400\nDate: Tue, 30 Oct 2007 16:20:56 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37648 - ctools/trunk/builds/ctools_2-4/patches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 16:24:14 2007\nX-DSPAM-Confidence: 0.9829\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37648\n\nAuthor: dlhaines@umich.edu\nDate: 2007-10-30 16:20:53 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37648\n\nModified:\nctools/trunk/builds/ctools_2-4/patches/SAK-10419.patch\nLog:\nCTools: hand patch for SAK 10419\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Tue Oct 30 15:29:49 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 15:29:49 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 15:29:49 -0400\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby brazil.mail.umich.edu () with ESMTP id l9UJTkDV010322;\n\tTue, 30 Oct 2007 15:29:46 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 47278622.BA44E.29964 ; \n\t30 Oct 2007 15:29:41 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 03C7558750;\n\tTue, 30 Oct 2007 01:25:44 +0000 (GMT)\nMessage-ID: <200710301926.l9UJQRbr024563@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 264\n          for <source@collab.sakaiproject.org>;\n          Tue, 30 Oct 2007 01:25:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 686B81A145\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 19:29:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UJQRH4024565\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 15:26:27 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UJQRbr024563\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 15:26:27 -0400\nDate: Tue, 30 Oct 2007 15:26:27 -0400\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [svn] revprop propchange - r37636 svn:log\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 15:29:49 2007\nX-DSPAM-Confidence: 0.9657\nX-DSPAM-Probability: 0.0000\n\nAuthor: zqian@umich.edu\nRevision: 37636\nProperty Name: svn:log\n\nNew Property Value:\nmerged fix to SAK-10670 into post_24 branch: svn merge -r 33071:33072 https://source.sakaiproject.org/svn/assignment/trunk/\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Tue Oct 30 15:02:46 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 15:02:46 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 15:02:46 -0400\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby panther.mail.umich.edu () with ESMTP id l9UJ2kfv027301;\n\tTue, 30 Oct 2007 15:02:46 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 47277FCF.9FF30.6350 ; \n\t30 Oct 2007 15:02:42 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 180406EF5D;\n\tTue, 30 Oct 2007 00:58:52 +0000 (GMT)\nMessage-ID: <200710301859.l9UIxVaw024452@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 863\n          for <source@collab.sakaiproject.org>;\n          Tue, 30 Oct 2007 00:58:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0E6261CDDA\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 19:02:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UIxWFC024454\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 14:59:32 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UIxVaw024452\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 14:59:32 -0400\nDate: Tue, 30 Oct 2007 14:59:32 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r37647 - osp/tags/sakai_2-5-0_QA_011_GMT\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 15:02:46 2007\nX-DSPAM-Confidence: 0.9806\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37647\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-10-30 14:59:30 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37647\n\nModified:\nosp/tags/sakai_2-5-0_QA_011_GMT/\nosp/tags/sakai_2-5-0_QA_011_GMT/.externals\nosp/tags/sakai_2-5-0_QA_011_GMT/pom.xml\nLog:\nAdding gmt to the osp specific build for 2.5.011\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom john.ellis@rsmart.com Tue Oct 30 14:48:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 14:48:37 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 14:48:37 -0400\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby awakenings.mail.umich.edu () with ESMTP id l9UImZnw020730;\n\tTue, 30 Oct 2007 14:48:35 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 47277C7B.797E0.29706 ; \n\t30 Oct 2007 14:48:30 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 139436F056;\n\tTue, 30 Oct 2007 00:44:40 +0000 (GMT)\nMessage-ID: <200710301845.l9UIjIbg024416@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 122\n          for <source@collab.sakaiproject.org>;\n          Tue, 30 Oct 2007 00:44:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6A13C1BD0D\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 18:48:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UIjId9024418\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 14:45:18 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UIjIbg024416\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 14:45:18 -0400\nDate: Tue, 30 Oct 2007 14:45:18 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to john.ellis@rsmart.com using -f\nTo: source@collab.sakaiproject.org\nFrom: john.ellis@rsmart.com\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 14:48:37 2007\nX-DSPAM-Confidence: 0.9830\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37646\n\nAuthor: john.ellis@rsmart.com\nDate: 2007-10-30 14:44:35 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37646\n\nAdded:\nreports/trunk/reports-tool/tool/src/java/org/sakaiproject/reports/tool/ReportsStartupListener.java\nModified:\nreports/trunk/reports-api/api/src/java/org/sakaiproject/reports/service/ReportsManager.java\nreports/trunk/reports-impl/impl/src/java/org/sakaiproject/reports/logic/impl/ReportsManagerImpl.java\nreports/trunk/reports-tool/tool/src/webapp/WEB-INF/web.xml\nLog:\nSAK-12028\nmoved around where the init took place so that it would be surrounded by the correct tx\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Tue Oct 30 14:46:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 14:46:02 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 14:46:02 -0400\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby mission.mail.umich.edu () with ESMTP id l9UIk2eV007849;\n\tTue, 30 Oct 2007 14:46:02 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 47277BE2.8D902.11053 ; \n\t30 Oct 2007 14:45:58 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B5F686F045;\n\tTue, 30 Oct 2007 00:42:08 +0000 (GMT)\nMessage-ID: <200710301842.l9UIgkce024388@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 92\n          for <source@collab.sakaiproject.org>;\n          Tue, 30 Oct 2007 00:41:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5DF211BD0D\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 18:45:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UIgkH2024390\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 14:42:46 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UIgkce024388\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 14:42:46 -0400\nDate: Tue, 30 Oct 2007 14:42:46 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37645 - oncourse/branches/sakai_2-4-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 14:46:02 2007\nX-DSPAM-Confidence: 0.9782\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37645\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-30 14:42:45 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37645\n\nModified:\noncourse/branches/sakai_2-4-x/\noncourse/branches/sakai_2-4-x/.externals\nLog:\nUpdated externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Tue Oct 30 14:45:41 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 14:45:41 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 14:45:41 -0400\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby score.mail.umich.edu () with ESMTP id l9UIjeVW014454;\n\tTue, 30 Oct 2007 14:45:40 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 47277BCC.245D9.14251 ; \n\t30 Oct 2007 14:45:35 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BE91D6F044;\n\tTue, 30 Oct 2007 00:41:45 +0000 (GMT)\nMessage-ID: <200710301842.l9UIgRso024366@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 125\n          for <source@collab.sakaiproject.org>;\n          Tue, 30 Oct 2007 00:41:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3274C1BD0D\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 18:45:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UIgRAX024368\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 14:42:27 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UIgRso024366\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 14:42:27 -0400\nDate: Tue, 30 Oct 2007 14:42:27 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r37644 - assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 14:45:41 2007\nX-DSPAM-Confidence: 0.9818\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37644\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-10-30 14:42:25 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37644\n\nModified:\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nUnmerging SAK-12047 as it brought in issues with SAK 12029\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Tue Oct 30 14:31:32 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 14:31:32 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 14:31:32 -0400\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby panther.mail.umich.edu () with ESMTP id l9UIVVHR001501;\n\tTue, 30 Oct 2007 14:31:31 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 4727787C.17F5C.12836 ; \n\t30 Oct 2007 14:31:27 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 19DDD6EFF8;\n\tTue, 30 Oct 2007 00:27:36 +0000 (GMT)\nMessage-ID: <200710301828.l9UISBpI024254@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 167\n          for <source@collab.sakaiproject.org>;\n          Tue, 30 Oct 2007 00:27:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5B32D1BCCA\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 18:31:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UISBuk024256\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 14:28:11 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UISBpI024254\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 14:28:11 -0400\nDate: Tue, 30 Oct 2007 14:28:11 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r37643 - osp/tags\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 14:31:32 2007\nX-DSPAM-Confidence: 0.9817\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37643\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-10-30 14:28:10 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37643\n\nAdded:\nosp/tags/sakai_2-5-0_QA_011_GMT/\nLog:\nCreating 2.5.011 qa tag for OSP and GMT\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Tue Oct 30 14:25:57 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 14:25:57 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 14:25:57 -0400\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby panther.mail.umich.edu () with ESMTP id l9UIPu3F029907;\n\tTue, 30 Oct 2007 14:25:56 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 4727772D.E2A21.29645 ; \n\t30 Oct 2007 14:25:53 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CD3256EC9D;\n\tTue, 30 Oct 2007 00:22:02 +0000 (GMT)\nMessage-ID: <200710301822.l9UIMjOq024187@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 324\n          for <source@collab.sakaiproject.org>;\n          Tue, 30 Oct 2007 00:21:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 23500BCD0\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 18:25:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UIMjaZ024189\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 14:22:45 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UIMjOq024187\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 14:22:45 -0400\nDate: Tue, 30 Oct 2007 14:22:45 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37642 - oncourse/branches/sakai_2-4-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 14:25:57 2007\nX-DSPAM-Confidence: 0.9779\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37642\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-30 14:22:44 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37642\n\nModified:\noncourse/branches/sakai_2-4-x/\noncourse/branches/sakai_2-4-x/.externals\nLog:\nUpdated externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Tue Oct 30 14:25:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 14:25:13 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 14:25:13 -0400\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby sleepers.mail.umich.edu () with ESMTP id l9UIPCx3010820;\n\tTue, 30 Oct 2007 14:25:12 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 47277702.19ACD.23971 ; \n\t30 Oct 2007 14:25:09 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DFC9D6F01C;\n\tTue, 30 Oct 2007 00:21:15 +0000 (GMT)\nMessage-ID: <200710301821.l9UILqV0024175@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 448\n          for <source@collab.sakaiproject.org>;\n          Tue, 30 Oct 2007 00:21:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A736DBCD0\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 18:24:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UILqhc024177\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 14:21:52 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UILqV0024175\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 14:21:52 -0400\nDate: Tue, 30 Oct 2007 14:21:52 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r37641 - assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 14:25:13 2007\nX-DSPAM-Confidence: 0.9925\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37641\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-10-30 14:21:51 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37641\n\nModified:\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nsvn merge -r 37499:37500 https://source.sakaiproject.org/svn/assignment/trunk\nC    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nM      assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nin-143-146:~/java/test/assignment admin$ svn log -r 37500:37500 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr37500 | zqian@umich.edu | 2007-10-29 16:33:02 -0400 (Mon, 29 Oct 2007) | 1 line\n\nfix to SAK-12047:Upload All/ When only 1 students information is uploaded, the data for other students is being wiped out\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom kimsooil@bu.edu Tue Oct 30 14:06:48 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 14:06:48 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 14:06:48 -0400\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby fan.mail.umich.edu () with ESMTP id l9UI6RXm009175;\n\tTue, 30 Oct 2007 14:06:27 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 4727729D.58319.1128 ; \n\t30 Oct 2007 14:06:24 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 735C06EFCD;\n\tTue, 30 Oct 2007 00:01:37 +0000 (GMT)\nMessage-ID: <200710301802.l9UI2xFc024113@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 286\n          for <source@collab.sakaiproject.org>;\n          Tue, 30 Oct 2007 00:01:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 911B71C7FD\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 18:05:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UI2xXD024115\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 14:02:59 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UI2xFc024113\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 14:02:59 -0400\nDate: Tue, 30 Oct 2007 14:02:59 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to kimsooil@bu.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: kimsooil@bu.edu\nSubject: [sakai] svn commit: r37640 - mailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 14:06:48 2007\nX-DSPAM-Confidence: 0.9819\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37640\n\nAuthor: kimsooil@bu.edu\nDate: 2007-10-30 14:02:55 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37640\n\nModified:\nmailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java\nmailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool/OptionsBean.java\nLog:\nFix SAK-11067 (more info - sender & recipient(s))\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Tue Oct 30 13:51:01 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 13:51:01 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 13:51:01 -0400\nReceived: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43])\n\tby mission.mail.umich.edu () with ESMTP id l9UHp0tn032400;\n\tTue, 30 Oct 2007 13:51:00 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY serenity.mr.itd.umich.edu ID 47276EFD.AEA4F.9335 ; \n\t30 Oct 2007 13:50:56 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 653236AF4F;\n\tMon, 29 Oct 2007 23:52:57 +0000 (GMT)\nMessage-ID: <200710301747.l9UHlLLr024038@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 301\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 23:52:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4971D1C811\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 17:50:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UHlLHd024040\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 13:47:21 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UHlLLr024038\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 13:47:21 -0400\nDate: Tue, 30 Oct 2007 13:47:21 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37639 - ctools/trunk/builds/ctools_2-4/patches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 13:51:01 2007\nX-DSPAM-Confidence: 0.9856\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37639\n\nAuthor: dlhaines@umich.edu\nDate: 2007-10-30 13:47:20 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37639\n\nAdded:\nctools/trunk/builds/ctools_2-4/patches/SAK-11215.patch\nLog:\nCTools: add new patch for 2.4.xP\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Tue Oct 30 13:46:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 13:46:51 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 13:46:51 -0400\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby brazil.mail.umich.edu () with ESMTP id l9UHkoic020223;\n\tTue, 30 Oct 2007 13:46:50 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 47276E02.A49D6.18056 ; \n\t30 Oct 2007 13:46:45 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id AFAD36EF9E;\n\tMon, 29 Oct 2007 23:48:48 +0000 (GMT)\nMessage-ID: <200710301743.l9UHhLTg024026@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 48\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 23:48:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 680401C7FE\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 17:46:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UHhL9S024028\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 13:43:21 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UHhLTg024026\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 13:43:21 -0400\nDate: Tue, 30 Oct 2007 13:43:21 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37638 - ctools/trunk/builds/ctools_2-4/patches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 13:46:51 2007\nX-DSPAM-Confidence: 0.9858\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37638\n\nAuthor: dlhaines@umich.edu\nDate: 2007-10-30 13:43:20 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37638\n\nAdded:\nctools/trunk/builds/ctools_2-4/patches/SAK-10788.patch\nLog:\nCTools: add new patch for 2.4.xP\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Tue Oct 30 13:40:57 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 13:40:57 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 13:40:57 -0400\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby panther.mail.umich.edu () with ESMTP id l9UHesQM027671;\n\tTue, 30 Oct 2007 13:40:54 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 47276CA0.32E90.3464 ; \n\t30 Oct 2007 13:40:51 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 74C3E6EF8F;\n\tMon, 29 Oct 2007 23:42:59 +0000 (GMT)\nMessage-ID: <200710301737.l9UHbi7N024006@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 101\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 23:42:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C10331C7FE\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 17:40:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UHbiBp024008\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 13:37:44 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UHbi7N024006\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 13:37:44 -0400\nDate: Tue, 30 Oct 2007 13:37:44 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37637 - ctools/trunk/builds/ctools_2-4/patches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 13:40:57 2007\nX-DSPAM-Confidence: 0.9854\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37637\n\nAuthor: dlhaines@umich.edu\nDate: 2007-10-30 13:37:42 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37637\n\nAdded:\nctools/trunk/builds/ctools_2-4/patches/SAK-11919.patch\nLog:\nCTools: add new patch for 2.4.xP\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Tue Oct 30 13:39:24 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 13:39:24 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 13:39:24 -0400\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby awakenings.mail.umich.edu () with ESMTP id l9UHdLbG008777;\n\tTue, 30 Oct 2007 13:39:21 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 47276C43.129FD.15572 ; \n\t30 Oct 2007 13:39:18 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id F0D056EF8D;\n\tMon, 29 Oct 2007 23:41:24 +0000 (GMT)\nMessage-ID: <200710301736.l9UHa4Rv023983@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 656\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 23:41:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BCB731C7F4\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 17:38:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UHa43E023989\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 13:36:04 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UHa4Rv023983\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 13:36:04 -0400\nDate: Tue, 30 Oct 2007 13:36:04 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37636 - in assignment/branches/post-2-4/assignment-tool/tool/src: bundle java/org/sakaiproject/assignment/tool webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 13:39:24 2007\nX-DSPAM-Confidence: 0.8481\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37636\n\nAuthor: zqian@umich.edu\nDate: 2007-10-30 13:36:00 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37636\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/bundle/assignment.properties\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm\nassignment/branches/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_uploadAll.vm\nLog:\nmerged fix to SAK-33072 into post_24 branch: svn merge -r 33071:33072 https://source.sakaiproject.org/svn/assignment/trunk/\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom kimsooil@bu.edu Tue Oct 30 13:00:21 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 13:00:21 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 13:00:21 -0400\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby brazil.mail.umich.edu () with ESMTP id l9UH0JZA015528;\n\tTue, 30 Oct 2007 13:00:19 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 4727631D.5C8E1.28326 ; \n\t30 Oct 2007 13:00:16 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A7D8B50FA1;\n\tMon, 29 Oct 2007 23:02:20 +0000 (GMT)\nMessage-ID: <200710301656.l9UGuuJa023899@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 11\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 23:02:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 833701B894\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 16:59:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UGuumx023901\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 12:56:56 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UGuuJa023899\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 12:56:56 -0400\nDate: Tue, 30 Oct 2007 12:56:56 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to kimsooil@bu.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: kimsooil@bu.edu\nSubject: [sakai] svn commit: r37635 - mailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 13:00:21 2007\nX-DSPAM-Confidence: 0.9781\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37635\n\nAuthor: kimsooil@bu.edu\nDate: 2007-10-30 12:56:52 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37635\n\nModified:\nmailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java\nmailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool/OptionsBean.java\nLog:\nFix SAK-11067\n(two log events-mailsent&optionUpdated will posted)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom nuno@ufp.pt Tue Oct 30 12:02:44 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 12:02:44 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 12:02:44 -0400\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby jacknife.mail.umich.edu () with ESMTP id l9UG2hRf020391;\n\tTue, 30 Oct 2007 12:02:43 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 4727559C.DC8A0.21805 ; \n\t30 Oct 2007 12:02:39 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CAED86EDFD;\n\tMon, 29 Oct 2007 22:04:40 +0000 (GMT)\nMessage-ID: <200710301559.l9UFxRwT023794@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 201\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 22:04:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1C6EE1BC27\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 16:02:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UFxRjO023796\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 11:59:27 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UFxRwT023794\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 11:59:27 -0400\nDate: Tue, 30 Oct 2007 11:59:27 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to nuno@ufp.pt using -f\nTo: source@collab.sakaiproject.org\nFrom: nuno@ufp.pt\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 12:02:44 2007\nX-DSPAM-Confidence: 0.9777\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37634\n\nAuthor: nuno@ufp.pt\nDate: 2007-10-30 11:58:56 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37634\n\nAdded:\ncalendar/trunk/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_en_GB.properties\ncalendar/trunk/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_ko.properties\ncalendar/trunk/calendar-summary-tool/tool/src/java/org/sakaiproject/tool/summarycalendar/ui/EventTypes.java\nModified:\ncalendar/trunk/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages.properties\ncalendar/trunk/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_ar.properties\ncalendar/trunk/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_ca.properties\ncalendar/trunk/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_es.properties\ncalendar/trunk/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_fr_CA.properties\ncalendar/trunk/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_ja.properties\ncalendar/trunk/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_nl.properties\ncalendar/trunk/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_ru.properties\ncalendar/trunk/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_sv.properties\ncalendar/trunk/calendar-summary-tool/tool/src/bundle/org/sakaiproject/tool/summarycalendar/bundle/Messages_zh_CN.properties\ncalendar/trunk/calendar-summary-tool/tool/src/java/org/sakaiproject/tool/summarycalendar/ui/CalendarBean.java\ncalendar/trunk/calendar-summary-tool/tool/src/java/org/sakaiproject/tool/summarycalendar/ui/EventSummary.java\ncalendar/trunk/calendar-summary-tool/tool/src/java/org/sakaiproject/tool/summarycalendar/ui/PrefsBean.java\ncalendar/trunk/calendar-summary-tool/tool/src/webapp/summary-calendar/calendar.jsp\ncalendar/trunk/calendar-summary-tool/tool/src/webapp/summary-calendar/prefs.jsp\nLog:\nSAK-10440: Localize Calendar Summary event types\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom kimsooil@bu.edu Tue Oct 30 10:59:33 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 10:59:33 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 10:59:33 -0400\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby jacknife.mail.umich.edu () with ESMTP id l9UExW4f013349;\n\tTue, 30 Oct 2007 10:59:32 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 472746CF.6F4CD.2279 ; \n\t30 Oct 2007 10:59:30 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C9CD658AEA;\n\tMon, 29 Oct 2007 21:01:30 +0000 (GMT)\nMessage-ID: <200710301456.l9UEuLDH022677@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 984\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 21:01:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5EAA71CBFE\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 14:59:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEuLSh022679\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 10:56:21 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEuLDH022677\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:56:21 -0400\nDate: Tue, 30 Oct 2007 10:56:21 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to kimsooil@bu.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: kimsooil@bu.edu\nSubject: [sakai] svn commit: r37560 - mailtool/trunk/mailtool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 10:59:33 2007\nX-DSPAM-Confidence: 0.8414\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37560\n\nAuthor: kimsooil@bu.edu\nDate: 2007-10-30 10:56:17 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37560\n\nModified:\nmailtool/trunk/mailtool/pom.xml\nLog:\nredundant dependencis (also in /master/pom.xml) are removed in pom.xml\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Tue Oct 30 10:52:55 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 10:52:55 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 10:52:55 -0400\nReceived: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43])\n\tby godsend.mail.umich.edu () with ESMTP id l9UEqstI002542;\n\tTue, 30 Oct 2007 10:52:54 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY serenity.mr.itd.umich.edu ID 47274541.1201A.21680 ; \n\t30 Oct 2007 10:52:51 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 61D2D6EDE8;\n\tMon, 29 Oct 2007 20:54:53 +0000 (GMT)\nMessage-ID: <200710301449.l9UEngRC022662@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 287\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 20:54:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1A5691CBFE\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 14:52:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEng5S022664\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 10:49:42 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEngRC022662\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:49:42 -0400\nDate: Tue, 30 Oct 2007 10:49:42 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37559 - osp/branches/sakai_2-5-x/presentation/tool/src/webapp/WEB-INF/jsp/presentation\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 10:52:55 2007\nX-DSPAM-Confidence: 0.9923\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37559\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-30 10:49:41 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37559\n\nModified:\nosp/branches/sakai_2-5-x/presentation/tool/src/webapp/WEB-INF/jsp/presentation/wizardHeader.inc\nLog:\n\nsvn merge -c 37558 https://source.sakaiproject.org/svn/osp/trunk\nU    presentation/tool/src/webapp/WEB-INF/jsp/presentation/wizardHeader.inc\nsvn log -r 37558 https://source.sakaiproject.org/svn/osp/trunk\n------------------------------------------------------------------------\nr37558 | chmaurer@iupui.edu | 2007-10-30 10:44:06 -0400 (Tue, 30 Oct 2007) | 2 lines\n\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12078\nRemoving some extra text that may have slipped through during some local testing.\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Tue Oct 30 10:48:06 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 10:48:06 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 10:48:06 -0400\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby sleepers.mail.umich.edu () with ESMTP id l9UEm6rE016147;\n\tTue, 30 Oct 2007 10:48:06 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 4727441E.C5303.30847 ; \n\t30 Oct 2007 10:48:02 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1B2F86EDFD;\n\tMon, 29 Oct 2007 20:49:37 +0000 (GMT)\nMessage-ID: <200710301444.l9UEi7ff022649@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 852\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 20:49:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8B5CA1C809\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 14:46:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEi8p2022651\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 10:44:08 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEi7ff022649\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:44:07 -0400\nDate: Tue, 30 Oct 2007 10:44:07 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r37558 - osp/trunk/presentation/tool/src/webapp/WEB-INF/jsp/presentation\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 10:48:06 2007\nX-DSPAM-Confidence: 0.9837\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37558\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-10-30 10:44:06 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37558\n\nModified:\nosp/trunk/presentation/tool/src/webapp/WEB-INF/jsp/presentation/wizardHeader.inc\nLog:\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12078\nRemoving some extra text that may have slipped through during some local testing.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Tue Oct 30 10:47:40 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 10:47:40 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 10:47:40 -0400\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby jacknife.mail.umich.edu () with ESMTP id l9UEldHa000798;\n\tTue, 30 Oct 2007 10:47:39 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 47274400.8CEAA.12458 ; \n\t30 Oct 2007 10:47:31 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 96DBA6EE0A;\n\tMon, 29 Oct 2007 20:49:28 +0000 (GMT)\nMessage-ID: <200710301443.l9UEhheN022637@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 374\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 20:48:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4B41F1C809\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 14:46:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEhhvg022639\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 10:43:43 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEhheN022637\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:43:43 -0400\nDate: Tue, 30 Oct 2007 10:43:43 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37557 - tool/branches/sakai_2-5-x/tool-impl/impl/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 10:47:40 2007\nX-DSPAM-Confidence: 0.9901\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37557\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-30 10:43:42 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37557\n\nModified:\ntool/branches/sakai_2-5-x/tool-impl/impl/src/bundle/tools_nl.properties\nLog:\n\nsvn merge -c 37455 https://source.sakaiproject.org/svn/tool/trunk\nU    tool-impl/impl/src/bundle/tools_nl.properties\nsvn log -r 37455 https://source.sakaiproject.org/svn/tool/trunk\n------------------------------------------------------------------------\nr37455 | mbreuker@loi.nl | 2007-10-29 11:13:33 -0400 (Mon, 29 Oct 2007) | 1 line\n\nSAK-12021 - update dutch translations (tool names)\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Tue Oct 30 10:47:23 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 10:47:23 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 10:47:23 -0400\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby mission.mail.umich.edu () with ESMTP id l9UElM5o030753;\n\tTue, 30 Oct 2007 10:47:22 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 472743F2.C2CCB.9485 ; \n\t30 Oct 2007 10:47:19 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E98976EE0E;\n\tMon, 29 Oct 2007 20:49:18 +0000 (GMT)\nMessage-ID: <200710301443.l9UEh1Yx022601@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 761\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 20:47:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DB8AA1C80A\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 14:45:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEh1xj022603\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 10:43:01 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEh1Yx022601\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:43:01 -0400\nDate: Tue, 30 Oct 2007 10:43:01 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37554 - user/branches/sakai_2-5-x/user-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 10:47:23 2007\nX-DSPAM-Confidence: 0.9897\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37554\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-30 10:43:00 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37554\n\nModified:\nuser/branches/sakai_2-5-x/user-tool/tool/src/bundle/admin_nl.properties\nLog:\n\nsvn merge -c 37452 https://source.sakaiproject.org/svn/user/trunk\nU    user-tool/tool/src/bundle/admin_nl.properties\nsvn log -r 37452 https://source.sakaiproject.org/svn/user/trunk\n------------------------------------------------------------------------\nr37452 | mbreuker@loi.nl | 2007-10-29 10:24:40 -0400 (Mon, 29 Oct 2007) | 1 line\n\nSAK-12021 - update dutch translations (user tool)\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Tue Oct 30 10:47:14 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 10:47:14 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 10:47:14 -0400\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby godsend.mail.umich.edu () with ESMTP id l9UElDHc031336;\n\tTue, 30 Oct 2007 10:47:13 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 472743E5.D1CF6.5729 ; \n\t30 Oct 2007 10:47:08 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 685906EE03;\n\tMon, 29 Oct 2007 20:49:06 +0000 (GMT)\nMessage-ID: <200710301443.l9UEhOHu022625@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 534\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 20:48:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C1F321C80A\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 14:46:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEhOuO022627\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 10:43:24 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEhOHu022625\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:43:24 -0400\nDate: Tue, 30 Oct 2007 10:43:24 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37556 - osp/branches/sakai_2-5-x/common/tool/src/bundle/org/theospi/portfolio/common/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 10:47:14 2007\nX-DSPAM-Confidence: 0.9901\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37556\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-30 10:43:23 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37556\n\nModified:\nosp/branches/sakai_2-5-x/common/tool/src/bundle/org/theospi/portfolio/common/bundle/Messages_nl.properties\nLog:\n\nsvn merge -c 37454 https://source.sakaiproject.org/svn/osp/trunk\nU    common/tool/src/bundle/org/theospi/portfolio/common/bundle/Messages_nl.properties\nsvn log -r 37454 https://source.sakaiproject.org/svn/osp/trunk\n------------------------------------------------------------------------\nr37454 | mbreuker@loi.nl | 2007-10-29 11:11:37 -0400 (Mon, 29 Oct 2007) | 1 line\n\nSAK-12021 - update dutch translations (osp common)\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Tue Oct 30 10:47:07 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 10:47:07 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 10:47:07 -0400\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby mission.mail.umich.edu () with ESMTP id l9UEl5PX030518;\n\tTue, 30 Oct 2007 10:47:06 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 472743E0.2BC28.5479 ; \n\t30 Oct 2007 10:46:59 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 63B3A6EDFF;\n\tMon, 29 Oct 2007 20:49:00 +0000 (GMT)\nMessage-ID: <200710301443.l9UEhDRT022613@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 680\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 20:48:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 79B901C80A\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 14:46:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEhDvD022615\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 10:43:13 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEhDRT022613\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:43:13 -0400\nDate: Tue, 30 Oct 2007 10:43:13 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37555 - content/branches/sakai_2-5-x/content-bundles\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 10:47:07 2007\nX-DSPAM-Confidence: 0.9899\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37555\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-30 10:43:12 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37555\n\nModified:\ncontent/branches/sakai_2-5-x/content-bundles/types_nl.properties\nLog:\n\nsvn merge -c 37453 https://source.sakaiproject.org/svn/content/trunk\nU    content-bundles/types_nl.properties\nsvn log -r 37453 https://source.sakaiproject.org/svn/content/trunk\n------------------------------------------------------------------------\nr37453 | mbreuker@loi.nl | 2007-10-29 10:55:00 -0400 (Mon, 29 Oct 2007) | 1 line\n\nSAK-12021 - update dutch translations (resources tool)\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Tue Oct 30 10:46:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 10:46:50 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 10:46:50 -0400\nReceived: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43])\n\tby sleepers.mail.umich.edu () with ESMTP id l9UEknFn015368;\n\tTue, 30 Oct 2007 10:46:49 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY serenity.mr.itd.umich.edu ID 472743CE.914EB.3519 ; \n\t30 Oct 2007 10:46:41 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 07CF75A062;\n\tMon, 29 Oct 2007 20:48:43 +0000 (GMT)\nMessage-ID: <200710301442.l9UEgX7p022589@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 696\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 20:47:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 81C521C80A\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 14:45:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEgY1a022591\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 10:42:34 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEgX7p022589\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:42:34 -0400\nDate: Tue, 30 Oct 2007 10:42:34 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37553 - user/branches/sakai_2-5-x/user-tool-prefs/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 10:46:50 2007\nX-DSPAM-Confidence: 0.9899\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37553\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-30 10:42:32 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37553\n\nModified:\nuser/branches/sakai_2-5-x/user-tool-prefs/tool/src/bundle/user-tool-prefs_nl.properties\nLog:\n\nsvn merge -c 37451 https://source.sakaiproject.org/svn/user/trunk\nU    user-tool-prefs/tool/src/bundle/user-tool-prefs_nl.properties\nsvn log -r 37451 https://source.sakaiproject.org/svn/user/trunk\n------------------------------------------------------------------------\nr37451 | mbreuker@loi.nl | 2007-10-29 10:24:00 -0400 (Mon, 29 Oct 2007) | 1 line\n\nSAK-12021 - update dutch translations (user prefs tool)\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Tue Oct 30 10:46:07 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 10:46:07 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 10:46:07 -0400\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby casino.mail.umich.edu () with ESMTP id l9UEk6Gn007880;\n\tTue, 30 Oct 2007 10:46:06 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 472743A8.79DD7.9328 ; \n\t30 Oct 2007 10:46:03 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 08A3C6EE01;\n\tMon, 29 Oct 2007 20:48:04 +0000 (GMT)\nMessage-ID: <200710301442.l9UEgIuu022565@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 376\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 20:47:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7990D1C809\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 14:45:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEgIg3022567\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 10:42:18 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEgIuu022565\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:42:18 -0400\nDate: Tue, 30 Oct 2007 10:42:18 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37551 - osp/branches/sakai_2-5-x/matrix/tool/src/bundle/org/theospi/portfolio/matrix/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 10:46:07 2007\nX-DSPAM-Confidence: 0.8506\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37551\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-30 10:42:17 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37551\n\nModified:\nosp/branches/sakai_2-5-x/matrix/tool/src/bundle/org/theospi/portfolio/matrix/bundle/Messages_nl.properties\nLog:\n\nsvn merge -c 37442 https://source.sakaiproject.org/svn/osp/trunk\nU    matrix/tool/src/bundle/org/theospi/portfolio/matrix/bundle/Messages_nl.properties\nsvn log -r 37442 https://source.sakaiproject.org/svn/osp/trunk\n------------------------------------------------------------------------\nr37442 | mbreuker@loi.nl | 2007-10-29 06:47:54 -0400 (Mon, 29 Oct 2007) | 1 line\n\nSAK-12021 - update dutch translations (osp matrix tool)\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Tue Oct 30 10:46:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 10:46:02 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 10:46:02 -0400\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby jacknife.mail.umich.edu () with ESMTP id l9UEk2ZK032055;\n\tTue, 30 Oct 2007 10:46:02 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 472743A3.DD1C0.3131 ; \n\t30 Oct 2007 10:45:58 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 336616EE09;\n\tMon, 29 Oct 2007 20:48:00 +0000 (GMT)\nMessage-ID: <200710301442.l9UEgPFe022577@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 842\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 20:47:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AC5AE1C809\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 14:45:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEgPBN022579\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 10:42:25 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEgPFe022577\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:42:25 -0400\nDate: Tue, 30 Oct 2007 10:42:25 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37552 - usermembership/branches/sakai_2-5-x/tool/src/bundle/org/sakaiproject/umem/tool/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 10:46:02 2007\nX-DSPAM-Confidence: 0.9900\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37552\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-30 10:42:23 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37552\n\nModified:\nusermembership/branches/sakai_2-5-x/tool/src/bundle/org/sakaiproject/umem/tool/bundle/Messages_nl.properties\nLog:\n\nsvn merge -c 37450 https://source.sakaiproject.org/svn/usermembership/trunk\nU    tool/src/bundle/org/sakaiproject/umem/tool/bundle/Messages_nl.properties\nsvn log -r 37450 https://source.sakaiproject.org/svn/usermembership/trunk\n------------------------------------------------------------------------\nr37450 | mbreuker@loi.nl | 2007-10-29 10:23:15 -0400 (Mon, 29 Oct 2007) | 1 line\n\nSAK-12021 - update dutch translations (usermembership tool)\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Tue Oct 30 10:45:31 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 10:45:31 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 10:45:31 -0400\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby godsend.mail.umich.edu () with ESMTP id l9UEjV8E030235;\n\tTue, 30 Oct 2007 10:45:31 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 4727437D.DFE1A.23793 ; \n\t30 Oct 2007 10:45:28 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 688DC6EDFC;\n\tMon, 29 Oct 2007 20:47:22 +0000 (GMT)\nMessage-ID: <200710301442.l9UEg6na022553@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 896\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 20:46:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8E2A91C809\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 14:44:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEg6r8022555\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 10:42:07 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEg6na022553\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:42:06 -0400\nDate: Tue, 30 Oct 2007 10:42:06 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37550 - osp/branches/sakai_2-5-x/glossary/tool/src/bundle/org/theospi/portfolio/glossary/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 10:45:31 2007\nX-DSPAM-Confidence: 0.8505\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37550\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-30 10:42:06 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37550\n\nModified:\nosp/branches/sakai_2-5-x/glossary/tool/src/bundle/org/theospi/portfolio/glossary/bundle/Messages_nl.properties\nLog:\n\nsvn merge -c 37386 https://source.sakaiproject.org/svn/osp/trunk\nU    glossary/tool/src/bundle/org/theospi/portfolio/glossary/bundle/Messages_nl.properties\nsvn log -r 37386 https://source.sakaiproject.org/svn/osp/trunk\n------------------------------------------------------------------------\nr37386 | mbreuker@loi.nl | 2007-10-25 12:10:41 -0400 (Thu, 25 Oct 2007) | 1 line\n\nSAK-12021 - update dutch translations (osp glossary tool)\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Tue Oct 30 10:45:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 10:45:13 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 10:45:13 -0400\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby casino.mail.umich.edu () with ESMTP id l9UEjCGW007264;\n\tTue, 30 Oct 2007 10:45:12 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 4727436F.6FC83.9110 ; \n\t30 Oct 2007 10:45:06 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 858B45A062;\n\tMon, 29 Oct 2007 20:47:00 +0000 (GMT)\nMessage-ID: <200710301441.l9UEfjs7022541@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 101\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 20:46:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8D11B1C809\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 14:44:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEfkrj022543\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 10:41:46 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEfjs7022541\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:41:45 -0400\nDate: Tue, 30 Oct 2007 10:41:45 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37549 - blog/branches/sakai_2-5-x/tool/src/bundle/uk/ac/lancs/e_science/sakai/tools/blogger/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 10:45:13 2007\nX-DSPAM-Confidence: 0.8504\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37549\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-30 10:41:44 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37549\n\nModified:\nblog/branches/sakai_2-5-x/tool/src/bundle/uk/ac/lancs/e_science/sakai/tools/blogger/bundle/Messages_nl.properties\nLog:\n\nsvn merge -c 37348 https://source.sakaiproject.org/svn/blog/trunk\nU    tool/src/bundle/uk/ac/lancs/e_science/sakai/tools/blogger/bundle/Messages_nl.properties\nsvn log -r 37348 https://source.sakaiproject.org/svn/blog/trunk\n------------------------------------------------------------------------\nr37348 | mbreuker@loi.nl | 2007-10-24 07:10:15 -0400 (Wed, 24 Oct 2007) | 1 line\n\nSAK-12021 - update dutch translations (blogger tool)\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Tue Oct 30 10:44:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 10:44:43 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 10:44:43 -0400\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby chaos.mail.umich.edu () with ESMTP id l9UEig76024109;\n\tTue, 30 Oct 2007 10:44:42 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 47274353.6649B.23215 ; \n\t30 Oct 2007 10:44:38 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C706E57B96;\n\tMon, 29 Oct 2007 20:46:39 +0000 (GMT)\nMessage-ID: <200710301441.l9UEfQfA022529@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 50\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 20:46:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7B6F91C809\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 14:44:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEfQHT022531\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 10:41:27 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEfQfA022529\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:41:26 -0400\nDate: Tue, 30 Oct 2007 10:41:26 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37548 - entity/branches/sakai_2-5-x/entity-impl/impl/src/java/org/sakaiproject/entity/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 10:44:43 2007\nX-DSPAM-Confidence: 0.9893\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37548\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-30 10:41:25 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37548\n\nModified:\nentity/branches/sakai_2-5-x/entity-impl/impl/src/java/org/sakaiproject/entity/impl/EntityManagerComponent.java\nLog:\n\nsvn merge -c 36445 https://source.sakaiproject.org/svn/entity/trunk\nU    entity-impl/impl/src/java/org/sakaiproject/entity/impl/EntityManagerComponent.java\nsvn log -r 36445 https://source.sakaiproject.org/svn/entity/trunk\n------------------------------------------------------------------------\nr36445 | ian@caret.cam.ac.uk | 2007-10-05 04:50:21 -0400 (Fri, 05 Oct 2007) | 6 lines\n\nProvided a non debug version of the parser\nThe stray references come from valid places and are not an issue.\n\nhttp://jira.sakaiproject.org/jira/browse/SAK-11815\n\n\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Tue Oct 30 10:44:32 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 10:44:32 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 10:44:32 -0400\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby jacknife.mail.umich.edu () with ESMTP id l9UEiWte030920;\n\tTue, 30 Oct 2007 10:44:32 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 47274341.12F3F.30477 ; \n\t30 Oct 2007 10:44:20 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B287B6EDFB;\n\tMon, 29 Oct 2007 20:46:20 +0000 (GMT)\nMessage-ID: <200710301441.l9UEf6UO022517@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 101\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 20:46:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4B6F31C809\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 14:43:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEf68Q022519\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 10:41:06 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEf6UO022517\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:41:06 -0400\nDate: Tue, 30 Oct 2007 10:41:06 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37547 - in assignment/branches/sakai_2-5-x/assignment-tool/tool/src: java/org/sakaiproject/assignment/tool webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 10:44:32 2007\nX-DSPAM-Confidence: 0.8519\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37547\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-30 10:41:04 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37547\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm\nLog:\n\nsvn merge -c 37483 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nU    assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm\nsvn log -r 37483 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr37483 | zqian@umich.edu | 2007-10-29 15:15:04 -0400 (Mon, 29 Oct 2007) | 1 line\n\nfix to SAK-12075:assignment tool requires both 'asn.new' and 'asn.grade' for a TA to see the Grade link\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Tue Oct 30 10:44:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 10:44:02 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 10:44:02 -0400\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby mission.mail.umich.edu () with ESMTP id l9UEi19o027897;\n\tTue, 30 Oct 2007 10:44:01 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4727432B.8E6A6.27588 ; \n\t30 Oct 2007 10:43:58 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5518558AEA;\n\tMon, 29 Oct 2007 20:45:59 +0000 (GMT)\nMessage-ID: <200710301440.l9UEekvZ022505@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 755\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 20:45:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 63DD51C809\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 14:43:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEek2F022507\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 10:40:46 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEekvZ022505\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:40:46 -0400\nDate: Tue, 30 Oct 2007 10:40:46 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37546 - assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 10:44:02 2007\nX-DSPAM-Confidence: 0.9915\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37546\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-30 10:40:45 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37546\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\n\nsvn merge -c 37328 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nsvn log -r 37328 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr37328 | zqian@umich.edu | 2007-10-23 12:36:01 -0400 (Tue, 23 Oct 2007) | 1 line\n\nfix to SAK-11634:Assignment uses UsageSession rather than normal Session\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Tue Oct 30 10:43:40 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 10:43:40 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 10:43:40 -0400\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby casino.mail.umich.edu () with ESMTP id l9UEhd1T005780;\n\tTue, 30 Oct 2007 10:43:39 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 47274315.DB9DD.8632 ; \n\t30 Oct 2007 10:43:37 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5E4826EDE8;\n\tMon, 29 Oct 2007 20:45:32 +0000 (GMT)\nMessage-ID: <200710301440.l9UEeNUC022493@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 77\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 20:45:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 086971C809\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 14:43:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEeNWq022495\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 10:40:23 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEeNUC022493\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:40:23 -0400\nDate: Tue, 30 Oct 2007 10:40:23 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37545 - assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 10:43:40 2007\nX-DSPAM-Confidence: 0.9921\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37545\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-30 10:40:22 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37545\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\n\nsvn merge -c 37417 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nsvn log -r 37417 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr37417 | zqian@umich.edu | 2007-10-26 11:49:11 -0400 (Fri, 26 Oct 2007) | 1 line\n\nfix to SAK-11821: fix the problem those auto added submission object have two same submitter ids listed in xml\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Tue Oct 30 10:36:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 10:36:37 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 10:36:37 -0400\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby sleepers.mail.umich.edu () with ESMTP id l9UEaaqo008158;\n\tTue, 30 Oct 2007 10:36:36 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 47274169.264F7.6828 ; \n\t30 Oct 2007 10:36:28 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6FD766EDE5;\n\tMon, 29 Oct 2007 20:38:27 +0000 (GMT)\nMessage-ID: <200710301433.l9UEXJVo022423@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 967\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 20:38:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B2AD01C809\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 14:36:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UEXJ0t022425\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 10:33:19 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UEXJVo022423\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:33:19 -0400\nDate: Tue, 30 Oct 2007 10:33:19 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37544 - assignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 10:36:37 2007\nX-DSPAM-Confidence: 0.9922\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37544\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-30 10:33:17 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37544\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/DbAssignmentService.java\nLog:\n\nsvn merge -c 37367 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/DbAssignmentService.java\nsvn log -r 37367 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr37367 | zqian@umich.edu | 2007-10-24 16:20:51 -0400 (Wed, 24 Oct 2007) | 1 line\n\nfix to SAK-11821: fix the problem with 0 value for getting graded or submission submission count. Was using wrong sql syntax for Oracle\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Tue Oct 30 10:32:40 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 10:32:40 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 10:32:40 -0400\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby mission.mail.umich.edu () with ESMTP id l9UEWdMv020544;\n\tTue, 30 Oct 2007 10:32:39 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 4727407B.63291.26322 ; \n\t30 Oct 2007 10:32:34 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4D7086EDE5;\n\tMon, 29 Oct 2007 20:34:31 +0000 (GMT)\nMessage-ID: <200710301429.l9UETLDf022365@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 805\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 20:34:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D79671C3A5\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 14:32:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UETLe6022367\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 10:29:21 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UETLDf022365\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:29:21 -0400\nDate: Tue, 30 Oct 2007 10:29:21 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 10:32:40 2007\nX-DSPAM-Confidence: 0.9929\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37543\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-30 10:29:18 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37543\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-bundles/assignment.properties\nassignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\n\nsvn merge -c 37326 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-bundles/assignment.properties\nU    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nU    assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nsvn log -r 37326 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr37326 | zqian@umich.edu | 2007-10-23 12:16:57 -0400 (Tue, 23 Oct 2007) | 1 line\n\nfix 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'\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Tue Oct 30 10:32:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 10:32:19 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 10:32:19 -0400\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby score.mail.umich.edu () with ESMTP id l9UEWJwc003640;\n\tTue, 30 Oct 2007 10:32:19 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 47274067.421BA.27830 ; \n\t30 Oct 2007 10:32:10 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9FF6E6EDE7;\n\tMon, 29 Oct 2007 20:34:06 +0000 (GMT)\nMessage-ID: <200710301428.l9UESruc022338@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 580\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 20:33:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 066FD1C3A5\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 14:31:43 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UESro6022340\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 10:28:53 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UESruc022338\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:28:53 -0400\nDate: Tue, 30 Oct 2007 10:28:53 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37541 - in assignment/branches/sakai_2-5-x: assignment-bundles assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 10:32:19 2007\nX-DSPAM-Confidence: 0.9917\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37541\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-30 10:28:51 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37541\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-bundles/assignment.properties\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\n\nsvn merge -c 37335 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-bundles/assignment.properties\nU    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nsvn log -r 37335 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr37335 | zqian@umich.edu | 2007-10-23 17:07:19 -0400 (Tue, 23 Oct 2007) | 1 line\n\nfix to SAK-11967:assignments / problem with mixed format assignments when using the 'assign this grade to all participants without submissions'\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Tue Oct 30 10:32:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 10:32:13 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 10:32:13 -0400\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby flawless.mail.umich.edu () with ESMTP id l9UEWDp5029767;\n\tTue, 30 Oct 2007 10:32:13 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 47274067.4C74A.10228 ; \n\t30 Oct 2007 10:32:10 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 50E216EDEA;\n\tMon, 29 Oct 2007 20:34:10 +0000 (GMT)\nMessage-ID: <200710301428.l9UESwWc022351@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 136\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 20:33:55 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 98B391C3A5\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 14:31:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UESxh9022353\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 10:28:59 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UESwWc022351\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:28:58 -0400\nDate: Tue, 30 Oct 2007 10:28:58 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37542 - assignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 10:32:13 2007\nX-DSPAM-Confidence: 0.9916\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37542\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-30 10:28:57 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37542\n\nModified:\nassignment/branches/sakai_2-5-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\n\nsvn merge -c 37409 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nsvn log -r 37409 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr37409 | zqian@umich.edu | 2007-10-26 10:35:02 -0400 (Fri, 26 Oct 2007) | 3 lines\n\nFix to SAK-11967:assignments / problem with mixed format assignments when using the 'assign this grade to all participants without submissions'\n\nAssign grades also to those non-graded submissions.\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Tue Oct 30 10:30:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 10:30:53 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 10:30:53 -0400\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby score.mail.umich.edu () with ESMTP id l9UEUqIO003006;\n\tTue, 30 Oct 2007 10:30:52 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 47274016.A48AD.23689 ; \n\t30 Oct 2007 10:30:49 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EB8F46EDE5;\n\tMon, 29 Oct 2007 20:32:49 +0000 (GMT)\nMessage-ID: <200710301427.l9UERS9f022295@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 425\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 20:32:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 086811C3A5\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 14:30:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UERSD0022297\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 10:27:28 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UERS9f022295\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:27:28 -0400\nDate: Tue, 30 Oct 2007 10:27:28 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 10:30:53 2007\nX-DSPAM-Confidence: 0.9902\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37540\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-30 10:27:26 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37540\n\nModified:\nreset-pass/branches/sakai_2-5-x/.classpath\nreset-pass/branches/sakai_2-5-x/reset-pass/src/java/org/sakaiproject/tool/resetpass/FormHandler.java\nreset-pass/branches/sakai_2-5-x/reset-pass/src/webapp/WEB-INF/requestContext.xml\nLog:\n\nsvn merge -c 37532 https://source.sakaiproject.org/svn/reset-pass/trunk\nU    .classpath\nU    reset-pass/src/java/org/sakaiproject/tool/resetpass/FormHandler.java\nU    reset-pass/src/webapp/WEB-INF/requestContext.xml\nsvn log -r 37532 https://source.sakaiproject.org/svn/reset-pass/trunk\n------------------------------------------------------------------------\nr37532 | david.horwitz@uct.ac.za | 2007-10-30 05:35:42 -0400 (Tue, 30 Oct 2007) | 1 line\n\nSAK-12076  used spring injection instead of static cover\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Tue Oct 30 10:30:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 10:30:37 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 10:30:37 -0400\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby flawless.mail.umich.edu () with ESMTP id l9UEUbUl028929;\n\tTue, 30 Oct 2007 10:30:37 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 47273FFC.62BB4.26097 ; \n\t30 Oct 2007 10:30:33 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 313A954108;\n\tMon, 29 Oct 2007 20:32:22 +0000 (GMT)\nMessage-ID: <200710301427.l9UERCb6022279@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 758\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 20:32:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E97111C3A5\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 14:30:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UERCdO022281\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 10:27:12 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UERCb6022279\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:27:12 -0400\nDate: Tue, 30 Oct 2007 10:27:12 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37539 - profile/branches/sakai_2-5-x/common-composite-component/src/java/org/sakaiproject/component/common/edu/person\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 10:30:37 2007\nX-DSPAM-Confidence: 0.8523\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37539\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-30 10:27:11 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37539\n\nModified:\nprofile/branches/sakai_2-5-x/common-composite-component/src/java/org/sakaiproject/component/common/edu/person/SakaiPersonManagerImpl.java\nLog:\n\nsvn merge -c 37535 https://source.sakaiproject.org/svn/profile/trunk\nU    common-composite-component/src/java/org/sakaiproject/component/common/edu/person/SakaiPersonManagerImpl.java\nsvn log -r 37535 https://source.sakaiproject.org/svn/profile/trunk\n------------------------------------------------------------------------\nr37535 | wagnermr@iupui.edu | 2007-10-30 08:12:02 -0400 (Tue, 30 Oct 2007) | 4 lines\n\nSAK-12068\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12068\nSakaiPerson should not attempt to update user account when System profiles are updated\npatch provided by david horwitz\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Tue Oct 30 10:12:03 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 10:12:03 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 10:12:03 -0400\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby panther.mail.umich.edu () with ESMTP id l9UEC2pa024307;\n\tTue, 30 Oct 2007 10:12:02 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 47273BAD.52AED.30428 ; \n\t30 Oct 2007 10:12:00 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D67A76EDC5;\n\tMon, 29 Oct 2007 20:13:53 +0000 (GMT)\nMessage-ID: <200710301408.l9UE8jOr022029@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 56\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 20:13:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C0DFE1C815\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 14:11:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UE8j40022031\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 10:08:45 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UE8jOr022029\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 10:08:45 -0400\nDate: Tue, 30 Oct 2007 10:08:45 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37538 - ctools/branches/ctools_2-4/ctools-reference/config\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 10:12:03 2007\nX-DSPAM-Confidence: 0.9840\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37538\n\nAuthor: dlhaines@umich.edu\nDate: 2007-10-30 10:08:43 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37538\n\nModified:\nctools/branches/ctools_2-4/ctools-reference/config/coursemanagement.properties\nLog:\nCTools: CT-376 update affiliate\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Tue Oct 30 09:57:04 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 09:57:04 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 09:57:04 -0400\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby godsend.mail.umich.edu () with ESMTP id l9UDv2aZ026392;\n\tTue, 30 Oct 2007 09:57:02 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 47273827.AB34E.6887 ; \n\t30 Oct 2007 09:56:58 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6EF9D6EC33;\n\tMon, 29 Oct 2007 19:58:55 +0000 (GMT)\nMessage-ID: <200710301353.l9UDrlXX021969@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1009\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 19:58:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C8A8C1CC04\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 13:56:37 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UDrlsr021971\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 09:53:47 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UDrlXX021969\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 09:53:47 -0400\nDate: Tue, 30 Oct 2007 09:53:47 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r37537 - oncourse/trunk/src\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 09:57:04 2007\nX-DSPAM-Confidence: 0.8477\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37537\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-10-30 09:53:46 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37537\n\nRemoved:\noncourse/trunk/src/assignment/\nLog:\nremoving assignments from IU overlay (redundant since oncourse_2-4-x branch of assignments)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Tue Oct 30 09:29:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 09:29:25 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 09:29:25 -0400\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby panther.mail.umich.edu () with ESMTP id l9UDTN12027376;\n\tTue, 30 Oct 2007 09:29:23 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 472731AC.6FA3C.27529 ; \n\t30 Oct 2007 09:29:19 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 465C06EC33;\n\tMon, 29 Oct 2007 19:30:55 +0000 (GMT)\nMessage-ID: <200710301325.l9UDPxhP021900@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 262\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 19:30:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CD9251BC48\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 13:28:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UDPxwT021902\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 09:25:59 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UDPxhP021900\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 09:25:59 -0400\nDate: Tue, 30 Oct 2007 09:25:59 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r37536 - oncourse/trunk/src/assignment/assignment-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 09:29:25 2007\nX-DSPAM-Confidence: 0.8421\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37536\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-10-30 09:25:58 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37536\n\nModified:\noncourse/trunk/src/assignment/assignment-tool/tool/src/bundle/assignment.properties\nLog:\nSAK-11967 - Adding bundle change to IU overlay\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Tue Oct 30 08:15:12 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 08:15:12 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 08:15:12 -0400\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby godsend.mail.umich.edu () with ESMTP id l9UCFC8o009268;\n\tTue, 30 Oct 2007 08:15:12 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 4727204A.B4FE2.15849 ; \n\t30 Oct 2007 08:15:09 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E4F3C4F5F9;\n\tMon, 29 Oct 2007 18:17:06 +0000 (GMT)\nMessage-ID: <200710301212.l9UCC30h021770@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 213\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 18:16:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 558961CBFE\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 12:14:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UCC38g021772\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 08:12:03 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UCC30h021770\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 08:12:03 -0400\nDate: Tue, 30 Oct 2007 08:12:03 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [sakai] svn commit: r37535 - profile/trunk/common-composite-component/src/java/org/sakaiproject/component/common/edu/person\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 08:15:12 2007\nX-DSPAM-Confidence: 0.8489\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37535\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-10-30 08:12:02 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37535\n\nModified:\nprofile/trunk/common-composite-component/src/java/org/sakaiproject/component/common/edu/person/SakaiPersonManagerImpl.java\nLog:\nSAK-12068\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12068\nSakaiPerson should not attempt to update user account when System profiles are updated\npatch provided by david horwitz\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Tue Oct 30 07:48:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 07:48:17 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 07:48:17 -0400\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby jacknife.mail.umich.edu () with ESMTP id l9UBmGOW004833;\n\tTue, 30 Oct 2007 07:48:16 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 472719FA.A08A6.23385 ; \n\t30 Oct 2007 07:48:13 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9A74F6ECA8;\n\tMon, 29 Oct 2007 17:56:13 +0000 (GMT)\nMessage-ID: <200710301144.l9UBitVU021705@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 237\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 17:55:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5612B1C852\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 11:47:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UBiuj9021707\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 07:44:56 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UBitVU021705\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 07:44:55 -0400\nDate: Tue, 30 Oct 2007 07:44:55 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 07:48:17 2007\nX-DSPAM-Confidence: 0.9755\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37534\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-10-30 07:43:23 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37534\n\nModified:\npolls/trunk/impl/dao/src/java/org/sakaiproject/poll/dao/impl/PollListManagerDaoImpl.java\npolls/trunk/impl/dao/src/java/org/sakaiproject/poll/dao/impl/PollVoteManagerDaoImpl.java\npolls/trunk/impl/pack/src/webapp/WEB-INF/spring-hibernate.xml\npolls/trunk/tool/src/webapp/WEB-INF/requestContext.xml\nLog:\nSAK-12077 remove static covers from implementations\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jleasia@umich.edu Tue Oct 30 07:18:55 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 07:18:55 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 07:18:55 -0400\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby panther.mail.umich.edu () with ESMTP id l9UBIssb000938;\n\tTue, 30 Oct 2007 07:18:54 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 47271314.65F34.17418 ; \n\t30 Oct 2007 07:18:52 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 089F66EB1E;\n\tMon, 29 Oct 2007 17:26:47 +0000 (GMT)\nMessage-ID: <200710301115.l9UBFbta021685@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 450\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 17:26:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D09E315D86\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 11:18:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9UBFb93021687\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 07:15:37 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9UBFbta021685\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 07:15:37 -0400\nDate: Tue, 30 Oct 2007 07:15:37 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jleasia@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jleasia@umich.edu\nSubject: [sakai] svn commit: r37533 - ctools/trunk/ctools-reference/config\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 07:18:55 2007\nX-DSPAM-Confidence: 0.9840\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37533\n\nAuthor: jleasia@umich.edu\nDate: 2007-10-30 07:15:35 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37533\n\nModified:\nctools/trunk/ctools-reference/config/coursemanagement.properties\nLog:\nadd bschool affiliate CT-376\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Tue Oct 30 05:40:21 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 30 Oct 2007 05:40:21 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 30 Oct 2007 05:40:21 -0400\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby chaos.mail.umich.edu () with ESMTP id l9U9eKCa032155;\n\tTue, 30 Oct 2007 05:40:20 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 4726FBFF.18606.19232 ; \n\t30 Oct 2007 05:40:17 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B072465ABB;\n\tMon, 29 Oct 2007 15:48:14 +0000 (GMT)\nMessage-ID: <200710300937.l9U9b2d0021604@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 699\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 15:47:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 948EF1BCB5\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 09:39:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9U9b2vv021606\n\tfor <source@collab.sakaiproject.org>; Tue, 30 Oct 2007 05:37:02 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9U9b2d0021604\n\tfor source@collab.sakaiproject.org; Tue, 30 Oct 2007 05:37:02 -0400\nDate: Tue, 30 Oct 2007 05:37:02 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r37532 - in reset-pass/trunk: . reset-pass/src/java/org/sakaiproject/tool/resetpass reset-pass/src/webapp/WEB-INF\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 30 05:40:21 2007\nX-DSPAM-Confidence: 0.9754\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37532\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-10-30 05:35:42 -0400 (Tue, 30 Oct 2007)\nNew Revision: 37532\n\nModified:\nreset-pass/trunk/.classpath\nreset-pass/trunk/reset-pass/src/java/org/sakaiproject/tool/resetpass/FormHandler.java\nreset-pass/trunk/reset-pass/src/webapp/WEB-INF/requestContext.xml\nLog:\nSAK-12076  used spring injection instead of static cover\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 18:29:00 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 18:29:00 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 18:29:00 -0400\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby casino.mail.umich.edu () with ESMTP id l9TMSxpw016699;\n\tMon, 29 Oct 2007 18:28:59 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 47265E7C.34668.24505 ; \n\t29 Oct 2007 18:28:16 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7908150743;\n\tMon, 29 Oct 2007 04:54:00 +0000 (GMT)\nMessage-ID: <200710292225.l9TMP5AG020736@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 344\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 04:53:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C769F1C56F\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 22:27:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TMP5uG020738\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 18:25:05 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TMP5AG020736\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 18:25:05 -0400\nDate: Mon, 29 Oct 2007 18:25:05 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 18:29:00 2007\nX-DSPAM-Confidence: 0.7005\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37531\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 18:25:04 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37531\n\nAdded:\nmemory/branches/sakai_2-5-x/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemoryServiceJMXAgent.java\nModified:\nmemory/branches/sakai_2-5-x/memory-impl/impl/src/java/org/sakaiproject/memory/impl/BasicMemoryService.java\nmemory/branches/sakai_2-5-x/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemCache.java\nmemory/branches/sakai_2-5-x/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MultiRefCacheImpl.java\nmemory/branches/sakai_2-5-x/memory-impl/pack/src/webapp/WEB-INF/components.xml\nLog:\nsvn merge -r 37362:37363 https://source.sakaiproject.org/svn/memory/trunk\nU    memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemCache.java\nA    memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemoryServiceJMXAgent.java\nU    memory-impl/impl/src/java/org/sakaiproject/memory/impl/BasicMemoryService.java\nU    memory-impl/impl/src/java/org/sakaiproject/memory/impl/MultiRefCacheImpl.java\nU    memory-impl/pack/src/webapp/WEB-INF/components.xml\nin-143-196:~/sakai_2-5-x/memory mmmay$ svn log -r 37362:37363 https://source.sakaiproject.org/svn/memory/trunk\n------------------------------------------------------------------------\nr37363 | ian@caret.cam.ac.uk | 2007-10-24 15:40:34 -0400 (Wed, 24 Oct 2007) | 6 lines\n\nhttp://jira.sakaiproject.org/jira/browse/SAK-12030\n\nFixed, but needs some really carefull testing to make certain that items are being evicted correctly.\nThe multirefcache eviction code is almost the same as it was withthe HashMap memory service.\n\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 18:25:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 18:25:53 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 18:25:53 -0400\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby faithful.mail.umich.edu () with ESMTP id l9TMPqGF014164;\n\tMon, 29 Oct 2007 18:25:52 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 47265DEA.BD024.2210 ; \n\t29 Oct 2007 18:25:50 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id AF5AD50743;\n\tMon, 29 Oct 2007 04:51:36 +0000 (GMT)\nMessage-ID: <200710292222.l9TMMl7n020724@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 438\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 04:51:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 726BA1BAB1\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 22:25:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TMMlAm020726\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 18:22:47 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TMMl7n020724\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 18:22:47 -0400\nDate: Mon, 29 Oct 2007 18:22:47 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 18:25:53 2007\nX-DSPAM-Confidence: 0.7620\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37530\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 18:22:46 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37530\n\nAdded:\ndb/branches/sakai_2-5-x/db-impl/ext/src/java/org/sakaiproject/springframework/orm/hibernate/HibernateJMXAgent.java\nModified:\ndb/branches/sakai_2-5-x/db-impl/pack/src/webapp/WEB-INF/components.xml\nLog:\nsvn merge -r 37365:37366 https://source.sakaiproject.org/svn/db/trunk\nA    db-impl/ext/src/java/org/sakaiproject/springframework/orm/hibernate/HibernateJMXAgent.java\nU    db-impl/pack/src/webapp/WEB-INF/components.xml\nin-143-196:~/sakai_2-5-x/db mmmay$ svn log -r 37365:37366 https://source.sakaiproject.org/svn/db/trunk\n------------------------------------------------------------------------\nr37366 | ian@caret.cam.ac.uk | 2007-10-24 15:54:58 -0400 (Wed, 24 Oct 2007) | 8 lines\n\nhttp://jira.sakaiproject.org/jira/browse/SAK-12040\n\nFixed,\nEnables Hibernate JMXAgent,\nTo use start tomcat with  -Dcom.sun.management.jmxremote and start jconsole\nonce hibernate is fully registered, you will see a hibernate MBean\n\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 18:24:26 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 18:24:26 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 18:24:26 -0400\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby casino.mail.umich.edu () with ESMTP id l9TMOPCr014096;\n\tMon, 29 Oct 2007 18:24:25 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 47265D8E.91771.16120 ; \n\t29 Oct 2007 18:24:17 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3E76D6D95B;\n\tMon, 29 Oct 2007 04:49:58 +0000 (GMT)\nMessage-ID: <200710292221.l9TML6Ex020712@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 792\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 04:49:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 08FF61BAB1\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 22:23:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TML6fD020714\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 18:21:06 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TML6Ex020712\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 18:21:06 -0400\nDate: Mon, 29 Oct 2007 18:21:06 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37529 - content/branches/sakai_2-5-x/contentmultiplex-impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 18:24:26 2007\nX-DSPAM-Confidence: 0.7007\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37529\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 18:21:05 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37529\n\nModified:\ncontent/branches/sakai_2-5-x/contentmultiplex-impl/.classpath\nLog:\nsvn merge -r 37026:37027 https://source.sakaiproject.org/svn/content/trunk\nU    contentmultiplex-impl/.classpath\nin-143-196:~/sakai_2-5-x/content mmmay$ svn log -r 37026:37027 https://source.sakaiproject.org/svn/content/trunk\n------------------------------------------------------------------------\nr37027 | ian@caret.cam.ac.uk | 2007-10-15 16:46:54 -0400 (Mon, 15 Oct 2007) | 4 lines\n\nhttp://bugs.sakaiproject.org/jira/browse/SAK-11946\nFixed\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 18:23:34 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 18:23:34 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 18:23:34 -0400\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby jacknife.mail.umich.edu () with ESMTP id l9TMNW84011486;\n\tMon, 29 Oct 2007 18:23:32 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 47265D4F.61CE3.11773 ; \n\t29 Oct 2007 18:23:20 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 310514FD81;\n\tMon, 29 Oct 2007 04:48:59 +0000 (GMT)\nMessage-ID: <200710292220.l9TMK5HM020700@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 454\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 04:48:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 101921C7E8\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 22:22:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TMK6Hr020702\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 18:20:06 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TMK5HM020700\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 18:20:05 -0400\nDate: Mon, 29 Oct 2007 18:20:05 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 18:23:34 2007\nX-DSPAM-Confidence: 0.7012\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37528\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 18:20:03 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37528\n\nAdded:\ncontent/branches/sakai_2-5-x/contentmultiplex-impl/\ncontent/branches/sakai_2-5-x/contentmultiplex-impl/.classpath\ncontent/branches/sakai_2-5-x/contentmultiplex-impl/.project\ncontent/branches/sakai_2-5-x/contentmultiplex-impl/impl/\ncontent/branches/sakai_2-5-x/contentmultiplex-impl/impl/pom.xml\ncontent/branches/sakai_2-5-x/contentmultiplex-impl/impl/src/\ncontent/branches/sakai_2-5-x/contentmultiplex-impl/impl/src/java/\ncontent/branches/sakai_2-5-x/contentmultiplex-impl/impl/src/java/org/\ncontent/branches/sakai_2-5-x/contentmultiplex-impl/impl/src/java/org/sakaiproject/\ncontent/branches/sakai_2-5-x/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/\ncontent/branches/sakai_2-5-x/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/\ncontent/branches/sakai_2-5-x/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/ContentHostingMultiplexService.java\nRemoved:\ncontent/branches/sakai_2-5-x/contentmultiplex-impl/.classpath\ncontent/branches/sakai_2-5-x/contentmultiplex-impl/.project\ncontent/branches/sakai_2-5-x/contentmultiplex-impl/impl/\ncontent/branches/sakai_2-5-x/contentmultiplex-impl/impl/pom.xml\ncontent/branches/sakai_2-5-x/contentmultiplex-impl/impl/src/\ncontent/branches/sakai_2-5-x/contentmultiplex-impl/impl/src/java/\ncontent/branches/sakai_2-5-x/contentmultiplex-impl/impl/src/java/org/\ncontent/branches/sakai_2-5-x/contentmultiplex-impl/impl/src/java/org/sakaiproject/\ncontent/branches/sakai_2-5-x/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/\ncontent/branches/sakai_2-5-x/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/\ncontent/branches/sakai_2-5-x/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/ContentHostingMultiplexService.java\nModified:\ncontent/branches/sakai_2-5-x/pom.xml\nLog:\nNeeed to pick up SAK-11946\nin-143-196:~/sakai_2-5-x/content mmmay$ svn merge -r 36615:36616 https://source.sakaiproject.org/svn/content/trunk\nU    pom.xml\nA    contentmultiplex-impl\nA    contentmultiplex-impl/.classpath\nA    contentmultiplex-impl/impl\nA    contentmultiplex-impl/impl/src\nA    contentmultiplex-impl/impl/src/java\nA    contentmultiplex-impl/impl/src/java/org\nA    contentmultiplex-impl/impl/src/java/org/sakaiproject\nA    contentmultiplex-impl/impl/src/java/org/sakaiproject/content\nA    contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex\nA    contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/ContentHostingMultiplexService.java\nA    contentmultiplex-impl/impl/pom.xml\nA    contentmultiplex-impl/.project\nin-143-196:~/sakai_2-5-x/content mmmay$ svn log -r 37026:37027 https://source.sakaiproject.org/svn/content/trunk\n------------------------------------------------------------------------\nr37027 | ian@caret.cam.ac.uk | 2007-10-15 16:46:54 -0400 (Mon, 15 Oct 2007) | 4 lines\n\nhttp://bugs.sakaiproject.org/jira/browse/SAK-11946\nFixed\n\n\n------------------------------------------------------------------------\nin-143-196:~/sakai_2-5-x/content mmmay$ svn log -r 36615:36616 https://source.sakaiproject.org/svn/content/trunk\n------------------------------------------------------------------------\nr36616 | ian@caret.cam.ac.uk | 2007-10-09 12:43:49 -0400 (Tue, 09 Oct 2007) | 4 lines\n\nSAK-10366\nAdded a multiplexer to enable migration of data\n\n\n------------------------------------------------------------------------\nin-143-196:~/sakai_2-5-x/content mmmay$ \n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 18:16:20 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 18:16:20 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 18:16:20 -0400\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby casino.mail.umich.edu () with ESMTP id l9TMGIiO010201;\n\tMon, 29 Oct 2007 18:16:18 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 47265BAD.EA84.23744 ; \n\t29 Oct 2007 18:16:16 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B46A14FD81;\n\tMon, 29 Oct 2007 04:42:00 +0000 (GMT)\nMessage-ID: <200710292213.l9TMD5JL020666@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 507\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 04:41:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 09D861C7E8\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 22:15:53 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TMD6et020668\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 18:13:06 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TMD5JL020666\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 18:13:05 -0400\nDate: Mon, 29 Oct 2007 18:13:05 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 18:16:20 2007\nX-DSPAM-Confidence: 0.7621\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37527\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 18:13:03 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37527\n\nModified:\ncontent/branches/sakai_2-5-x/content-bundles/types.properties\ncontent/branches/sakai_2-5-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\ncontent/branches/sakai_2-5-x/content-tool/tool/src/webapp/vm/resources/sakai_properties.vm\nLog:\nsvn merge -r 37337:37338 https://source.sakaiproject.org/svn/content/trunk\nU    content-bundles/types.properties\nU    content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\nU    content-tool/tool/src/webapp/vm/resources/sakai_properties.vm\nin-143-196:~/sakai_2-5-x/content mmmay$ svn log -r 37337:37338 https://source.sakaiproject.org/svn/content/trunk\n------------------------------------------------------------------------\nr37338 | ian@caret.cam.ac.uk | 2007-10-23 18:25:28 -0400 (Tue, 23 Oct 2007) | 7 lines\n\nFixed the mount point issue,\nthere is a new bundle value which needs propagating to other language files.\n\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12019\n\n\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 18:12:26 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 18:12:26 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 18:12:26 -0400\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby godsend.mail.umich.edu () with ESMTP id l9TMCO2E003847;\n\tMon, 29 Oct 2007 18:12:24 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 47265AC1.EAA46.26060 ; \n\t29 Oct 2007 18:12:21 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BDC3B5644E;\n\tMon, 29 Oct 2007 04:38:05 +0000 (GMT)\nMessage-ID: <200710292209.l9TM9GMs020648@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 517\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 04:37:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 914AF1C7E8\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 22:12:04 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TM9GVG020650\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 18:09:16 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TM9GMs020648\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 18:09:16 -0400\nDate: Mon, 29 Oct 2007 18:09:16 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37526 - in archive/branches/sakai_2-5-x/import-handlers/content-handlers: . src/java/org/sakaiproject/importer/impl/handlers\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 18:12:26 2007\nX-DSPAM-Confidence: 0.7621\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37526\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 18:09:15 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37526\n\nModified:\narchive/branches/sakai_2-5-x/import-handlers/content-handlers/.classpath\narchive/branches/sakai_2-5-x/import-handlers/content-handlers/pom.xml\narchive/branches/sakai_2-5-x/import-handlers/content-handlers/src/java/org/sakaiproject/importer/impl/handlers/ResourcesHandler.java\nLog:\nsvn merge -r 37060:37061 https://source.sakaiproject.org/svn/archive/trunk\nU    import-handlers/content-handlers/.classpath\nU    import-handlers/content-handlers/src/java/org/sakaiproject/importer/impl/handlers/ResourcesHandler.java\nU    import-handlers/content-handlers/pom.xml\nin-143-196:~/sakai_2-5-x/archive mmmay$ svn log -r 37060:37061 https://source.sakaiproject.org/svn/archive/trunk\n------------------------------------------------------------------------\nr37061 | zach.thomas@txstate.edu | 2007-10-16 14:54:11 -0400 (Tue, 16 Oct 2007) | 1 line\n\nfixes SAK-11956\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 18:09:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 18:09:53 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 18:09:53 -0400\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby awakenings.mail.umich.edu () with ESMTP id l9TM9qdJ010927;\n\tMon, 29 Oct 2007 18:09:52 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 47265A2B.1B0DE.8652 ; \n\t29 Oct 2007 18:09:50 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A03106E1B2;\n\tMon, 29 Oct 2007 04:35:30 +0000 (GMT)\nMessage-ID: <200710292206.l9TM6d78020633@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 545\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 04:35:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4CC791C7E8\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 22:09:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TM6dkB020635\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 18:06:39 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TM6d78020633\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 18:06:39 -0400\nDate: Mon, 29 Oct 2007 18:06:39 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37525 - search/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/indexer/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 18:09:53 2007\nX-DSPAM-Confidence: 0.7619\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37525\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 18:06:37 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37525\n\nModified:\nsearch/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/indexer/impl/SearchBuilderQueueManager.java\nLog:\nsvn merge -r 36547:36548 https://source.sakaiproject.org/svn/search/trunk\nU    search-impl/impl/src/java/org/sakaiproject/search/indexer/impl/SearchBuilderQueueManager.java\nin-143-196:~/sakai_2-5-x/search mmmay$ svn log -r 36547:36548 https://source.sakaiproject.org/svn/search/trunk\n------------------------------------------------------------------------\nr36548 | ian@caret.cam.ac.uk | 2007-10-06 19:02:13 -0400 (Sat, 06 Oct 2007) | 4 lines\n\nSAK-11820 http://jira.sakaiproject.org/jira/browse/SAK-11820\n\nWrapped sensitive area in try catch \n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 18:07:34 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 18:07:34 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 18:07:34 -0400\nReceived: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43])\n\tby flawless.mail.umich.edu () with ESMTP id l9TM7X3A006186;\n\tMon, 29 Oct 2007 18:07:33 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY serenity.mr.itd.umich.edu ID 4726599F.6BF0D.5963 ; \n\t29 Oct 2007 18:07:30 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9E9934FD81;\n\tMon, 29 Oct 2007 04:33:15 +0000 (GMT)\nMessage-ID: <200710292204.l9TM4P7Z020621@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 251\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 04:33:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CCF511C7E8\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 22:07:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TM4PGl020623\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 18:04:25 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TM4P7Z020621\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 18:04:25 -0400\nDate: Mon, 29 Oct 2007 18:04:25 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37524 - in web/branches/sakai_2-5-x/web-tool/tool/src: bundle webapp/vm/web\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 18:07:34 2007\nX-DSPAM-Confidence: 0.7621\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37524\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 18:04:23 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37524\n\nModified:\nweb/branches/sakai_2-5-x/web-tool/tool/src/bundle/iframe.properties\nweb/branches/sakai_2-5-x/web-tool/tool/src/webapp/vm/web/chef_iframe-customize.vm\nLog:\nsvn merge -r 37224:37225 https://source.sakaiproject.org/svn/web/trunk\nU    web-tool/tool/src/bundle/iframe.properties\nU    web-tool/tool/src/webapp/vm/web/chef_iframe-customize.vm\nin-143-196:~/sakai_2-5-x/web mmmay$ svn log -r 37224:37225 https://source.sakaiproject.org/svn/web/trunk\n------------------------------------------------------------------------\nr37225 | gsilver@umich.edu | 2007-10-23 09:12:18 -0400 (Tue, 23 Oct 2007) | 1 line\n\nhttp://jira.sakaiproject.org/jira/browse/SAK-12007\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 18:04:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 18:04:42 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 18:04:42 -0400\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby brazil.mail.umich.edu () with ESMTP id l9TM4fOu032622;\n\tMon, 29 Oct 2007 18:04:41 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 472658F3.7D6B0.14497 ; \n\t29 Oct 2007 18:04:38 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B64575D405;\n\tMon, 29 Oct 2007 04:30:23 +0000 (GMT)\nMessage-ID: <200710292201.l9TM1YtZ020609@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 774\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 04:30:06 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id F39791C7E8\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 22:04:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TM1Z2D020611\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 18:01:35 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TM1YtZ020609\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 18:01:34 -0400\nDate: Mon, 29 Oct 2007 18:01:34 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37523 - search/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/component/service/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 18:04:42 2007\nX-DSPAM-Confidence: 0.7627\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37523\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 18:01:33 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37523\n\nModified:\nsearch/branches/sakai_2-5-x/search-impl/impl/src/java/org/sakaiproject/search/component/service/impl/BaseSearchServiceImpl.java\nLog:\nsvn merge -r 36548:36549 https://source.sakaiproject.org/svn/search/trunk\nU    search-impl/impl/src/java/org/sakaiproject/search/component/service/impl/BaseSearchServiceImpl.java\nin-143-196:~/sakai_2-5-x/search mmmay$ svn log -r 36548:36549 https://source.sakaiproject.org/svn/search/trunk\n------------------------------------------------------------------------\nr36548 | ian@caret.cam.ac.uk | 2007-10-06 19:02:13 -0400 (Sat, 06 Oct 2007) | 4 lines\n\nSAK-11820 http://jira.sakaiproject.org/jira/browse/SAK-11820\n\nWrapped sensitive area in try catch \n\n------------------------------------------------------------------------\nr36549 | ian@caret.cam.ac.uk | 2007-10-06 19:12:02 -0400 (Sat, 06 Oct 2007) | 8 lines\n\nSAK-11222 http://jira.sakaiproject.org/jira/browse/SAK-11222\n\nREST XML search does encode its exceptions in the response message. These are decoded on the client and \nreported in the log files.\n\nI have added a report on the search server\n\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 18:03:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 18:03:02 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 18:03:02 -0400\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby brazil.mail.umich.edu () with ESMTP id l9TM2u3U031499;\n\tMon, 29 Oct 2007 18:02:56 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 4726588A.EE47A.18015 ; \n\t29 Oct 2007 18:02:53 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B53C7552A7;\n\tMon, 29 Oct 2007 04:28:34 +0000 (GMT)\nMessage-ID: <200710292159.l9TLxf25020589@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 934\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 04:28:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id ACE1F1C3FE\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 22:02:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLxfDi020591\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 17:59:41 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLxf25020589\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:59:41 -0400\nDate: Mon, 29 Oct 2007 17:59:41 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37522 - site-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/webapp/vm/sitesetup\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 18:03:02 2007\nX-DSPAM-Confidence: 0.7626\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37522\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 17:59:40 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37522\n\nModified:\nsite-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-group.vm\nLog:\nsvn merge -r 37351:37352 https://source.sakaiproject.org/svn/site-manage/trunk\nU    site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-group.vm\nin-143-196:~/sakai_2-5-x/site-manage mmmay$ svn log -r 37351:37352 https://source.sakaiproject.org/svn/site-manage/trunk\n------------------------------------------------------------------------\nr37352 | zqian@umich.edu | 2007-10-24 09:55:38 -0400 (Wed, 24 Oct 2007) | 1 line\n\nfix 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\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 17:58:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 17:58:30 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 17:58:30 -0400\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby godsend.mail.umich.edu () with ESMTP id l9TLwTNi030367;\n\tMon, 29 Oct 2007 17:58:29 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4726577E.3C909.4289 ; \n\t29 Oct 2007 17:58:25 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CA58C61B52;\n\tMon, 29 Oct 2007 04:24:09 +0000 (GMT)\nMessage-ID: <200710292155.l9TLtHmX020577@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 990\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 04:23:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4F6B81B9AB\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 21:58:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLtHAf020579\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 17:55:17 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLtHmX020577\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:55:17 -0400\nDate: Mon, 29 Oct 2007 17:55:17 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 17:58:30 2007\nX-DSPAM-Confidence: 0.7010\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37521\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 17:55:15 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37521\n\nModified:\nsite-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nsite-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-list.vm\nsite-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteCourse.vm\nsite-manage/branches/sakai_2-5-x/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-type.vm\nLog:\nmerge -r 36640:36641 https://source.sakaiproject.org/svn/site-manage/trunk\nU    site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nU    site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-list.vm\nU    site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-type.vm\nU    site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteCourse.vm\nin-143-196:~/sakai_2-5-x/site-manage mmmay$ svn log -r 36640:36641 https://source.sakaiproject.org/svn/site-manage/trunk\n------------------------------------------------------------------------\nr36641 | zqian@umich.edu | 2007-10-10 11:46:24 -0400 (Wed, 10 Oct 2007) | 1 line\n\nfix to SAK-11879:remove the hardcoded 'course' String for course site type, use the configuration setting instead\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 17:56:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 17:56:37 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 17:56:37 -0400\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby panther.mail.umich.edu () with ESMTP id l9TLubrl003710;\n\tMon, 29 Oct 2007 17:56:37 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 4726570A.CBD66.29031 ; \n\t29 Oct 2007 17:56:32 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0866D4FD81;\n\tMon, 29 Oct 2007 04:22:13 +0000 (GMT)\nMessage-ID: <200710292153.l9TLrMBh020565@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 523\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 04:22:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C82F71B9AB\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 21:56:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLrMZZ020567\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 17:53:22 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLrMBh020565\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:53:22 -0400\nDate: Mon, 29 Oct 2007 17:53:22 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37520 - portal/branches/sakai_2-5-x/portal-render-engine-impl/pack/src/webapp/vm/defaultskin\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 17:56:37 2007\nX-DSPAM-Confidence: 0.7010\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37520\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 17:53:21 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37520\n\nModified:\nportal/branches/sakai_2-5-x/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm\nLog:\nsvn merge -r 36619:36620 https://source.sakaiproject.org/svn/portal/trunk\nU    portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm\nin-143-196:~/sakai_2-5-x/portal mmmay$ svn log -r 36619:36620 https://source.sakaiproject.org/svn/portal/trunk\n------------------------------------------------------------------------\nr36620 | gsilver@umich.edu | 2007-10-09 15:49:06 -0400 (Tue, 09 Oct 2007) | 2 lines\n\nhttp://bugs.sakaiproject.org/jira/browse/SAK-11391\n- removing some cruft scaffolding dating from 1.5\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 17:51:21 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 17:51:21 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 17:51:21 -0400\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby score.mail.umich.edu () with ESMTP id l9TLpKk8008871;\n\tMon, 29 Oct 2007 17:51:20 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 472655CD.D392B.3593 ; \n\t29 Oct 2007 17:51:18 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B210C561C2;\n\tMon, 29 Oct 2007 04:16:57 +0000 (GMT)\nMessage-ID: <200710292148.l9TLm6Ir020550@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 934\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 04:16:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AF10F1B849\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 21:50:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLm6TP020552\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 17:48:06 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLm6Ir020550\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:48:06 -0400\nDate: Mon, 29 Oct 2007 17:48:06 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37519 - portal/branches/sakai_2-5-x/portal-render-engine-impl/pack/src/webapp/vm/defaultskin\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 17:51:21 2007\nX-DSPAM-Confidence: 0.6197\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37519\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 17:48:05 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37519\n\nModified:\nportal/branches/sakai_2-5-x/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm\nLog:\nsvn merge -r 36568:36569 https://source.sakaiproject.org/svn/portal/trunk\nU    portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm\nin-143-196:~/sakai_2-5-x/portal mmmay$ svn log -r 36568:36569 https://source.sakaiproject.org/svn/portal/trunk\n------------------------------------------------------------------------\nr36569 | ian@caret.cam.ac.uk | 2007-10-08 11:30:42 -0400 (Mon, 08 Oct 2007) | 3 lines\n\nChanged the spacing\nSAK-11731 http://jira.sakaiproject.org/jira/browse/SAK-11731\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 17:47:48 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 17:47:48 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 17:47:48 -0400\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby brazil.mail.umich.edu () with ESMTP id l9TLll1L025213;\n\tMon, 29 Oct 2007 17:47:47 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 472654FE.B14C0.24408 ; \n\t29 Oct 2007 17:47:45 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 17BE66E38D;\n\tMon, 29 Oct 2007 04:13:22 +0000 (GMT)\nMessage-ID: <200710292144.l9TLiXfJ020527@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 964\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 04:13:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 390D01B849\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 21:47:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLiXlB020529\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 17:44:33 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLiXfJ020527\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:44:33 -0400\nDate: Mon, 29 Oct 2007 17:44:33 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 17:47:48 2007\nX-DSPAM-Confidence: 0.5442\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37518\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 17:44:31 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37518\n\nModified:\nportal/branches/sakai_2-5-x/portal-impl/impl/src/java/org/sakaiproject/portal/charon/SkinnableCharonPortal.java\nportal/branches/sakai_2-5-x/portal-impl/impl/src/java/org/sakaiproject/portal/charon/handlers/PageHandler.java\nportal/branches/sakai_2-5-x/portal-render-engine-impl/impl/src/test/org/sakaiproject/portal/charon/test/MockCharonPortal.java\nportal/branches/sakai_2-5-x/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm\nLog:\nsvn log -r 36550:36554 https://source.sakaiproject.org/svn/portal/trunk\n------------------------------------------------------------------------\nr36550 | ian@caret.cam.ac.uk | 2007-10-06 19:28:33 -0400 (Sat, 06 Oct 2007) | 6 lines\n\nSAK-11828 http://jira.sakaiproject.org/jira/browse/SAK-11828\n\n\nid is not used anywhere, as far as I can tell.\n\n\n------------------------------------------------------------------------\nr36551 | ian@caret.cam.ac.uk | 2007-10-06 19:46:18 -0400 (Sat, 06 Oct 2007) | 5 lines\n\nSAK-11731 http://jira.sakaiproject.org/jira/browse/SAK-11731\n\nFixed with a nbsp. not certain that the patch supplied would always work so going with this one.\n\n\n------------------------------------------------------------------------\nr36552 | ian@caret.cam.ac.uk | 2007-10-06 20:01:12 -0400 (Sat, 06 Oct 2007) | 9 lines\n\nSAK-11466 http://jira.sakaiproject.org/jira/browse/SAK-11466\n\nadded login.use.xlogin.to.relogin\n\nIf true, the default and Xlogin is used, then xlogin will be used for relogin.\nIf false, the non container login will be used\n\n\n\n------------------------------------------------------------------------\nr36553 | ian@caret.cam.ac.uk | 2007-10-06 20:01:53 -0400 (Sat, 06 Oct 2007) | 5 lines\n\nhttp://jira.sakaiproject.org/jira/browse/SAK-11466\n\nFixed\n\n\n------------------------------------------------------------------------\nr36554 | ian@caret.cam.ac.uk | 2007-10-06 20:21:27 -0400 (Sat, 06 Oct 2007) | 5 lines\n\nhttp://jira.sakaiproject.org/jira/browse/SAK-10850\n\nFixed, in the portal for all popups\n\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 17:46:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 17:46:02 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 17:46:02 -0400\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby casino.mail.umich.edu () with ESMTP id l9TLk1na026956;\n\tMon, 29 Oct 2007 17:46:01 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 47265494.3C855.18866 ; \n\t29 Oct 2007 17:45:59 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C71816E682;\n\tMon, 29 Oct 2007 04:11:40 +0000 (GMT)\nMessage-ID: <200710292142.l9TLglwe020509@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 368\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 04:11:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A4F151B849\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 21:45:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLgl07020511\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 17:42:47 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLglwe020509\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:42:47 -0400\nDate: Mon, 29 Oct 2007 17:42:47 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37517 - portal/branches/sakai_2-5-x/portal-render-engine-impl/pack/src/webapp/vm/defaultskin\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 17:46:02 2007\nX-DSPAM-Confidence: 0.7005\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37517\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 17:42:46 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37517\n\nModified:\nportal/branches/sakai_2-5-x/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm\nLog:\nsvn merge -r 36549:36550 https://source.sakaiproject.org/svn/portal/trunk\nU    portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm\nin-143-196:~/sakai_2-5-x/portal mmmay$ svn log -r 36549:36550 https://source.sakaiproject.org/svn/portal/trunk\n------------------------------------------------------------------------\nr36550 | ian@caret.cam.ac.uk | 2007-10-06 19:28:33 -0400 (Sat, 06 Oct 2007) | 6 lines\n\nSAK-11828 http://jira.sakaiproject.org/jira/browse/SAK-11828\n\n\nid is not used anywhere, as far as I can tell.\n\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 17:38:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 17:38:19 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 17:38:19 -0400\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby godsend.mail.umich.edu () with ESMTP id l9TLcIeg021780;\n\tMon, 29 Oct 2007 17:38:18 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 472652BE.1FA01.2758 ; \n\t29 Oct 2007 17:38:15 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 56F0A4EBDF;\n\tMon, 29 Oct 2007 04:03:53 +0000 (GMT)\nMessage-ID: <200710292134.l9TLYws6020487@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 142\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 04:03:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D02CC10ECB\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 21:37:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLYwro020489\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 17:34:58 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLYws6020487\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:34:58 -0400\nDate: Mon, 29 Oct 2007 17:34:58 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37516 - citations/branches/sakai_2-5-x/citations-impl/impl/src/java/org/sakaiproject/citation/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 17:38:19 2007\nX-DSPAM-Confidence: 0.6568\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37516\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 17:34:57 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37516\n\nModified:\ncitations/branches/sakai_2-5-x/citations-impl/impl/src/java/org/sakaiproject/citation/impl/BaseCitationService.java\nLog:\nsvn merge -r 37470:37471 https://source.sakaiproject.org/svn/citations/trunk\nU    citations-impl/impl/src/java/org/sakaiproject/citation/impl/BaseCitationService.java\nin-143-196:~/sakai_2-5-x/citations mmmay$ svn log -r 37470:37471 https://source.sakaiproject.org/svn/citations/trunk\n------------------------------------------------------------------------\nr37471 | dsobiera@indiana.edu | 2007-10-29 14:00:50 -0400 (Mon, 29 Oct 2007) | 1 line\n\nSAK-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.\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 17:35:44 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 17:35:44 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 17:35:44 -0400\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby panther.mail.umich.edu () with ESMTP id l9TLZhZJ025213;\n\tMon, 29 Oct 2007 17:35:43 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 4726522A.84BF.15288 ; \n\t29 Oct 2007 17:35:41 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8087F4EAAB;\n\tMon, 29 Oct 2007 04:01:26 +0000 (GMT)\nMessage-ID: <200710292132.l9TLWY78020475@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 986\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 04:01:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EA7331C482\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 21:35:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLWYQ7020477\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 17:32:34 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLWY78020475\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:32:34 -0400\nDate: Mon, 29 Oct 2007 17:32:34 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37515 - blog/branches/sakai_2-5-x/tool/src/webapp/WEB-INF\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 17:35:44 2007\nX-DSPAM-Confidence: 0.7623\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37515\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 17:32:34 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37515\n\nModified:\nblog/branches/sakai_2-5-x/tool/src/webapp/WEB-INF/web.xml\nLog:\nsvn merge -r 37443:37444 https://source.sakaiproject.org/svn/blog/trunk\nU    tool/src/webapp/WEB-INF/web.xml\nin-143-196:~/sakai_2-5-x/blog mmmay$ svn log -r 37443:37444 https://source.sakaiproject.org/svn/blog/trunk\n------------------------------------------------------------------------\nr37444 | a.fish@lancaster.ac.uk | 2007-10-29 08:00:00 -0400 (Mon, 29 Oct 2007) | 1 line\n\nSAK-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)\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 17:33:58 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 17:33:58 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 17:33:58 -0400\nReceived: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43])\n\tby score.mail.umich.edu () with ESMTP id l9TLXvod001074;\n\tMon, 29 Oct 2007 17:33:57 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY serenity.mr.itd.umich.edu ID 472651BF.A9225.17847 ; \n\t29 Oct 2007 17:33:54 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B412E4EAAB;\n\tMon, 29 Oct 2007 03:59:38 +0000 (GMT)\nMessage-ID: <200710292130.l9TLUl4c020463@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 52\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 03:59:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 561521C482\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 21:33:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLUlEZ020465\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 17:30:47 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLUl4c020463\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:30:47 -0400\nDate: Mon, 29 Oct 2007 17:30:47 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37514 - portal/branches/sakai_2-5-x/portal-charon/charon/src/webapp/scripts\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 17:33:58 2007\nX-DSPAM-Confidence: 0.7008\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37514\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 17:30:46 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37514\n\nModified:\nportal/branches/sakai_2-5-x/portal-charon/charon/src/webapp/scripts/portalscripts.js\nLog:\nsvn merge -r 37433:37434 https://source.sakaiproject.org/svn/portal/trunk\nU    portal-charon/charon/src/webapp/scripts/portalscripts.js\nin-143-196:~/sakai_2-5-x/portal mmmay$ svn log -r 37433:37434 https://source.sakaiproject.org/svn/portal/trunk\n------------------------------------------------------------------------\nr37434 | colin.clark@utoronto.ca | 2007-10-26 19:22:56 -0400 (Fri, 26 Oct 2007) | 6 lines\n\nSAK-11824\n\nPortal 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.\n\nPatch from Eli Cochran.\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 17:31:52 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 17:31:52 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 17:31:52 -0400\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby awakenings.mail.umich.edu () with ESMTP id l9TLVpIL024337;\n\tMon, 29 Oct 2007 17:31:52 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 4726513C.E4F5A.7111 ; \n\t29 Oct 2007 17:31:44 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 10D2B4EBDF;\n\tMon, 29 Oct 2007 03:57:29 +0000 (GMT)\nMessage-ID: <200710292128.l9TLSbt5020451@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 717\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 03:57:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BAB3A1C7F2\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 21:31:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLSbuS020453\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 17:28:37 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLSbt5020451\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:28:37 -0400\nDate: Mon, 29 Oct 2007 17:28:37 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37513 - in roster/branches/sakai_2-5-x/roster-app/src: java/org/sakaiproject/tool/roster webapp/roster/inc\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 17:31:52 2007\nX-DSPAM-Confidence: 0.7006\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37513\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 17:28:36 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37513\n\nModified:\nroster/branches/sakai_2-5-x/roster-app/src/java/org/sakaiproject/tool/roster/FilteredParticipantListingBean.java\nroster/branches/sakai_2-5-x/roster-app/src/webapp/roster/inc/filter.jspf\nLog:\nsvn merge -r 37427:37428 https://source.sakaiproject.org/svn/roster/trunk\nU    roster-app/src/java/org/sakaiproject/tool/roster/FilteredParticipantListingBean.java\nU    roster-app/src/webapp/roster/inc/filter.jspf\nin-143-196:~/sakai_2-5-x/roster mmmay$ svn log -r 37427:37428 https://source.sakaiproject.org/svn/roster/trunk\n------------------------------------------------------------------------\nr37428 | louis@media.berkeley.edu | 2007-10-26 15:16:33 -0400 (Fri, 26 Oct 2007) | 1 line\n\nSAK-12059  Roster Group/Section Filter does not show\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 17:29:57 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 17:29:57 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 17:29:57 -0400\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby panther.mail.umich.edu () with ESMTP id l9TLTu4Q021196;\n\tMon, 29 Oct 2007 17:29:56 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 472650CF.64002.26798 ; \n\t29 Oct 2007 17:29:54 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5A7EB6E6D0;\n\tMon, 29 Oct 2007 03:55:39 +0000 (GMT)\nMessage-ID: <200710292126.l9TLQncT020439@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 88\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 03:55:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 09A771C482\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 21:29:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLQn7G020441\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 17:26:49 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLQncT020439\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:26:49 -0400\nDate: Mon, 29 Oct 2007 17:26:49 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37512 - roster/branches/sakai_2-5-x/roster-app/src/webapp/roster\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 17:29:57 2007\nX-DSPAM-Confidence: 0.6240\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37512\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 17:26:48 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37512\n\nModified:\nroster/branches/sakai_2-5-x/roster-app/src/webapp/roster/pictures.jsp\nLog:\nsvn merge -r 37394:37395 https://source.sakaiproject.org/svn/roster/trunk\nU    roster-app/src/webapp/roster/pictures.jsp\nin-143-196:~/sakai_2-5-x/roster mmmay$ svn log -r 37394:37395 https://source.sakaiproject.org/svn/roster/trunk\n------------------------------------------------------------------------\nr37395 | louis@media.berkeley.edu | 2007-10-25 17:16:21 -0400 (Thu, 25 Oct 2007) | 1 line\n\nSAK-11144 In IE7, switch picture view takes two clicks\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 17:27:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 17:27:51 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 17:27:51 -0400\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby chaos.mail.umich.edu () with ESMTP id l9TLRoPK021513;\n\tMon, 29 Oct 2007 17:27:50 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4726504A.EB36C.6774 ; \n\t29 Oct 2007 17:27:47 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 338C26E6C8;\n\tMon, 29 Oct 2007 03:53:28 +0000 (GMT)\nMessage-ID: <200710292124.l9TLOdUZ020427@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 312\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 03:53:17 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0A4DC1C482\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 21:27:26 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLOd9c020429\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 17:24:39 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLOdUZ020427\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:24:39 -0400\nDate: Mon, 29 Oct 2007 17:24:39 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37511 - roster/branches/sakai_2-5-x/roster-app/src/java/org/sakaiproject/tool/roster\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 17:27:51 2007\nX-DSPAM-Confidence: 0.7007\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37511\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 17:24:38 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37511\n\nModified:\nroster/branches/sakai_2-5-x/roster-app/src/java/org/sakaiproject/tool/roster/RosterPreferences.java\nLog:\nsvn merge -r 37398:37399 https://source.sakaiproject.org/svn/roster/trunk\nU    roster-app/src/java/org/sakaiproject/tool/roster/RosterPreferences.java\nin-143-196:~/sakai_2-5-x/roster mmmay$ svn log -r 37398:37399 https://source.sakaiproject.org/svn/roster/trunk\n------------------------------------------------------------------------\nr37399 | louis@media.berkeley.edu | 2007-10-25 21:25:22 -0400 (Thu, 25 Oct 2007) | 1 line\n\nSAK-11444 make the default Roster order configurable \n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 17:26:11 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 17:26:11 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 17:26:11 -0400\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby chaos.mail.umich.edu () with ESMTP id l9TLQAlU020918;\n\tMon, 29 Oct 2007 17:26:10 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 47264FEC.8BABA.4916 ; \n\t29 Oct 2007 17:26:07 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1A0A95DF51;\n\tMon, 29 Oct 2007 03:51:52 +0000 (GMT)\nMessage-ID: <200710292123.l9TLN2PO020404@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 486\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 03:51:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E68711C482\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 21:25:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLN2s4020406\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 17:23:02 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLN2PO020404\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:23:02 -0400\nDate: Mon, 29 Oct 2007 17:23:02 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37510 - roster/branches/sakai_2-5-x/roster-app/src/java/org/sakaiproject/tool/roster\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 17:26:11 2007\nX-DSPAM-Confidence: 0.7009\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37510\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 17:23:01 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37510\n\nModified:\nroster/branches/sakai_2-5-x/roster-app/src/java/org/sakaiproject/tool/roster/BaseRosterPageBean.java\nroster/branches/sakai_2-5-x/roster-app/src/java/org/sakaiproject/tool/roster/RosterPreferences.java\nLog:\nvn merge -r 37382:37383 https://source.sakaiproject.org/svn/roster/trunk\nU    roster-app/src/java/org/sakaiproject/tool/roster/RosterPreferences.java\nU    roster-app/src/java/org/sakaiproject/tool/roster/BaseRosterPageBean.java\nin-143-196:~/sakai_2-5-x/roster mmmay$ svn log -r 37382:37383 https://source.sakaiproject.org/svn/roster/trunk\n------------------------------------------------------------------------\nr37383 | louis@media.berkeley.edu | 2007-10-25 11:28:47 -0400 (Thu, 25 Oct 2007) | 1 line\n\nSAK-11444 make the default Roster order configurable\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 17:23:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 17:23:02 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 17:23:02 -0400\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby score.mail.umich.edu () with ESMTP id l9TLN1in028468;\n\tMon, 29 Oct 2007 17:23:01 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 47264F2F.89224.11628 ; \n\t29 Oct 2007 17:22:58 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C2D026D81A;\n\tMon, 29 Oct 2007 03:48:44 +0000 (GMT)\nMessage-ID: <200710292119.l9TLJlq6020381@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 463\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 03:48:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 06E351BAB1\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 21:22:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLJlo9020383\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 17:19:47 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLJlq6020381\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:19:47 -0400\nDate: Mon, 29 Oct 2007 17:19:47 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37509 - citations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/js\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 17:23:02 2007\nX-DSPAM-Confidence: 0.7008\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37509\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 17:19:46 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37509\n\nModified:\ncitations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/js/citationscript.js\nLog:\nsvn merge -r 37428:37429 https://source.sakaiproject.org/svn/citations/trunk\nU    citations-tool/tool/src/webapp/js/citationscript.js\nin-143-196:~/sakai_2-5-x/citations mmmay$ svn log -r 37428:37429 https://source.sakaiproject.org/svn/citations/trunk\n------------------------------------------------------------------------\nr37429 | dsobiera@indiana.edu | 2007-10-26 15:37:55 -0400 (Fri, 26 Oct 2007) | 1 line\n\nSAK-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.\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 17:17:04 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 17:17:04 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 17:17:04 -0400\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby panther.mail.umich.edu () with ESMTP id l9TLH3V9013128;\n\tMon, 29 Oct 2007 17:17:03 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 47264DC9.5A1B7.24291 ; \n\t29 Oct 2007 17:17:00 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 840B46E371;\n\tMon, 29 Oct 2007 03:42:46 +0000 (GMT)\nMessage-ID: <200710292113.l9TLDvq9020358@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 14\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 03:42:32 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1840D1C48E\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 21:16:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLDvkq020360\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 17:13:57 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLDvq9020358\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:13:57 -0400\nDate: Mon, 29 Oct 2007 17:13:57 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37508 - reference/branches/sakai_2-5-x/docs/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 17:17:04 2007\nX-DSPAM-Confidence: 0.7011\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37508\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 17:13:56 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37508\n\nModified:\nreference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql\nreference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\nLog:\nsvn merge -r 37414:37415 https://source.sakaiproject.org/svn/reference/trunk\nU    docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql\nU    docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\nin-143-196:~/sakai_2-5-x/reference mmmay$ svn log -r 37414:37415 https://source.sakaiproject.org/svn/reference/trunk\n------------------------------------------------------------------------\nr37415 | bahollad@indiana.edu | 2007-10-26 11:37:46 -0400 (Fri, 26 Oct 2007) | 3 lines\n\nSAK-12027\nPossible problems with sakai 2.4->2.5 mysql conversion script\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 17:15:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 17:15:43 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 17:15:43 -0400\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby score.mail.umich.edu () with ESMTP id l9TLFg1f024722;\n\tMon, 29 Oct 2007 17:15:42 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 47264D78.9DD74.10223 ; \n\t29 Oct 2007 17:15:39 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D8C5E505EA;\n\tMon, 29 Oct 2007 03:41:19 +0000 (GMT)\nMessage-ID: <200710292112.l9TLCSdF020346@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 176\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 03:41:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A47831C48E\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 21:15:16 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TLCS4e020348\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 17:12:28 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TLCSdF020346\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:12:28 -0400\nDate: Mon, 29 Oct 2007 17:12:28 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37507 - reference/branches/sakai_2-5-x/docs/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 17:15:43 2007\nX-DSPAM-Confidence: 0.7619\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37507\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 17:12:27 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37507\n\nModified:\nreference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\nLog:\nsvn merge -r 37354:37355 https://source.sakaiproject.org/svn/reference/trunk\nG    docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\nin-143-196:~/sakai_2-5-x/reference mmmay$ svn log -r 37354:37355 https://source.sakaiproject.org/svn/reference/trunk\n------------------------------------------------------------------------\nr37355 | ian@caret.cam.ac.uk | 2007-10-24 11:49:39 -0400 (Wed, 24 Oct 2007) | 3 lines\n\nhttp://jira.sakaiproject.org/jira/browse/SAK-11948\nFixed\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Mon Oct 29 17:12:03 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 17:12:03 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 17:12:03 -0400\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby faithful.mail.umich.edu () with ESMTP id l9TLC3PV012845;\n\tMon, 29 Oct 2007 17:12:03 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 47264C9E.14B2.23352 ; \n\t29 Oct 2007 17:12:00 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9B0356D7A3;\n\tMon, 29 Oct 2007 03:37:45 +0000 (GMT)\nMessage-ID: <200710292108.l9TL8urp020334@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 490\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 03:37:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6947B1C65B\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 21:11:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TL8udm020336\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 17:08:56 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TL8urp020334\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:08:56 -0400\nDate: Mon, 29 Oct 2007 17:08:56 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [sakai] svn commit: r37506 - gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 17:12:03 2007\nX-DSPAM-Confidence: 0.7563\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37506\n\nAuthor: cwen@iupui.edu\nDate: 2007-10-29 17:08:55 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37506\n\nModified:\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentDetailsBean.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/ViewByStudentBean.java\nLog:\nhttp://128.196.219.68/jira/browse/SAK-10427\nSAK-10427\n=>\nfix some NPE.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 17:09:22 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 17:09:22 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 17:09:22 -0400\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby casino.mail.umich.edu () with ESMTP id l9TL9LLe008055;\n\tMon, 29 Oct 2007 17:09:21 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 47264BFB.ED11A.13187 ; \n\t29 Oct 2007 17:09:19 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1181F6350C;\n\tMon, 29 Oct 2007 03:35:01 +0000 (GMT)\nMessage-ID: <200710292106.l9TL63EK020322@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 242\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 03:34:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9F9EC1C48E\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 21:08:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TL63cN020324\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 17:06:03 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TL63EK020322\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:06:03 -0400\nDate: Mon, 29 Oct 2007 17:06:03 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37505 - reference/branches/sakai_2-5-x/docs/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 17:09:22 2007\nX-DSPAM-Confidence: 0.7010\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37505\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 17:06:02 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37505\n\nModified:\nreference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql\nreference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\nLog:\nsvn merge -r 37406:37407 https://source.sakaiproject.org/svn/reference/trunk\nU    docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql\nU    docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\nin-143-196:~/sakai_2-5-x/reference mmmay$ svn log -r 37406:37407 https://source.sakaiproject.org/svn/reference/trunk\n------------------------------------------------------------------------\nr37407 | bahollad@indiana.edu | 2007-10-26 08:51:00 -0400 (Fri, 26 Oct 2007) | 2 lines\n\nSAK-12027\nPossible problems with sakai 2.4->2.5 mysql conversion script\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 17:05:36 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 17:05:36 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 17:05:36 -0400\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby chaos.mail.umich.edu () with ESMTP id l9TL5ZoY008503;\n\tMon, 29 Oct 2007 17:05:35 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 47264B19.D666A.11330 ; \n\t29 Oct 2007 17:05:32 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E8C0661B7D;\n\tMon, 29 Oct 2007 03:31:18 +0000 (GMT)\nMessage-ID: <200710292102.l9TL2JXc020310@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 398\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 03:31:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1227A1C48E\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 21:05:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TL2Jco020312\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 17:02:19 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TL2JXc020310\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:02:19 -0400\nDate: Mon, 29 Oct 2007 17:02:19 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37504 - content/branches/sakai_2-5-x/content-tool/tool/src/java/org/sakaiproject/content/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 17:05:36 2007\nX-DSPAM-Confidence: 0.6569\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37504\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 17:02:18 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37504\n\nModified:\ncontent/branches/sakai_2-5-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java\nLog:\nin-143-196:~/sakai_2-5-x/content mmmay$ svn merge -r 37386:37387 https://source.sakaiproject.org/svn/content/trunk\nU    content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java\nin-143-196:~/sakai_2-5-x/content mmmay$ svn log -r 37386:37387 https://source.sakaiproject.org/svn/content/trunk\n------------------------------------------------------------------------\nr37387 | bkirschn@umich.edu | 2007-10-25 12:15:43 -0400 (Thu, 25 Oct 2007) | 1 line\n\nSAK-1357 update exception error handling\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 17:04:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 17:04:19 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 17:04:19 -0400\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby panther.mail.umich.edu () with ESMTP id l9TL4Ink005206;\n\tMon, 29 Oct 2007 17:04:18 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 47264ACC.8B92B.28866 ; \n\t29 Oct 2007 17:04:15 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 205444F968;\n\tMon, 29 Oct 2007 03:29:53 +0000 (GMT)\nMessage-ID: <200710292101.l9TL13bJ020298@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 751\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 03:29:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3D7961BAF9\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 21:03:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TL13N6020300\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 17:01:03 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TL13bJ020298\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 17:01:03 -0400\nDate: Mon, 29 Oct 2007 17:01:03 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37503 - in content/branches/sakai_2-5-x: content-bundles content-tool/tool/src/java/org/sakaiproject/content/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 17:04:19 2007\nX-DSPAM-Confidence: 0.7630\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37503\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 17:01:02 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37503\n\nModified:\ncontent/branches/sakai_2-5-x/content-bundles/types.properties\ncontent/branches/sakai_2-5-x/content-bundles/types_ar.properties\ncontent/branches/sakai_2-5-x/content-bundles/types_fr_CA.properties\ncontent/branches/sakai_2-5-x/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java\nLog:\nsvn merge -r 37380:37382 https://source.sakaiproject.org/svn/content/trunk\nU    content-bundles/types_ar.properties\nU    content-bundles/types_fr_CA.properties\nU    content-bundles/types.properties\nU    content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java\nin-143-196:~/sakai_2-5-x/content mmmay$ svn log -r 37380:37382 https://source.sakaiproject.org/svn/content/trunk\n------------------------------------------------------------------------\nr37381 | bkirschn@umich.edu | 2007-10-25 10:59:51 -0400 (Thu, 25 Oct 2007) | 1 line\n\nSAK-11814 formatting change: fix tabs only\n------------------------------------------------------------------------\nr37382 | bkirschn@umich.edu | 2007-10-25 11:14:13 -0400 (Thu, 25 Oct 2007) | 1 line\n\nSAK-1357 SAK-11814 fix uploading and editting UTF-8 content\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom kimsooil@bu.edu Mon Oct 29 16:58:52 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 16:58:52 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 16:58:52 -0400\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby flawless.mail.umich.edu () with ESMTP id l9TKwpAG029321;\n\tMon, 29 Oct 2007 16:58:51 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 47264986.3C913.15391 ; \n\t29 Oct 2007 16:58:49 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6E8ED59D7;\n\tMon, 29 Oct 2007 03:24:33 +0000 (GMT)\nMessage-ID: <200710292055.l9TKterX020284@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 266\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 03:24:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EA74A1BAF9\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 20:58:27 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TKtep6020286\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 16:55:40 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TKterX020284\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 16:55:40 -0400\nDate: Mon, 29 Oct 2007 16:55:40 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to kimsooil@bu.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: kimsooil@bu.edu\nSubject: [sakai] svn commit: r37502 - mailtool/trunk/mailtool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 16:58:52 2007\nX-DSPAM-Confidence: 0.9825\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37502\n\nAuthor: kimsooil@bu.edu\nDate: 2007-10-29 16:55:37 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37502\n\nModified:\nmailtool/trunk/mailtool/pom.xml\nLog:\nfix of SAK-11552\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 16:49:01 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 16:49:01 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 16:49:01 -0400\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby mission.mail.umich.edu () with ESMTP id l9TKn0sa003162;\n\tMon, 29 Oct 2007 16:49:00 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 47264736.5B4F8.28076 ; \n\t29 Oct 2007 16:48:57 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 70B7559D7;\n\tMon, 29 Oct 2007 03:14:31 +0000 (GMT)\nMessage-ID: <200710292045.l9TKjOrQ020260@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 323\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 03:14:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3362C1BAF9\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 20:48:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TKjOk4020262\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 16:45:24 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TKjOrQ020260\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 16:45:24 -0400\nDate: Mon, 29 Oct 2007 16:45:24 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 16:49:01 2007\nX-DSPAM-Confidence: 0.7624\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37501\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 16:45:21 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37501\n\nModified:\nsam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/ItemAuthorBean.java\nsam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/DeliveryBean.java\nsam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/ItemContentsBean.java\nsam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/AuthorAssessmentListener.java\nsam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ItemAddListener.java\nsam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/PublishAssessmentListener.java\nsam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/RemovePartListener.java\nsam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SaveAssessmentSettings.java\nsam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SavePartListener.java\nsam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/delivery/DeliveryActionListener.java\nsam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/samlite/AssessmentListener.java\nLog:\nin-143-196:~/sakai_2-5-x/sam mmmay$ svn merge -r 36267:36268 https://source.sakaiproject.org/svn/sam/trunk\nU    samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/author/ItemAuthorBean.java\nU    samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/ItemContentsBean.java\nU    samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/DeliveryBean.java\nU    samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/PublishAssessmentListener.java\nU    samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SaveAssessmentSettings.java\nU    samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/ItemAddListener.java\nU    samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/AuthorAssessmentListener.java\nU    samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/RemovePartListener.java\nU    samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SavePartListener.java\nU    samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/delivery/DeliveryActionListener.java\nU    samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/samlite/AssessmentListener.java\nin-143-196:~/sakai_2-5-x/sam mmmay$ svn log -r 36267:36268 https://source.sakaiproject.org/svn/sam/trunk\n------------------------------------------------------------------------\nr36268 | ktsao@stanford.edu | 2007-10-03 19:43:13 -0400 (Wed, 03 Oct 2007) | 1 line\n\nSAK-11137\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Mon Oct 29 16:36:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 16:36:13 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 16:36:13 -0400\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby faithful.mail.umich.edu () with ESMTP id l9TKaCcu023512;\n\tMon, 29 Oct 2007 16:36:12 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 47264435.BC626.29777 ; \n\t29 Oct 2007 16:36:08 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 65E506E371;\n\tMon, 29 Oct 2007 03:01:54 +0000 (GMT)\nMessage-ID: <200710292033.l9TKX3c7020234@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 516\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 03:01:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 50F5D1BADF\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 20:35:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TKX3hB020236\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 16:33:03 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TKX3c7020234\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 16:33:03 -0400\nDate: Mon, 29 Oct 2007 16:33:03 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37500 - assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 16:36:13 2007\nX-DSPAM-Confidence: 0.9862\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37500\n\nAuthor: zqian@umich.edu\nDate: 2007-10-29 16:33:02 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37500\n\nModified:\nassignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nfix to SAK-12047:Upload All/ When only 1 students information is uploaded, the data for other students is being wiped out\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 16:36:00 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 16:36:00 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 16:36:00 -0400\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby panther.mail.umich.edu () with ESMTP id l9TKZxID019356;\n\tMon, 29 Oct 2007 16:35:59 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 47264429.1F1B5.888 ; \n\t29 Oct 2007 16:35:56 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5AF2B4E864;\n\tMon, 29 Oct 2007 03:01:40 +0000 (GMT)\nMessage-ID: <200710292032.l9TKWnU0020222@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 578\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 03:01:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1428B1BADF\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 20:35:36 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TKWnkY020224\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 16:32:49 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TKWnU0020222\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 16:32:49 -0400\nDate: Mon, 29 Oct 2007 16:32:49 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37499 - sam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 16:36:00 2007\nX-DSPAM-Confidence: 0.7005\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37499\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 16:32:48 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37499\n\nModified:\nsam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/util/EmailBean.java\nLog:\nsvn merge -r 34599:34600 https://source.sakaiproject.org/svn/sam/trunk\nU    samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/DeliveryBean.java\nU    samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/util/EmailBean.java\nU    samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/PublishAssessmentListener.java\nin-143-196:~/sakai_2-5-x/sam mmmay$ svn log -r 34599:34600 https://source.sakaiproject.org/svn/sam/trunk\n------------------------------------------------------------------------\nr34600 | ktsao@stanford.edu | 2007-08-30 14:59:20 -0400 (Thu, 30 Aug 2007) | 1 line\n\nSAK-11137\n------------------------------------------------------------------------\n\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 16:19:59 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 16:19:59 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 16:19:59 -0400\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby godsend.mail.umich.edu () with ESMTP id l9TKJwep012444;\n\tMon, 29 Oct 2007 16:19:58 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 47264067.EA7E6.30532 ; \n\t29 Oct 2007 16:19:54 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6299B611A1;\n\tMon, 29 Oct 2007 02:45:37 +0000 (GMT)\nMessage-ID: <200710292016.l9TKGidX020173@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 529\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 02:45:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 14B7E1C482\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 20:19:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TKGi66020175\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 16:16:44 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TKGidX020173\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 16:16:44 -0400\nDate: Mon, 29 Oct 2007 16:16:44 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37498 - reference/branches/sakai_2-5-x/library/src/webapp/skin/default\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 16:19:59 2007\nX-DSPAM-Confidence: 0.7623\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37498\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 16:16:43 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37498\n\nModified:\nreference/branches/sakai_2-5-x/library/src/webapp/skin/default/portal.css\nLog:\nsvn merge -r 37383:37384 https://source.sakaiproject.org/svn/reference/trunk\nU    library/src/webapp/skin/default/portal.css\nin-143-196:~/sakai_2-5-x/reference mmmay$ svn log -r 37383:37384 https://source.sakaiproject.org/svn/reference/trunk\n------------------------------------------------------------------------\nr37384 | gsilver@umich.edu | 2007-10-25 11:56:07 -0400 (Thu, 25 Oct 2007) | 2 lines\n\nhttp://jira.sakaiproject.org/jira/browse/SAK-11701\n- tool icons\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 16:14:12 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 16:14:12 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 16:14:12 -0400\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby casino.mail.umich.edu () with ESMTP id l9TKEADS003623;\n\tMon, 29 Oct 2007 16:14:10 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 47263F0B.ACB1A.29292 ; \n\t29 Oct 2007 16:14:06 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BEEF3611A1;\n\tMon, 29 Oct 2007 02:39:45 +0000 (GMT)\nMessage-ID: <200710292010.l9TKAtaC020161@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 27\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 02:39:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DD84B1BAF3\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 20:13:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TKAtQb020163\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 16:10:55 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TKAtaC020161\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 16:10:55 -0400\nDate: Mon, 29 Oct 2007 16:10:55 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37497 - citations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/js\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 16:14:12 2007\nX-DSPAM-Confidence: 0.6566\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37497\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 16:10:54 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37497\n\nModified:\ncitations/branches/sakai_2-5-x/citations-tool/tool/src/webapp/js/citationscript.js\nLog:\nsvn merge -r 37364:37365 https://source.sakaiproject.org/svn/citations/trunk\nU    citations-tool/tool/src/webapp/js/citationscript.js\nin-143-196:~/sakai_2-5-x/citations mmmay$ svn log -r 37364:37365 https://source.sakaiproject.org/svn/citations/trunk\n------------------------------------------------------------------------\nr37365 | dsobiera@indiana.edu | 2007-10-24 15:54:09 -0400 (Wed, 24 Oct 2007) | 1 line\n\nSAK-12041 - Modified Javascript to disable all buttons BEFORE the AJAX load to prevent more than one button push at a time.\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 16:11:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 16:11:25 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 16:11:25 -0400\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby godsend.mail.umich.edu () with ESMTP id l9TKBP2D007730;\n\tMon, 29 Oct 2007 16:11:25 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 47263E65.9BB45.6812 ; \n\t29 Oct 2007 16:11:20 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E92B76E637;\n\tMon, 29 Oct 2007 02:37:00 +0000 (GMT)\nMessage-ID: <200710292008.l9TK8DLk020149@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 567\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 02:36:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A9A7D1C565\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 20:11:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TK8DiJ020151\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 16:08:13 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TK8DLk020149\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 16:08:13 -0400\nDate: Mon, 29 Oct 2007 16:08:13 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37496 - rwiki/branches/sakai_2-5-x/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 16:11:25 2007\nX-DSPAM-Confidence: 0.7006\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37496\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 16:08:12 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37496\n\nModified:\nrwiki/branches/sakai_2-5-x/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/RequestScopeSuperBean.java\nLog:\nsvn merge -r 37336:37337 https://source.sakaiproject.org/svn/rwiki/trunk\nU    rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/RequestScopeSuperBean.java\nin-143-196:~/sakai_2-5-x/rwiki mmmay$ svn log -r 37336:37337 https://source.sakaiproject.org/svn/rwiki/trunk\n------------------------------------------------------------------------\nr37336 | ian@caret.cam.ac.uk | 2007-10-23 17:16:48 -0400 (Tue, 23 Oct 2007) | 7 lines\n\nDiscovered that the eid and id usage was the wrong way round.\nFixed over entire preferences storage.\n\nhttp://jira.sakaiproject.org/jira/browse/SAK-11988\n\n\n\n------------------------------------------------------------------------\nr37337 | ian@caret.cam.ac.uk | 2007-10-23 17:33:59 -0400 (Tue, 23 Oct 2007) | 4 lines\n\nSAK-11988\nMissed eclipse file\n\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 16:10:03 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 16:10:03 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 16:10:03 -0400\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby fan.mail.umich.edu () with ESMTP id l9TKA21G010777;\n\tMon, 29 Oct 2007 16:10:02 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 47263E11.4678.8751 ; \n\t29 Oct 2007 16:09:56 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EC1286E67E;\n\tMon, 29 Oct 2007 02:35:41 +0000 (GMT)\nMessage-ID: <200710292006.l9TK6sUa020125@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 471\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 02:35:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 818501BAF3\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 20:09:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TK6sna020127\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 16:06:54 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TK6sUa020125\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 16:06:54 -0400\nDate: Mon, 29 Oct 2007 16:06:54 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 16:10:03 2007\nX-DSPAM-Confidence: 0.7005\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37495\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 16:06:52 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37495\n\nModified:\nrwiki/branches/sakai_2-5-x/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/SiteEmailNotificationRWiki.java\nrwiki/branches/sakai_2-5-x/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/RequestScopeSuperBean.java\nrwiki/branches/sakai_2-5-x/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/UpdatePreferencesCommand.java\nLog:\nsvn merge -r 37335:37336 https://source.sakaiproject.org/svn/rwiki/trunk\nU    rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/RequestScopeSuperBean.java\nU    rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/UpdatePreferencesCommand.java\nU    rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/SiteEmailNotificationRWiki.java\nin-143-196:~/sakai_2-5-x/rwiki mmmay$ svn log -r 37335:37336 https://source.sakaiproject.org/svn/rwiki/trunk\n------------------------------------------------------------------------\nr37336 | ian@caret.cam.ac.uk | 2007-10-23 17:16:48 -0400 (Tue, 23 Oct 2007) | 7 lines\n\nDiscovered that the eid and id usage was the wrong way round.\nFixed over entire preferences storage.\n\nhttp://jira.sakaiproject.org/jira/browse/SAK-11988\n\n\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 16:08:52 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 16:08:52 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 16:08:52 -0400\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby awakenings.mail.umich.edu () with ESMTP id l9TK8pkn007832;\n\tMon, 29 Oct 2007 16:08:51 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 47263DCC.8AD76.31569 ; \n\t29 Oct 2007 16:08:48 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E2B57611A1;\n\tMon, 29 Oct 2007 02:34:31 +0000 (GMT)\nMessage-ID: <200710292005.l9TK5fTo020112@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 671\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 02:34:15 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4641B1BAF3\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 20:08:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TK5gZZ020114\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 16:05:42 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TK5fTo020112\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 16:05:41 -0400\nDate: Mon, 29 Oct 2007 16:05:41 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37494 - rwiki/branches/sakai_2-5-x/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 16:08:52 2007\nX-DSPAM-Confidence: 0.7620\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37494\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 16:05:40 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37494\n\nModified:\nrwiki/branches/sakai_2-5-x/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/SiteEmailNotificationRWiki.java\nLog:\nsvn merge -r 37223:37224 https://source.sakaiproject.org/svn/rwiki/trunk\nU    rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/SiteEmailNotificationRWiki.java\nin-143-196:~/sakai_2-5-x/rwiki mmmay$ svn log -r 37223:37224 https://source.sakaiproject.org/svn/rwiki/trunk\n------------------------------------------------------------------------\nr37224 | ian@caret.cam.ac.uk | 2007-10-23 09:10:02 -0400 (Tue, 23 Oct 2007) | 6 lines\n\nProblem with confusion over user.getId() and user.getEid() causing emails not to go out.\nThis should perhapse be back ported into 2.4.x\n\nhttp://jira.sakaiproject.org/jira/browse/SAK-11988\n\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 16:05:04 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 16:05:04 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 16:05:04 -0400\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby score.mail.umich.edu () with ESMTP id l9TK53t6007803;\n\tMon, 29 Oct 2007 16:05:03 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 47263CE9.51704.7221 ; \n\t29 Oct 2007 16:05:00 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 476046E4E8;\n\tMon, 29 Oct 2007 02:30:46 +0000 (GMT)\nMessage-ID: <200710292001.l9TK1tFt020100@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 113\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 02:30:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7FAC21BAF3\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 20:04:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TK1tL4020102\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 16:01:55 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TK1tFt020100\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 16:01:55 -0400\nDate: Mon, 29 Oct 2007 16:01:55 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37493 - db/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 16:05:04 2007\nX-DSPAM-Confidence: 0.7616\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37493\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 16:01:53 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37493\n\nModified:\ndb/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionController.java\ndb/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionDriver.java\ndb/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionException.java\ndb/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionHandler.java\ndb/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/UpgradeSchema.java\nLog:\nsvn merge -r 37346:37347 https://source.sakaiproject.org/svn/db/trunk\nU    db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionDriver.java\nU    db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionHandler.java\nU    db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionException.java\nU    db-util/conversion/src/java/org/sakaiproject/util/conversion/UpgradeSchema.java\nU    db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionController.java\nin-143-196:~/sakai_2-5-x/db mmmay$ svn log -r 37346:37347 https://source.sakaiproject.org/svn/db/trunk\n------------------------------------------------------------------------\nr37347 | ian@caret.cam.ac.uk | 2007-10-24 04:04:55 -0400 (Wed, 24 Oct 2007) | 5 lines\n\nhttp://jira.sakaiproject.org/jira/browse/SAK-12031\n\nMissed build errors after syncing with assignments.\n\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 16:03:46 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 16:03:46 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 16:03:46 -0400\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby awakenings.mail.umich.edu () with ESMTP id l9TK3jaO003830;\n\tMon, 29 Oct 2007 16:03:45 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 47263C9A.5B748.31582 ; \n\t29 Oct 2007 16:03:41 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 54C276E635;\n\tMon, 29 Oct 2007 02:29:27 +0000 (GMT)\nMessage-ID: <200710292000.l9TK0Y6g020085@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 908\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 02:29:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 09F4E1BAF3\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 20:03:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TK0Yxe020087\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 16:00:34 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TK0Y6g020085\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 16:00:34 -0400\nDate: Mon, 29 Oct 2007 16:00:34 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37492 - assignment/branches/sakai_2-5-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 16:03:46 2007\nX-DSPAM-Confidence: 0.7621\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37492\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 16:00:33 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37492\n\nModified:\nassignment/branches/sakai_2-5-x/runconversion-2.4.x.sh\nassignment/branches/sakai_2-5-x/runconversion.sh\nLog:\nin-143-196:~/sakai_2-5-x/assignment mmmay$ svn merge -r 37343:37344 https://source.sakaiproject.org/svn/assignment/trunk\nU    runconversion.sh\nU    runconversion-2.4.x.sh\nin-143-196:~/sakai_2-5-x/assignment mmmay$ svn log -r 37343:37344 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr37343 | ian@caret.cam.ac.uk | 2007-10-23 19:44:33 -0400 (Tue, 23 Oct 2007) | 5 lines\n\nMoved the conversion framework into sakai-db-conversion\n\nhttp://jira.sakaiproject.org/jira/browse/SAK-12031\n\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 16:02:14 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 16:02:14 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 16:02:14 -0400\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby mission.mail.umich.edu () with ESMTP id l9TK2EqS006306;\n\tMon, 29 Oct 2007 16:02:14 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 47263C40.17EBA.10101 ; \n\t29 Oct 2007 16:02:10 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 47BC65CBA4;\n\tMon, 29 Oct 2007 02:27:55 +0000 (GMT)\nMessage-ID: <200710291958.l9TJwvN1020072@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 563\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 02:27:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 88BCC1BAF3\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 20:01:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TJwvBT020074\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 15:58:57 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TJwvN1020072\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 15:58:57 -0400\nDate: Mon, 29 Oct 2007 15:58:57 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 16:02:14 2007\nX-DSPAM-Confidence: 0.7618\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37491\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 15:58:55 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37491\n\nRemoved:\nassignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/SchemaConversionHandler.java\nassignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionController.java\nassignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionDriver.java\nassignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionException.java\nassignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/UpgradeSchema.java\nModified:\nassignment/branches/sakai_2-5-x/assignment-impl/impl/pom.xml\nassignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/CombineDuplicateSubmissionsConversionHandler.java\nassignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/RemoveDuplicateSubmissionsConversionHandler.java\nassignment/branches/sakai_2-5-x/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SubmitterIdAssignmentsConversionHandler.java\nLog:\nsvn merge -r 37342:37343 https://source.sakaiproject.org/svn/assignment/trunk\nD    assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionDriver.java\nD    assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionException.java\nD    assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/UpgradeSchema.java\nD    assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionController.java\nU    assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/CombineDuplicateSubmissionsConversionHandler.java\nU    assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/RemoveDuplicateSubmissionsConversionHandler.java\nU    assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SubmitterIdAssignmentsConversionHandler.java\nD    assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/SchemaConversionHandler.java\nU    assignment-impl/impl/pom.xml\nin-143-196:~/sakai_2-5-x/assignment mmmay$ svn log -r 37342:37343 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr37343 | ian@caret.cam.ac.uk | 2007-10-23 19:44:33 -0400 (Tue, 23 Oct 2007) | 5 lines\n\nMoved the conversion framework into sakai-db-conversion\n\nhttp://jira.sakaiproject.org/jira/browse/SAK-12031\n\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 15:58:46 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 15:58:46 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 15:58:46 -0400\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby casino.mail.umich.edu () with ESMTP id l9TJwjVo025320;\n\tMon, 29 Oct 2007 15:58:46 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 47263B62.D8405.4606 ; \n\t29 Oct 2007 15:58:30 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 584EC4EAA9;\n\tMon, 29 Oct 2007 02:24:14 +0000 (GMT)\nMessage-ID: <200710291955.l9TJtNQm020050@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 509\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 02:24:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1C61A1BAF3\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 19:58:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TJtNWx020052\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 15:55:23 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TJtNQm020050\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 15:55:23 -0400\nDate: Mon, 29 Oct 2007 15:55:23 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 15:58:46 2007\nX-DSPAM-Confidence: 0.7618\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37490\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 15:55:21 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37490\n\nAdded:\ndb/branches/sakai_2-5-x/db-util/conversion/\ndb/branches/sakai_2-5-x/db-util/conversion/pom.xml\ndb/branches/sakai_2-5-x/db-util/conversion/runconversion.sh\ndb/branches/sakai_2-5-x/db-util/conversion/src/\ndb/branches/sakai_2-5-x/db-util/conversion/src/java/\ndb/branches/sakai_2-5-x/db-util/conversion/src/java/org/\ndb/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/\ndb/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/\ndb/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/\ndb/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/CheckConnection.java\ndb/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionController.java\ndb/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionDriver.java\ndb/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionException.java\ndb/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionHandler.java\ndb/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/UpgradeSchema.java\ndb/branches/sakai_2-5-x/db-util/storage/src/java/org/sakaiproject/util/ByteStorageConversion.java\nRemoved:\ndb/branches/sakai_2-5-x/db-util/conversion/pom.xml\ndb/branches/sakai_2-5-x/db-util/conversion/runconversion.sh\ndb/branches/sakai_2-5-x/db-util/conversion/src/\ndb/branches/sakai_2-5-x/db-util/conversion/src/java/\ndb/branches/sakai_2-5-x/db-util/conversion/src/java/org/\ndb/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/\ndb/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/\ndb/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/\ndb/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/CheckConnection.java\ndb/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionController.java\ndb/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionDriver.java\ndb/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionException.java\ndb/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionHandler.java\ndb/branches/sakai_2-5-x/db-util/conversion/src/java/org/sakaiproject/util/conversion/UpgradeSchema.java\nModified:\ndb/branches/sakai_2-5-x/db-util/.classpath\ndb/branches/sakai_2-5-x/pom.xml\nLog:\nsvn merge -r 37341:37342 https://source.sakaiproject.org/svn/db/trunk     \nU    db-util/.classpath\nA    db-util/storage/src/java/org/sakaiproject/util/ByteStorageConversion.java\nA    db-util/conversion\nA    db-util/conversion/runconversion.sh\nA    db-util/conversion/src\nA    db-util/conversion/src/java\nA    db-util/conversion/src/java/org\nA    db-util/conversion/src/java/org/sakaiproject\nA    db-util/conversion/src/java/org/sakaiproject/util\nA    db-util/conversion/src/java/org/sakaiproject/util/conversion\nA    db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionDriver.java\nA    db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionHandler.java\nA    db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionException.java\nA    db-util/conversion/src/java/org/sakaiproject/util/conversion/UpgradeSchema.java\nA    db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionController.java\nA    db-util/conversion/src/java/org/sakaiproject/util/conversion/CheckConnection.java\nA    db-util/conversion/pom.xml\nU    pom.xml\nin-143-196:~/sakai_2-5-x/db mmmay$ svn log -r 37341:37342 https://source.sakaiproject.org/svn/db/trunk\n------------------------------------------------------------------------\nr37342 | ian@caret.cam.ac.uk | 2007-10-23 19:43:14 -0400 (Tue, 23 Oct 2007) | 5 lines\n\nMoved conversion utility into sakai-db-conversion\n\nhttp://jira.sakaiproject.org/jira/browse/SAK-12031\n\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom kimsooil@bu.edu Mon Oct 29 15:50:41 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 15:50:41 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 15:50:41 -0400\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby faithful.mail.umich.edu () with ESMTP id l9TJodEW025126;\n\tMon, 29 Oct 2007 15:50:39 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 4726398A.89A6F.6172 ; \n\t29 Oct 2007 15:50:37 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id ABADF59D7;\n\tMon, 29 Oct 2007 02:16:19 +0000 (GMT)\nMessage-ID: <200710291944.l9TJiVQl019968@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 789\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 02:13:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 60D021B9B9\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 19:47:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TJiVGK019970\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 15:44:31 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TJiVQl019968\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 15:44:31 -0400\nDate: Mon, 29 Oct 2007 15:44:31 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to kimsooil@bu.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: kimsooil@bu.edu\nSubject: [sakai] svn commit: r37486 - mailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 15:50:41 2007\nX-DSPAM-Confidence: 0.9835\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37486\n\nAuthor: kimsooil@bu.edu\nDate: 2007-10-29 15:44:28 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37486\n\nModified:\nmailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java\nLog:\nApplied patch in SAK-11181\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Mon Oct 29 15:33:35 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 15:33:35 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 15:33:35 -0400\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby jacknife.mail.umich.edu () with ESMTP id l9TJXYSc017838;\n\tMon, 29 Oct 2007 15:33:35 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 47263583.4DF18.14890 ; \n\t29 Oct 2007 15:33:31 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0220C6E635;\n\tMon, 29 Oct 2007 01:59:12 +0000 (GMT)\nMessage-ID: <200710291930.l9TJUL9h019953@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 865\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 01:58:57 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id F02971BAC9\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 19:33:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TJULv5019955\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 15:30:21 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TJUL9h019953\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 15:30:21 -0400\nDate: Mon, 29 Oct 2007 15:30:21 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37485 - memory/branches/SAK-11913/memory-test/impl/src/java/org/sakaiproject/memory/test\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 15:33:35 2007\nX-DSPAM-Confidence: 0.8472\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37485\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-29 15:30:15 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37485\n\nAdded:\nmemory/branches/SAK-11913/memory-test/impl/src/java/org/sakaiproject/memory/test/HeavyLoadTestMemoryService.java\nModified:\nmemory/branches/SAK-11913/memory-test/impl/src/java/org/sakaiproject/memory/test/LoadTestMemoryService.java\nLog:\nSAK-11913: Added first part of larger scale concurrent test\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Mon Oct 29 15:31:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 15:31:51 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 15:31:51 -0400\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby jacknife.mail.umich.edu () with ESMTP id l9TJVoYo016324;\n\tMon, 29 Oct 2007 15:31:50 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 47263501.BF2EC.3023 ; \n\t29 Oct 2007 15:31:17 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2FFB86E3A6;\n\tMon, 29 Oct 2007 01:56:52 +0000 (GMT)\nMessage-ID: <200710291927.l9TJRrmc019941@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 810\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 01:56:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4FCC71BAC9\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 19:30:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TJRrxb019943\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 15:27:53 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TJRrmc019941\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 15:27:53 -0400\nDate: Mon, 29 Oct 2007 15:27:53 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37484 - ctools/branches/ctools_2-4/ctools-reference/config\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 15:31:51 2007\nX-DSPAM-Confidence: 0.9874\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37484\n\nAuthor: dlhaines@umich.edu\nDate: 2007-10-29 15:27:50 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37484\n\nAdded:\nctools/branches/ctools_2-4/ctools-reference/config/09PrepopulatePages.properties\nLog:\nCTools: add UMich wiki default pages to branch.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Mon Oct 29 15:18:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 15:18:17 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 15:18:17 -0400\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby score.mail.umich.edu () with ESMTP id l9TJIGtF005397;\n\tMon, 29 Oct 2007 15:18:16 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 472631F0.37945.8763 ; \n\t29 Oct 2007 15:18:12 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DFFE16E5CD;\n\tMon, 29 Oct 2007 01:43:56 +0000 (GMT)\nMessage-ID: <200710291915.l9TJF7Sk019922@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 655\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 01:43:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 178081C3FE\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 19:17:54 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TJF7C3019924\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 15:15:07 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TJF7Sk019922\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 15:15:07 -0400\nDate: Mon, 29 Oct 2007 15:15:07 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37483 - in assignment/trunk/assignment-tool/tool/src: java/org/sakaiproject/assignment/tool webapp/vm/assignment\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 15:18:17 2007\nX-DSPAM-Confidence: 0.9856\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37483\n\nAuthor: zqian@umich.edu\nDate: 2007-10-29 15:15:04 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37483\n\nModified:\nassignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nassignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm\nLog:\nfix to SAK-12075:assignment tool requires both 'asn.new' and 'asn.grade' for a TA to see the Grade link\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mmmay@indiana.edu Mon Oct 29 15:17:29 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 15:17:29 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 15:17:29 -0400\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby casino.mail.umich.edu () with ESMTP id l9TJHSpZ026567;\n\tMon, 29 Oct 2007 15:17:29 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 472631C2.63783.13780 ; \n\t29 Oct 2007 15:17:26 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 862AA52403;\n\tMon, 29 Oct 2007 01:43:10 +0000 (GMT)\nMessage-ID: <200710291914.l9TJE9lc019910@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 202\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 01:42:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 51FA41C3FE\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 19:16:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TJE9Ma019912\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 15:14:09 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TJE9lc019910\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 15:14:09 -0400\nDate: Mon, 29 Oct 2007 15:14:09 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mmmay@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: mmmay@indiana.edu\nSubject: [sakai] svn commit: r37482 - util/branches/sakai_2-5-x/util-util/util/src/java/org/sakaiproject/util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 15:17:29 2007\nX-DSPAM-Confidence: 0.6567\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37482\n\nAuthor: mmmay@indiana.edu\nDate: 2007-10-29 15:14:07 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37482\n\nModified:\nutil/branches/sakai_2-5-x/util-util/util/src/java/org/sakaiproject/util/FormattedText.java\nLog:\nin-143-196:~/sakai_2-5-x/util mmmay$ svn merge -r 37176:37177 https://source.sakaiproject.org/svn/util/trunk\nU    util-util/util/src/java/org/sakaiproject/util/FormattedText.java\nin-143-196:~/sakai_2-5-x/util mmmay$ svn log -r 37176:37177 https://source.sakaiproject.org/svn/util/trunk\n------------------------------------------------------------------------\nr37177 | joshua.ryan@asu.edu | 2007-10-22 17:28:52 -0400 (Mon, 22 Oct 2007) | 2 lines\n\nSAK-11770 Allow urls with http in them\n\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Mon Oct 29 15:16:04 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 15:16:04 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 15:16:04 -0400\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby godsend.mail.umich.edu () with ESMTP id l9TJG3Yc003831;\n\tMon, 29 Oct 2007 15:16:03 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 47263169.B2F3F.14205 ; \n\t29 Oct 2007 15:15:56 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9D3B94E77F;\n\tMon, 29 Oct 2007 01:41:41 +0000 (GMT)\nMessage-ID: <200710291912.l9TJCj7S019877@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 165\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 01:41:23 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2DF181C3FE\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 19:15:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TJCkGg019879\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 15:12:46 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TJCj7S019877\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 15:12:45 -0400\nDate: Mon, 29 Oct 2007 15:12:45 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37481 - ctools/trunk/ctools-reference/config\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 15:16:04 2007\nX-DSPAM-Confidence: 0.9866\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37481\n\nAuthor: dlhaines@umich.edu\nDate: 2007-10-29 15:12:43 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37481\n\nAdded:\nctools/trunk/ctools-reference/config/09PrepopulatePages.properties\nLog:\nCTools: add new custom wiki page.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Mon Oct 29 14:47:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 14:47:17 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 14:47:17 -0400\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby jacknife.mail.umich.edu () with ESMTP id l9TIlGuG015917;\n\tMon, 29 Oct 2007 14:47:16 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 47262A90.61A9A.4774 ; \n\t29 Oct 2007 14:46:43 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 519E865D28;\n\tMon, 29 Oct 2007 01:12:20 +0000 (GMT)\nMessage-ID: <200710291843.l9TIhOTq019804@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 241\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 01:12:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5883612830\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 18:46:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TIhOjk019809\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 14:43:24 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TIhOTq019804\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 14:43:24 -0400\nDate: Mon, 29 Oct 2007 14:43:24 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 14:47:17 2007\nX-DSPAM-Confidence: 0.7566\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37479\n\nAuthor: cwen@iupui.edu\nDate: 2007-10-29 14:30:26 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37479\n\nModified:\ngradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/GradebookManager.java\ngradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\ngradebook/trunk/app/business/src/sql/mysql/SAK-10427.sql\ngradebook/trunk/app/business/src/sql/oracle/SAK-10427.sql\ngradebook/trunk/app/standalone-app/src/test/org/sakaiproject/tool/gradebook/test/GradebookManagerOPCTest.java\ngradebook/trunk/app/ui/src/bundle/org/sakaiproject/tool/gradebook/bundle/Messages.properties\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentBean.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/AssignmentDetailsBean.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/GradebookSetupBean.java\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/ViewByStudentBean.java\ngradebook/trunk/app/ui/src/webapp/assignmentDetails.jsp\ngradebook/trunk/app/ui/src/webapp/gradebookSetup.jsp\ngradebook/trunk/app/ui/src/webapp/inc/assignmentEditing.jspf\ngradebook/trunk/service/api/src/java/org/sakaiproject/service/gradebook/shared/GradebookService.java\ngradebook/trunk/service/hibernate/src/hibernate/org/sakaiproject/tool/gradebook/GradeRecord.hbm.xml\ngradebook/trunk/service/hibernate/src/java/org/sakaiproject/tool/gradebook/Assignment.java\ngradebook/trunk/service/hibernate/src/java/org/sakaiproject/tool/gradebook/AssignmentGradeRecord.java\ngradebook/trunk/service/hibernate/src/java/org/sakaiproject/tool/gradebook/Category.java\ngradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/BaseHibernateManager.java\ngradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookServiceHibernateImpl.java\nLog:\nhttp://128.196.219.68/jira/browse/SAK-10427\nSAK-10427\n=>\nallow creating non-calculated items without include those\nitems for course grade calculation or stats.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom kimsooil@bu.edu Mon Oct 29 14:47:14 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 14:47:14 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 14:47:14 -0400\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby chaos.mail.umich.edu () with ESMTP id l9TIlEoF011110;\n\tMon, 29 Oct 2007 14:47:14 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 47262A88.A1E2B.4495 ; \n\t29 Oct 2007 14:46:40 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7B4B66E5E5;\n\tMon, 29 Oct 2007 01:12:20 +0000 (GMT)\nMessage-ID: <200710291843.l9TIhOQd019807@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 415\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 01:12:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7F8A31C3DD\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 18:46:11 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TIhOCo019810\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 14:43:24 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TIhOQd019807\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 14:43:24 -0400\nDate: Mon, 29 Oct 2007 14:43:24 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to kimsooil@bu.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: kimsooil@bu.edu\nSubject: [sakai] svn commit: r37480 - mailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 14:47:14 2007\nX-DSPAM-Confidence: 0.9855\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37480\n\nAuthor: kimsooil@bu.edu\nDate: 2007-10-29 14:43:21 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37480\n\nModified:\nmailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java\nLog:\nfix SAK-11052 - correct incorrect jira #(11046 -> 11052)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom kimsooil@bu.edu Mon Oct 29 14:32:18 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 14:32:18 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 14:32:18 -0400\nReceived: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43])\n\tby fan.mail.umich.edu () with ESMTP id l9TIWIHo008479;\n\tMon, 29 Oct 2007 14:32:18 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY serenity.mr.itd.umich.edu ID 47262728.52808.8333 ; \n\t29 Oct 2007 14:32:11 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0FADE6E567;\n\tMon, 29 Oct 2007 00:57:57 +0000 (GMT)\nMessage-ID: <200710291829.l9TIT35m019762@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 373\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 00:57:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 02B281B94C\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 18:31:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TIT4GY019764\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 14:29:04 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TIT35m019762\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 14:29:03 -0400\nDate: Mon, 29 Oct 2007 14:29:03 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to kimsooil@bu.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: kimsooil@bu.edu\nSubject: [sakai] svn commit: r37478 - mailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 14:32:18 2007\nX-DSPAM-Confidence: 0.9788\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37478\n\nAuthor: kimsooil@bu.edu\nDate: 2007-10-29 14:29:00 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37478\n\nModified:\nmailtool/trunk/mailtool/src/java/org/sakaiproject/tool/mailtool/Mailtool.java\nLog:\nfix SAK-11046\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom kimsooil@bu.edu Mon Oct 29 14:28:46 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 14:28:46 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 14:28:46 -0400\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby panther.mail.umich.edu () with ESMTP id l9TISkkK020429;\n\tMon, 29 Oct 2007 14:28:46 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 47262654.6E168.31431 ; \n\t29 Oct 2007 14:28:43 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 94E7F6AC9B;\n\tMon, 29 Oct 2007 00:54:25 +0000 (GMT)\nMessage-ID: <200710291825.l9TIPV65019739@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 435\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 00:54:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A12F21B94C\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 18:28:18 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TIPVga019741\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 14:25:31 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TIPV65019739\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 14:25:31 -0400\nDate: Mon, 29 Oct 2007 14:25:31 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to kimsooil@bu.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: kimsooil@bu.edu\nSubject: [sakai] svn commit: r37477 - mailtool/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 14:28:46 2007\nX-DSPAM-Confidence: 0.9818\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37477\n\nAuthor: kimsooil@bu.edu\nDate: 2007-10-29 14:25:28 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37477\n\nRemoved:\nmailtool/branches/2.5.x/\nLog:\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom hu2@iupui.edu Mon Oct 29 14:09:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 14:09:42 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 14:09:42 -0400\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby jacknife.mail.umich.edu () with ESMTP id l9TI9fl9024790;\n\tMon, 29 Oct 2007 14:09:41 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 472621DF.30670.2371 ; \n\t29 Oct 2007 14:09:38 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 280296E58D;\n\tMon, 29 Oct 2007 00:35:21 +0000 (GMT)\nMessage-ID: <200710291806.l9TI6SbG019698@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 789\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 00:35:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C7CAA1BA77\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 18:09:14 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TI6SGX019700\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 14:06:28 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TI6SbG019698\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 14:06:28 -0400\nDate: Mon, 29 Oct 2007 14:06:28 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to hu2@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: hu2@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 14:09:42 2007\nX-DSPAM-Confidence: 0.9829\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37475\n\nAuthor: hu2@iupui.edu\nDate: 2007-10-29 14:06:25 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37475\n\nModified:\nmsgcntr/trunk/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages.properties\nmsgcntr/trunk/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java\nmsgcntr/trunk/messageforums-app/src/webapp/WEB-INF/faces-config.xml\nmsgcntr/trunk/messageforums-app/src/webapp/jsp/compose.jsp\nmsgcntr/trunk/messageforums-app/src/webapp/jsp/privateMsg/pvtMsgDetail.jsp\nmsgcntr/trunk/messageforums-app/src/webapp/jsp/privateMsg/pvtMsgHpView.jsp\nmsgcntr/trunk/messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/MessageForumsTypeManagerImpl.java\nmsgcntr/trunk/messageforums-component-impl/src/java/org/sakaiproject/component/app/messageforums/ui/PrivateMessageManagerImpl.java\nmsgcntr/trunk/messageforums-hbm/src/java/org/sakaiproject/component/app/messageforums/dao/hibernate/PrivateMessageImpl.java\nLog:\nSAK-12073\nhttp://jira.sakaiproject.org/jira/browse/SAK-12073\nAbility to \"Reply All\" in the Messages tool\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Mon Oct 29 14:06:52 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 14:06:52 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 14:06:52 -0400\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby panther.mail.umich.edu () with ESMTP id l9TI6qUp006050;\n\tMon, 29 Oct 2007 14:06:52 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 47262136.8219.28853 ; \n\t29 Oct 2007 14:06:48 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5B4216E1A2;\n\tMon, 29 Oct 2007 00:32:35 +0000 (GMT)\nMessage-ID: <200710291803.l9TI3maw019674@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 629\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 00:32:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8EAA61BA32\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 18:06:34 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TI3mcD019676\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 14:03:48 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TI3maw019674\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 14:03:48 -0400\nDate: Mon, 29 Oct 2007 14:03:48 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37473 - site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 14:06:52 2007\nX-DSPAM-Confidence: 0.9885\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37473\n\nAuthor: zqian@umich.edu\nDate: 2007-10-29 14:03:46 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37473\n\nModified:\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-newSiteCourseManual.vm\nLog:\nfix to SAK-12074: cannot drop added sections in site setup\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom kimsooil@bu.edu Mon Oct 29 14:05:47 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 14:05:47 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 14:05:47 -0400\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby chaos.mail.umich.edu () with ESMTP id l9TI5kkI016846;\n\tMon, 29 Oct 2007 14:05:46 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 472620F5.4A917.5275 ; \n\t29 Oct 2007 14:05:44 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 89B3D52403;\n\tMon, 29 Oct 2007 00:31:29 +0000 (GMT)\nMessage-ID: <200710291802.l9TI2aCe019658@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 832\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 00:31:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 902841BA32\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 18:05:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TI2a2D019660\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 14:02:36 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TI2aCe019658\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 14:02:36 -0400\nDate: Mon, 29 Oct 2007 14:02:36 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to kimsooil@bu.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: kimsooil@bu.edu\nSubject: [sakai] svn commit: r37472 - mailtool/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 14:05:47 2007\nX-DSPAM-Confidence: 0.9835\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37472\n\nAuthor: kimsooil@bu.edu\nDate: 2007-10-29 14:02:33 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37472\n\nAdded:\nmailtool/branches/2.5.x/\nLog:\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Mon Oct 29 14:03:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 14:03:43 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 14:03:43 -0400\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby mission.mail.umich.edu () with ESMTP id l9TI3hG6021635;\n\tMon, 29 Oct 2007 14:03:43 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 4726206E.27CC7.16858 ; \n\t29 Oct 2007 14:03:29 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A2E475A5E9;\n\tMon, 29 Oct 2007 00:29:12 +0000 (GMT)\nMessage-ID: <200710291800.l9TI0Lp1019631@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 714\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 00:28:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C3F27B576\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 18:03:07 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TI0Lf9019633\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 14:00:22 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TI0Lp1019631\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 14:00:21 -0400\nDate: Mon, 29 Oct 2007 14:00:21 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37470 - memory/branches/SAK-11913/memory-test/impl/src/java/org/sakaiproject/memory/test\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 14:03:43 2007\nX-DSPAM-Confidence: 0.9841\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37470\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-29 14:00:17 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37470\n\nModified:\nmemory/branches/SAK-11913/memory-test/impl/src/java/org/sakaiproject/memory/test/LoadTestMemoryService.java\nLog:\nSAK-11913: Added in viable tests to compare the various caching setups\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Mon Oct 29 14:03:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 14:03:25 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 14:03:25 -0400\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby score.mail.umich.edu () with ESMTP id l9TI3ORd019185;\n\tMon, 29 Oct 2007 14:03:24 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 47262066.439EA.27775 ; \n\t29 Oct 2007 14:03:21 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 18D6E4EB4A;\n\tMon, 29 Oct 2007 00:29:05 +0000 (GMT)\nMessage-ID: <200710291800.l9TI0DmI019618@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 606\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 00:28:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E93AEB576\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 18:02:59 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TI0DJk019620\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 14:00:14 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TI0DmI019618\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 14:00:13 -0400\nDate: Mon, 29 Oct 2007 14:00:13 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37469 - in memory/branches/SAK-11913/memory-api/api/src/java: . org/sakaiproject/memory/api\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 14:03:25 2007\nX-DSPAM-Confidence: 0.9852\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37469\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-29 14:00:07 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37469\n\nModified:\nmemory/branches/SAK-11913/memory-api/api/src/java/ehcache.xml\nmemory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/Cacher.java\nLog:\nSAK-11913: Added in viable tests to compare the various caching setups\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Mon Oct 29 14:03:11 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 14:03:11 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 14:03:11 -0400\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby casino.mail.umich.edu () with ESMTP id l9TI3Aot030425;\n\tMon, 29 Oct 2007 14:03:10 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 47262058.65B80.14682 ; \n\t29 Oct 2007 14:03:07 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7431D52402;\n\tMon, 29 Oct 2007 00:28:52 +0000 (GMT)\nMessage-ID: <200710291800.l9TI03WH019606@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 325\n          for <source@collab.sakaiproject.org>;\n          Mon, 29 Oct 2007 00:28:40 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 615661B9F1\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 18:02:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TI03dG019608\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 14:00:03 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TI03WH019606\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 14:00:03 -0400\nDate: Mon, 29 Oct 2007 14:00:03 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37468 - memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 14:03:11 2007\nX-DSPAM-Confidence: 0.9844\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37468\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-29 13:59:58 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37468\n\nModified:\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/BasicMemoryService.java\nLog:\nSAK-11913: Added in viable tests to compare the various caching setups\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Mon Oct 29 13:31:21 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 13:31:21 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 13:31:21 -0400\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby flawless.mail.umich.edu () with ESMTP id l9THVJGH025015;\n\tMon, 29 Oct 2007 13:31:19 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 472618DD.48B14.14092 ; \n\t29 Oct 2007 13:31:14 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3D6B86DC94;\n\tSun, 28 Oct 2007 23:58:56 +0000 (GMT)\nMessage-ID: <200710291728.l9THS74S019459@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 560\n          for <source@collab.sakaiproject.org>;\n          Sun, 28 Oct 2007 23:58:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DF1141C3A3\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 17:30:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9THS7Xl019461\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 13:28:07 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9THS74S019459\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 13:28:07 -0400\nDate: Mon, 29 Oct 2007 13:28:07 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r37465 - sam/branches\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 13:31:21 2007\nX-DSPAM-Confidence: 0.9841\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37465\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-10-29 13:28:03 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37465\n\nAdded:\nsam/branches/SAK-12065/\nLog:\nNew branch of T&Q for David Horwitz\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Mon Oct 29 13:27:36 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 13:27:36 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 13:27:36 -0400\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby godsend.mail.umich.edu () with ESMTP id l9THRZ8S001897;\n\tMon, 29 Oct 2007 13:27:35 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 472617FF.1BAF0.27643 ; \n\t29 Oct 2007 13:27:30 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 38DE36E4CE;\n\tSun, 28 Oct 2007 23:55:07 +0000 (GMT)\nMessage-ID: <200710291724.l9THOFm4019447@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 544\n          for <source@collab.sakaiproject.org>;\n          Sun, 28 Oct 2007 23:54:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id F3448131CD\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 17:27:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9THOF9S019449\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 13:24:15 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9THOFm4019447\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 13:24:15 -0400\nDate: Mon, 29 Oct 2007 13:24:15 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37464 - oncourse/branches/sakai_2-4-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 13:27:36 2007\nX-DSPAM-Confidence: 0.9813\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37464\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-29 13:24:14 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37464\n\nModified:\noncourse/branches/sakai_2-4-x/\noncourse/branches/sakai_2-4-x/.externals\nLog:\nUpdated externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Mon Oct 29 13:26:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 13:26:51 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 13:26:51 -0400\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby flawless.mail.umich.edu () with ESMTP id l9THQoc8022224;\n\tMon, 29 Oct 2007 13:26:50 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 472617CA.AEB0.2481 ; \n\t29 Oct 2007 13:26:36 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D30606E3FE;\n\tSun, 28 Oct 2007 23:54:23 +0000 (GMT)\nMessage-ID: <200710291723.l9THNbZ1019435@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 478\n          for <source@collab.sakaiproject.org>;\n          Sun, 28 Oct 2007 23:54:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BE64E131CD\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 17:26:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9THNbZJ019437\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 13:23:37 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9THNbZ1019435\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 13:23:37 -0400\nDate: Mon, 29 Oct 2007 13:23:37 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r37463 - gradebook/branches/oncourse_2-4-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 13:26:51 2007\nX-DSPAM-Confidence: 0.9912\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37463\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-10-29 13:23:36 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37463\n\nModified:\ngradebook/branches/oncourse_2-4-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java\nLog:\nsvn merge -r 37461:37462 https://source.sakaiproject.org/svn/gradebook/trunk\nU    app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java\nsvn log -r 37462:37462 https://source.sakaiproject.org/svn/gradebook/trunk\n------------------------------------------------------------------------\nr37462 | rjlowe@iupui.edu | 2007-10-29 13:21:52 -0400 (Mon, 29 Oct 2007) | 5 lines\n\nSAK-11270\nhttp://bugs.sakaiproject.org/jira/browse/SAK-11270\ngb / assignment list in \"Roster/All Grades\" view\nnull check\n\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Mon Oct 29 13:25:04 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 13:25:04 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 13:25:04 -0400\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby faithful.mail.umich.edu () with ESMTP id l9THP3iu028632;\n\tMon, 29 Oct 2007 13:25:03 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 4726176A.3FEFD.24190 ; \n\t29 Oct 2007 13:25:01 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9C1F56D55B;\n\tSun, 28 Oct 2007 23:52:44 +0000 (GMT)\nMessage-ID: <200710291721.l9THLrpn019423@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 352\n          for <source@collab.sakaiproject.org>;\n          Sun, 28 Oct 2007 23:52:30 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CD2C8131CD\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 17:24:38 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9THLrFu019425\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 13:21:53 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9THLrpn019423\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 13:21:53 -0400\nDate: Mon, 29 Oct 2007 13:21:53 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r37462 - gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 13:25:04 2007\nX-DSPAM-Confidence: 0.9842\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37462\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-10-29 13:21:52 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37462\n\nModified:\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java\nLog:\nSAK-11270\nhttp://bugs.sakaiproject.org/jira/browse/SAK-11270\ngb / assignment list in \"Roster/All Grades\" view\nnull check\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom hu2@iupui.edu Mon Oct 29 13:16:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 13:16:37 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 13:16:37 -0400\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby mission.mail.umich.edu () with ESMTP id l9THGZth027938;\n\tMon, 29 Oct 2007 13:16:35 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4726156D.477CB.20961 ; \n\t29 Oct 2007 13:16:33 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5670F4FC0F;\n\tSun, 28 Oct 2007 23:44:17 +0000 (GMT)\nMessage-ID: <200710291713.l9THDSqr019411@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 418\n          for <source@collab.sakaiproject.org>;\n          Sun, 28 Oct 2007 23:44:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 058EF1C3A3\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 17:16:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9THDSdf019413\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 13:13:28 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9THDSqr019411\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 13:13:28 -0400\nDate: Mon, 29 Oct 2007 13:13:28 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to hu2@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: hu2@iupui.edu\nSubject: [sakai] svn commit: r37461 - msgcntr/trunk/messageforums-app/src/webapp/jsp\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 13:16:37 2007\nX-DSPAM-Confidence: 0.8467\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37461\n\nAuthor: hu2@iupui.edu\nDate: 2007-10-29 13:13:27 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37461\n\nAdded:\nmsgcntr/trunk/messageforums-app/src/webapp/jsp/pvtMsgReplyAll.jsp\nLog:\nSAK-12073\nhttp://jira.sakaiproject.org/jira/browse/SAK-12073\nAbility to \"Reply All\" in the Messages tool\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Mon Oct 29 12:59:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 12:59:50 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 12:59:50 -0400\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby sleepers.mail.umich.edu () with ESMTP id l9TGxnFD026482;\n\tMon, 29 Oct 2007 12:59:49 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 4726117F.86CE2.17475 ; \n\t29 Oct 2007 12:59:46 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C0FB75B026;\n\tSun, 28 Oct 2007 23:27:25 +0000 (GMT)\nMessage-ID: <200710291656.l9TGuaCW019376@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 506\n          for <source@collab.sakaiproject.org>;\n          Sun, 28 Oct 2007 23:27:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E67331C379\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 16:59:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TGuaqN019378\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 12:56:36 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TGuaCW019376\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 12:56:36 -0400\nDate: Mon, 29 Oct 2007 12:56:36 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37460 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 12:59:50 2007\nX-DSPAM-Confidence: 0.9872\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37460\n\nAuthor: dlhaines@umich.edu\nDate: 2007-10-29 12:56:34 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37460\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/defaultbuild.properties\nLog:\nCTools: update the P build to include the new evaluation code.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom a.fish@lancaster.ac.uk Mon Oct 29 12:51:21 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 12:51:21 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 12:51:21 -0400\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby brazil.mail.umich.edu () with ESMTP id l9TGpKgB024048;\n\tMon, 29 Oct 2007 12:51:20 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 47260F7A.5000B.1583 ; \n\t29 Oct 2007 12:51:09 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BE4066E477;\n\tSun, 28 Oct 2007 23:18:54 +0000 (GMT)\nMessage-ID: <200710291648.l9TGm6mY019364@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 214\n          for <source@collab.sakaiproject.org>;\n          Sun, 28 Oct 2007 23:18:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 386B11C38D\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 16:50:51 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TGm6pd019366\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 12:48:06 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TGm6mY019364\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 12:48:06 -0400\nDate: Mon, 29 Oct 2007 12:48:06 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to a.fish@lancaster.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: a.fish@lancaster.ac.uk\nSubject: [sakai] svn commit: r37459 - in blog/branches/sakai_2-4-x/tool/src/webapp: WEB-INF sakai-blogger-tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 12:51:21 2007\nX-DSPAM-Confidence: 0.8459\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37459\n\nAuthor: a.fish@lancaster.ac.uk\nDate: 2007-10-29 12:47:40 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37459\n\nModified:\nblog/branches/sakai_2-4-x/tool/src/webapp/WEB-INF/faces-config.xml\nblog/branches/sakai_2-4-x/tool/src/webapp/sakai-blogger-tool/AddCommentView.jsp\nblog/branches/sakai_2-4-x/tool/src/webapp/sakai-blogger-tool/ConfirmDeletePost.jsp\nblog/branches/sakai_2-4-x/tool/src/webapp/sakai-blogger-tool/PostCreateView.jsp\nblog/branches/sakai_2-4-x/tool/src/webapp/sakai-blogger-tool/PostEditView.jsp\nblog/branches/sakai_2-4-x/tool/src/webapp/sakai-blogger-tool/PostListViewer.jsp\nblog/branches/sakai_2-4-x/tool/src/webapp/sakai-blogger-tool/PostViewer.jsp\nblog/branches/sakai_2-4-x/tool/src/webapp/sakai-blogger-tool/PreviewPost.jsp\nblog/branches/sakai_2-4-x/tool/src/webapp/sakai-blogger-tool/main.jsp\nblog/branches/sakai_2-4-x/tool/src/webapp/sakai-blogger-tool/title.jsp\nLog:\nSAK-7578. Moved the blog code from using ResourceBundle to using the ResourceLoader.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom a.fish@lancaster.ac.uk Mon Oct 29 12:45:09 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 12:45:09 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 12:45:09 -0400\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby faithful.mail.umich.edu () with ESMTP id l9TGj8ZS001859;\n\tMon, 29 Oct 2007 12:45:08 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 47260E0D.2A0B5.27127 ; \n\t29 Oct 2007 12:45:04 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4A6796B660;\n\tSun, 28 Oct 2007 23:12:50 +0000 (GMT)\nMessage-ID: <200710291641.l9TGfhf6019333@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 563\n          for <source@collab.sakaiproject.org>;\n          Sun, 28 Oct 2007 23:12:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1F5C31B94D\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 16:44:28 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TGfhhK019335\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 12:41:43 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TGfhf6019333\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 12:41:43 -0400\nDate: Mon, 29 Oct 2007 12:41:43 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to a.fish@lancaster.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: a.fish@lancaster.ac.uk\nSubject: [sakai] svn commit: r37458 - in blog/branches/sakai_2-4-x: . jsfComponent jsfComponent/src/java/uk/ac/lancs/e_science/jsf/components/blogger\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 12:45:09 2007\nX-DSPAM-Confidence: 0.9804\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37458\n\nAuthor: a.fish@lancaster.ac.uk\nDate: 2007-10-29 12:41:21 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37458\n\nModified:\nblog/branches/sakai_2-4-x/.classpath\nblog/branches/sakai_2-4-x/jsfComponent/project.xml\nblog/branches/sakai_2-4-x/jsfComponent/src/java/uk/ac/lancs/e_science/jsf/components/blogger/UIEditPost.java\nblog/branches/sakai_2-4-x/jsfComponent/src/java/uk/ac/lancs/e_science/jsf/components/blogger/UIOutputPost.java\nLog:\nSAK-7578. Moved the blog code from using ResourceBundle to using the ResourceLoader.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom a.fish@lancaster.ac.uk Mon Oct 29 11:42:27 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 11:42:27 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 11:42:27 -0400\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby faithful.mail.umich.edu () with ESMTP id l9TFgQum029720;\n\tMon, 29 Oct 2007 11:42:26 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 4725FF5C.6A7C0.16321 ; \n\t29 Oct 2007 11:42:23 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 407EA6E3DA;\n\tSun, 28 Oct 2007 22:10:07 +0000 (GMT)\nMessage-ID: <200710291539.l9TFdKVF019147@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 736\n          for <source@collab.sakaiproject.org>;\n          Sun, 28 Oct 2007 22:09:50 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 417491C367\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 15:42:02 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TFdKUV019149\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 11:39:21 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TFdKVF019147\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 11:39:20 -0400\nDate: Mon, 29 Oct 2007 11:39:20 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to a.fish@lancaster.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: a.fish@lancaster.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 11:42:27 2007\nX-DSPAM-Confidence: 0.9804\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37457\n\nAuthor: a.fish@lancaster.ac.uk\nDate: 2007-10-29 11:38:09 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37457\n\nModified:\nblog/trunk/jsfComponent/src/java/uk/ac/lancs/e_science/jsf/components/blogger/LegendWriter.java\nblog/trunk/jsfComponent/src/java/uk/ac/lancs/e_science/jsf/components/blogger/PostWriter.java\nblog/trunk/jsfComponent/src/java/uk/ac/lancs/e_science/jsf/components/blogger/UIEditPost.java\nblog/trunk/jsfComponent/src/java/uk/ac/lancs/e_science/jsf/components/blogger/UIListOfPosts.java\nblog/trunk/tool/src/java/uk/ac/lancs/e_science/sakai/tools/blogger/PostEditionAbstractController.java\nblog/trunk/tool/src/java/uk/ac/lancs/e_science/sakai/tools/blogger/validators/PostTitleValidator.java\nblog/trunk/tool/src/webapp/WEB-INF/faces-config.xml\nblog/trunk/tool/src/webapp/sakai-blogger-tool/AddCommentView.jsp\nblog/trunk/tool/src/webapp/sakai-blogger-tool/ConfirmDeletePost.jsp\nblog/trunk/tool/src/webapp/sakai-blogger-tool/CreatePostView.jsp\nblog/trunk/tool/src/webapp/sakai-blogger-tool/EditPostView.jsp\nblog/trunk/tool/src/webapp/sakai-blogger-tool/MembersView.jsp\nblog/trunk/tool/src/webapp/sakai-blogger-tool/PreviewPost.jsp\nblog/trunk/tool/src/webapp/sakai-blogger-tool/UserBlogView.jsp\nblog/trunk/tool/src/webapp/sakai-blogger-tool/ViewPost.jsp\nblog/trunk/tool/src/webapp/sakai-blogger-tool/main.jsp\nblog/trunk/tool/src/webapp/sakai-blogger-tool/title.jsp\nLog:\nSAK-7578. Moved the blog code from using ResourceBundle to using the ResourceLoader.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gsilver@umich.edu Mon Oct 29 11:42:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 11:42:17 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 11:42:17 -0400\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby jacknife.mail.umich.edu () with ESMTP id l9TFgGim032223;\n\tMon, 29 Oct 2007 11:42:16 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 4725FF49.6552A.26498 ; \n\t29 Oct 2007 11:42:04 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5E71A6E373;\n\tSun, 28 Oct 2007 22:09:45 +0000 (GMT)\nMessage-ID: <200710291539.l9TFd2Mu019135@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 260\n          for <source@collab.sakaiproject.org>;\n          Sun, 28 Oct 2007 22:09:31 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 375FA1C367\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 15:41:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TFd2SS019137\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 11:39:02 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TFd2Mu019135\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 11:39:02 -0400\nDate: Mon, 29 Oct 2007 11:39:02 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gsilver@umich.edu\nSubject: [sakai] svn commit: r37456 - reference/trunk/library/src/webapp/skin\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 11:42:17 2007\nX-DSPAM-Confidence: 0.9834\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37456\n\nAuthor: gsilver@umich.edu\nDate: 2007-10-29 11:39:01 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37456\n\nModified:\nreference/trunk/library/src/webapp/skin/tool_base.css\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-12071\n- *not* for 2.5\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mbreuker@loi.nl Mon Oct 29 11:16:54 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 11:16:54 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 11:16:54 -0400\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby panther.mail.umich.edu () with ESMTP id l9TFGrI7017947;\n\tMon, 29 Oct 2007 11:16:53 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4725F959.299F1.24977 ; \n\t29 Oct 2007 11:16:44 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C0A146E36E;\n\tSun, 28 Oct 2007 21:44:23 +0000 (GMT)\nMessage-ID: <200710291513.l9TFDeIh019076@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 208\n          for <source@collab.sakaiproject.org>;\n          Sun, 28 Oct 2007 21:44:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 38077BE03\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 15:16:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TFDeTZ019078\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 11:13:40 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TFDeIh019076\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 11:13:40 -0400\nDate: Mon, 29 Oct 2007 11:13:40 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mbreuker@loi.nl using -f\nTo: source@collab.sakaiproject.org\nFrom: mbreuker@loi.nl\nSubject: [sakai] svn commit: r37455 - tool/trunk/tool-impl/impl/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 11:16:54 2007\nX-DSPAM-Confidence: 0.9801\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37455\n\nAuthor: mbreuker@loi.nl\nDate: 2007-10-29 11:13:33 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37455\n\nModified:\ntool/trunk/tool-impl/impl/src/bundle/tools_nl.properties\nLog:\nSAK-12021 - update dutch translations (tool names)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mbreuker@loi.nl Mon Oct 29 11:14:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 11:14:53 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 11:14:53 -0400\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby jacknife.mail.umich.edu () with ESMTP id l9TFEpvj011975;\n\tMon, 29 Oct 2007 11:14:51 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 4725F8E5.A915.30925 ; \n\t29 Oct 2007 11:14:48 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 50FE945772;\n\tSun, 28 Oct 2007 21:42:22 +0000 (GMT)\nMessage-ID: <200710291511.l9TFBfjV019064@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 150\n          for <source@collab.sakaiproject.org>;\n          Sun, 28 Oct 2007 21:42:10 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E4DF3BE03\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 15:14:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TFBf0v019066\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 11:11:41 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TFBfjV019064\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 11:11:41 -0400\nDate: Mon, 29 Oct 2007 11:11:41 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mbreuker@loi.nl using -f\nTo: source@collab.sakaiproject.org\nFrom: mbreuker@loi.nl\nSubject: [sakai] svn commit: r37454 - osp/trunk/common/tool/src/bundle/org/theospi/portfolio/common/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 11:14:53 2007\nX-DSPAM-Confidence: 0.9798\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37454\n\nAuthor: mbreuker@loi.nl\nDate: 2007-10-29 11:11:37 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37454\n\nModified:\nosp/trunk/common/tool/src/bundle/org/theospi/portfolio/common/bundle/Messages_nl.properties\nLog:\nSAK-12021 - update dutch translations (osp common)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mbreuker@loi.nl Mon Oct 29 10:58:15 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 10:58:15 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 10:58:15 -0400\nReceived: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43])\n\tby faithful.mail.umich.edu () with ESMTP id l9TEwE7G001788;\n\tMon, 29 Oct 2007 10:58:14 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY serenity.mr.itd.umich.edu ID 4725F501.114F3.12140 ; \n\t29 Oct 2007 10:58:12 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0BA786DB06;\n\tSun, 28 Oct 2007 21:25:49 +0000 (GMT)\nMessage-ID: <200710291455.l9TEt58R019050@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 14\n          for <source@collab.sakaiproject.org>;\n          Sun, 28 Oct 2007 21:25:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 360B71BAD3\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 14:57:47 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TEt58k019052\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 10:55:06 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TEt58R019050\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 10:55:05 -0400\nDate: Mon, 29 Oct 2007 10:55:05 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mbreuker@loi.nl using -f\nTo: source@collab.sakaiproject.org\nFrom: mbreuker@loi.nl\nSubject: [sakai] svn commit: r37453 - content/trunk/content-bundles\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 10:58:15 2007\nX-DSPAM-Confidence: 0.9789\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37453\n\nAuthor: mbreuker@loi.nl\nDate: 2007-10-29 10:55:00 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37453\n\nModified:\ncontent/trunk/content-bundles/types_nl.properties\nLog:\nSAK-12021 - update dutch translations (resources tool)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mbreuker@loi.nl Mon Oct 29 10:27:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 10:27:51 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 10:27:51 -0400\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby godsend.mail.umich.edu () with ESMTP id l9TERoIB014807;\n\tMon, 29 Oct 2007 10:27:50 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 4725EDD8.AEBD3.4300 ; \n\t29 Oct 2007 10:27:39 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 12C1A6E26B;\n\tSun, 28 Oct 2007 20:55:19 +0000 (GMT)\nMessage-ID: <200710291424.l9TEOiuC018963@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 385\n          for <source@collab.sakaiproject.org>;\n          Sun, 28 Oct 2007 20:55:09 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 263571341D\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 14:27:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TEOiMM018965\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 10:24:44 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TEOiuC018963\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 10:24:44 -0400\nDate: Mon, 29 Oct 2007 10:24:44 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mbreuker@loi.nl using -f\nTo: source@collab.sakaiproject.org\nFrom: mbreuker@loi.nl\nSubject: [sakai] svn commit: r37452 - user/trunk/user-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 10:27:51 2007\nX-DSPAM-Confidence: 0.9774\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37452\n\nAuthor: mbreuker@loi.nl\nDate: 2007-10-29 10:24:40 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37452\n\nModified:\nuser/trunk/user-tool/tool/src/bundle/admin_nl.properties\nLog:\nSAK-12021 - update dutch translations (user tool)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mbreuker@loi.nl Mon Oct 29 10:27:24 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 10:27:24 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 10:27:24 -0400\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby faithful.mail.umich.edu () with ESMTP id l9TERNRp013585;\n\tMon, 29 Oct 2007 10:27:23 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 4725EDB6.9AB36.6796 ; \n\t29 Oct 2007 10:27:06 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id F22546E266;\n\tSun, 28 Oct 2007 20:54:42 +0000 (GMT)\nMessage-ID: <200710291424.l9TEO4sX018951@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 670\n          for <source@collab.sakaiproject.org>;\n          Sun, 28 Oct 2007 20:54:29 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7A9A81341D\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 14:26:45 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TEO4ix018953\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 10:24:04 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TEO4sX018951\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 10:24:04 -0400\nDate: Mon, 29 Oct 2007 10:24:04 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mbreuker@loi.nl using -f\nTo: source@collab.sakaiproject.org\nFrom: mbreuker@loi.nl\nSubject: [sakai] svn commit: r37451 - user/trunk/user-tool-prefs/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 10:27:24 2007\nX-DSPAM-Confidence: 0.9815\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37451\n\nAuthor: mbreuker@loi.nl\nDate: 2007-10-29 10:24:00 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37451\n\nModified:\nuser/trunk/user-tool-prefs/tool/src/bundle/user-tool-prefs_nl.properties\nLog:\nSAK-12021 - update dutch translations (user prefs tool)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mbreuker@loi.nl Mon Oct 29 10:26:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 10:26:25 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 10:26:25 -0400\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby faithful.mail.umich.edu () with ESMTP id l9TEQOCd012958;\n\tMon, 29 Oct 2007 10:26:24 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 4725ED8A.83257.23048 ; \n\t29 Oct 2007 10:26:21 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A35E462399;\n\tSun, 28 Oct 2007 20:53:56 +0000 (GMT)\nMessage-ID: <200710291423.l9TENJoh018939@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 62\n          for <source@collab.sakaiproject.org>;\n          Sun, 28 Oct 2007 20:53:44 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EFC3D1341D\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 14:26:00 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TENKsn018941\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 10:23:20 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TENJoh018939\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 10:23:19 -0400\nDate: Mon, 29 Oct 2007 10:23:19 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mbreuker@loi.nl using -f\nTo: source@collab.sakaiproject.org\nFrom: mbreuker@loi.nl\nSubject: [sakai] svn commit: r37450 - usermembership/trunk/tool/src/bundle/org/sakaiproject/umem/tool/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 10:26:25 2007\nX-DSPAM-Confidence: 0.9823\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37450\n\nAuthor: mbreuker@loi.nl\nDate: 2007-10-29 10:23:15 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37450\n\nModified:\nusermembership/trunk/tool/src/bundle/org/sakaiproject/umem/tool/bundle/Messages_nl.properties\nLog:\nSAK-12021 - update dutch translations (usermembership tool)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Mon Oct 29 10:22:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 10:22:43 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 10:22:43 -0400\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby sleepers.mail.umich.edu () with ESMTP id l9TEMgKm009248;\n\tMon, 29 Oct 2007 10:22:42 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4725ECAB.8B224.13124 ; \n\t29 Oct 2007 10:22:38 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4A2896E25E;\n\tSun, 28 Oct 2007 20:50:15 +0000 (GMT)\nMessage-ID: <200710291419.l9TEJftD018927@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 86\n          for <source@collab.sakaiproject.org>;\n          Sun, 28 Oct 2007 20:49:58 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 94331CF0F\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 14:22:22 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TEJfDI018929\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 10:19:41 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TEJftD018927\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 10:19:41 -0400\nDate: Mon, 29 Oct 2007 10:19:41 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37449 - oncourse/branches/sakai_2-4-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 10:22:43 2007\nX-DSPAM-Confidence: 0.9778\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37449\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-29 10:19:40 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37449\n\nModified:\noncourse/branches/sakai_2-4-x/\noncourse/branches/sakai_2-4-x/.externals\nLog:\nUpdated externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Mon Oct 29 10:22:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 10:22:13 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 10:22:13 -0400\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby fan.mail.umich.edu () with ESMTP id l9TEMDFA009789;\n\tMon, 29 Oct 2007 10:22:13 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 4725EC8E.DABED.14790 ; \n\t29 Oct 2007 10:22:10 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9F6B16E25F;\n\tSun, 28 Oct 2007 20:49:41 +0000 (GMT)\nMessage-ID: <200710291419.l9TEJ1Kc018915@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 800\n          for <source@collab.sakaiproject.org>;\n          Sun, 28 Oct 2007 20:49:24 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5986BCF0F\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 14:21:42 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TEJ1Vx018917\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 10:19:01 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TEJ1Kc018915\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 10:19:01 -0400\nDate: Mon, 29 Oct 2007 10:19:01 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r37448 - gradebook/branches/oncourse_2-4-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 10:22:13 2007\nX-DSPAM-Confidence: 0.9901\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37448\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-10-29 10:19:00 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37448\n\nModified:\ngradebook/branches/oncourse_2-4-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java\nLog:\nsvn merge -r 37446:37447 https://source.sakaiproject.org/svn/gradebook/trunk\nU    app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java\nsvn log -r 37447:37447 https://source.sakaiproject.org/svn/gradebook/trunk\n------------------------------------------------------------------------\nr37447 | rjlowe@iupui.edu | 2007-10-29 10:16:51 -0400 (Mon, 29 Oct 2007) | 3 lines\n\nSAK-11270\nhttp://bugs.sakaiproject.org/jira/browse/SAK-11270\ngb / assignment list in \"Roster/All Grades\" view\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Mon Oct 29 10:20:04 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 10:20:04 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 10:20:04 -0400\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby score.mail.umich.edu () with ESMTP id l9TEK3VN010780;\n\tMon, 29 Oct 2007 10:20:03 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4725EC0B.E2E58.32253 ; \n\t29 Oct 2007 10:19:59 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9D5745A35E;\n\tSun, 28 Oct 2007 20:47:27 +0000 (GMT)\nMessage-ID: <200710291416.l9TEGqgJ018903@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 948\n          for <source@collab.sakaiproject.org>;\n          Sun, 28 Oct 2007 20:47:05 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 81690CF0F\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 14:19:33 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TEGqTl018905\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 10:16:52 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TEGqgJ018903\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 10:16:52 -0400\nDate: Mon, 29 Oct 2007 10:16:52 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r37447 - gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 10:20:04 2007\nX-DSPAM-Confidence: 0.9807\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37447\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-10-29 10:16:51 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37447\n\nModified:\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java\nLog:\nSAK-11270\nhttp://bugs.sakaiproject.org/jira/browse/SAK-11270\ngb / assignment list in \"Roster/All Grades\" view\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom a.fish@lancaster.ac.uk Mon Oct 29 08:12:04 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 08:12:04 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 08:12:04 -0400\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby score.mail.umich.edu () with ESMTP id l9TCC3pG013822;\n\tMon, 29 Oct 2007 08:12:03 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4725CE07.79173.27382 ; \n\t29 Oct 2007 08:12:01 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4D3AB5057F;\n\tSun, 28 Oct 2007 18:39:25 +0000 (GMT)\nMessage-ID: <200710291208.l9TC8set018722@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 196\n          for <source@collab.sakaiproject.org>;\n          Sun, 28 Oct 2007 18:39:12 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2F0451B989\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 12:11:35 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TC8sm1018724\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 08:08:54 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TC8set018722\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 08:08:54 -0400\nDate: Mon, 29 Oct 2007 08:08:54 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to a.fish@lancaster.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: a.fish@lancaster.ac.uk\nSubject: [sakai] svn commit: r37446 - blog/trunk/api-impl/src/java/uk/ac/lancs/e_science/sakaiproject/impl/blogger/persistence\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 08:12:04 2007\nX-DSPAM-Confidence: 0.9867\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37446\n\nAuthor: a.fish@lancaster.ac.uk\nDate: 2007-10-29 08:08:47 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37446\n\nModified:\nblog/trunk/api-impl/src/java/uk/ac/lancs/e_science/sakaiproject/impl/blogger/persistence/SakaiPersistenceManager.java\nLog:\nSAK-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.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom a.fish@lancaster.ac.uk Mon Oct 29 08:07:51 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 08:07:51 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 08:07:51 -0400\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby mission.mail.umich.edu () with ESMTP id l9TC7oB0011617;\n\tMon, 29 Oct 2007 08:07:50 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 4725CD11.4E32.3084 ; \n\t29 Oct 2007 08:07:47 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 725C15B026;\n\tSun, 28 Oct 2007 18:35:16 +0000 (GMT)\nMessage-ID: <200710291204.l9TC4jH0018702@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 204\n          for <source@collab.sakaiproject.org>;\n          Sun, 28 Oct 2007 18:35:03 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B5F06B054\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 12:07:25 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TC4j7t018704\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 08:04:45 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TC4jH0018702\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 08:04:45 -0400\nDate: Mon, 29 Oct 2007 08:04:45 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to a.fish@lancaster.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: a.fish@lancaster.ac.uk\nSubject: [sakai] svn commit: r37445 - blog/trunk/tool/src/java/uk/ac/lancs/e_science/sakai/tools/blogger\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 08:07:51 2007\nX-DSPAM-Confidence: 0.9794\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37445\n\nAuthor: a.fish@lancaster.ac.uk\nDate: 2007-10-29 08:04:35 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37445\n\nModified:\nblog/trunk/tool/src/java/uk/ac/lancs/e_science/sakai/tools/blogger/PostViewerController.java\nblog/trunk/tool/src/java/uk/ac/lancs/e_science/sakai/tools/blogger/PreviewPostController.java\nLog:\nWhen you now preview a post and save from the preview window, you are taken straight to the view for the post just saved.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom a.fish@lancaster.ac.uk Mon Oct 29 08:03:16 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 08:03:16 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 08:03:16 -0400\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby mission.mail.umich.edu () with ESMTP id l9TC3ENC008845;\n\tMon, 29 Oct 2007 08:03:14 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 4725CBFC.A2054.26386 ; \n\t29 Oct 2007 08:03:12 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DA48E560A4;\n\tSun, 28 Oct 2007 18:30:41 +0000 (GMT)\nMessage-ID: <200710291200.l9TC07Do018688@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 431\n          for <source@collab.sakaiproject.org>;\n          Sun, 28 Oct 2007 18:30:20 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 375F7B054\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 12:02:48 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TC07NB018690\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 08:00:07 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TC07Do018688\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 08:00:07 -0400\nDate: Mon, 29 Oct 2007 08:00:07 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to a.fish@lancaster.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: a.fish@lancaster.ac.uk\nSubject: [sakai] svn commit: r37444 - blog/trunk/tool/src/webapp/WEB-INF\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 08:03:16 2007\nX-DSPAM-Confidence: 0.9863\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37444\n\nAuthor: a.fish@lancaster.ac.uk\nDate: 2007-10-29 08:00:00 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37444\n\nModified:\nblog/trunk/tool/src/webapp/WEB-INF/web.xml\nLog:\nSAK-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)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Mon Oct 29 07:41:38 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 07:41:38 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 07:41:38 -0400\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby score.mail.umich.edu () with ESMTP id l9TBfbS9001046;\n\tMon, 29 Oct 2007 07:41:37 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 4725C6EC.542BE.21680 ; \n\t29 Oct 2007 07:41:35 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0CB076D60C;\n\tSun, 28 Oct 2007 18:08:29 +0000 (GMT)\nMessage-ID: <200710291136.l9TBa1h0018667@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 513\n          for <source@collab.sakaiproject.org>;\n          Sun, 28 Oct 2007 18:07:49 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C16BDB054\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 11:38:41 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TBa1sO018669\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 07:36:01 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TBa1h0018667\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 07:36:01 -0400\nDate: Mon, 29 Oct 2007 07:36:01 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37443 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 07:41:38 2007\nX-DSPAM-Confidence: 0.8494\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37443\n\nAuthor: dlhaines@umich.edu\nDate: 2007-10-29 07:35:59 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37443\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xO.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xO.properties\nLog:\nCTools: update for evaulation tools fixes.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mbreuker@loi.nl Mon Oct 29 06:51:10 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 06:51:10 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 06:51:10 -0400\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby casino.mail.umich.edu () with ESMTP id l9TAp9YG018708;\n\tMon, 29 Oct 2007 06:51:09 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 4725BB14.B077B.17971 ; \n\t29 Oct 2007 06:51:04 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7C08B561EA;\n\tSun, 28 Oct 2007 17:21:31 +0000 (GMT)\nMessage-ID: <200710291047.l9TAlwTX018653@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 169\n          for <source@collab.sakaiproject.org>;\n          Sun, 28 Oct 2007 17:21:13 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5F9BC1B966\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 10:50:39 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TAlxp6018655\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 06:47:59 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TAlwTX018653\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 06:47:58 -0400\nDate: Mon, 29 Oct 2007 06:47:58 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mbreuker@loi.nl using -f\nTo: source@collab.sakaiproject.org\nFrom: mbreuker@loi.nl\nSubject: [sakai] svn commit: r37442 - osp/trunk/matrix/tool/src/bundle/org/theospi/portfolio/matrix/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 06:51:10 2007\nX-DSPAM-Confidence: 0.8468\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37442\n\nAuthor: mbreuker@loi.nl\nDate: 2007-10-29 06:47:54 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37442\n\nModified:\nosp/trunk/matrix/tool/src/bundle/org/theospi/portfolio/matrix/bundle/Messages_nl.properties\nLog:\nSAK-12021 - update dutch translations (osp matrix tool)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom david.horwitz@uct.ac.za Mon Oct 29 06:46:00 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 06:46:00 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 06:46:00 -0400\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby faithful.mail.umich.edu () with ESMTP id l9TAjxEs023166;\n\tMon, 29 Oct 2007 06:45:59 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 4725B9DF.A88F.21380 ; \n\t29 Oct 2007 06:45:56 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4CC665057F;\n\tSun, 28 Oct 2007 17:16:11 +0000 (GMT)\nMessage-ID: <200710291042.l9TAgcC6018641@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 624\n          for <source@collab.sakaiproject.org>;\n          Sun, 28 Oct 2007 17:15:56 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 10E541BCB2\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 10:45:21 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9TAgdHt018643\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 06:42:39 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9TAgcC6018641\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 06:42:38 -0400\nDate: Mon, 29 Oct 2007 06:42:38 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to david.horwitz@uct.ac.za using -f\nTo: source@collab.sakaiproject.org\nFrom: david.horwitz@uct.ac.za\nSubject: [sakai] svn commit: r37441 - in polls/branches/sakai_2-4-x: . tool/src/java/org/sakaiproject/poll/tool/producers\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 06:46:00 2007\nX-DSPAM-Confidence: 0.9805\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37441\n\nAuthor: david.horwitz@uct.ac.za\nDate: 2007-10-29 06:41:06 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37441\n\nModified:\npolls/branches/sakai_2-4-x/.classpath\npolls/branches/sakai_2-4-x/tool/src/java/org/sakaiproject/poll/tool/producers/PollVoteProducer.java\nLog:\nSAK-12067 add unique constraint to TML loop\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zach.thomas@txstate.edu Mon Oct 29 01:51:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 29 Oct 2007 01:51:30 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 29 Oct 2007 01:51:30 -0400\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby jacknife.mail.umich.edu () with ESMTP id l9T5pT7R009048;\n\tMon, 29 Oct 2007 01:51:29 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 472574D9.29D8F.7522 ; \n\t29 Oct 2007 01:51:26 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9CA106DDA7;\n\tSun, 28 Oct 2007 12:21:31 +0000 (GMT)\nMessage-ID: <200710290548.l9T5m6rT018055@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 867\n          for <source@collab.sakaiproject.org>;\n          Sun, 28 Oct 2007 12:21:08 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A85BA1BA35\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 05:50:46 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9T5m7Mx018057\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 01:48:07 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9T5m6rT018055\n\tfor source@collab.sakaiproject.org; Mon, 29 Oct 2007 01:48:06 -0400\nDate: Mon, 29 Oct 2007 01:48:06 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zach.thomas@txstate.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 29 01:51:30 2007\nX-DSPAM-Confidence: 0.9826\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37440\n\nAuthor: zach.thomas@txstate.edu\nDate: 2007-10-29 01:47:56 -0400 (Mon, 29 Oct 2007)\nNew Revision: 37440\n\nModified:\ncontent/branches/SAK-11543/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingService.java\ncontent/branches/SAK-11543/content-api/api/src/java/org/sakaiproject/content/cover/ContentHostingService.java\ncontent/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java\ncontent/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\ncontent/branches/SAK-11543/content-tool/tool/src/webapp/vm/resources/sakai_properties.vm\nLog:\nfixed problem of persisting (and showing) condition argument, e.g. score threshold for condition\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jimeng@umich.edu Sun Oct 28 20:48:23 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Sun, 28 Oct 2007 20:48:23 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Sun, 28 Oct 2007 20:48:23 -0400\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby casino.mail.umich.edu () with ESMTP id l9T0mLWV006068;\n\tSun, 28 Oct 2007 20:48:21 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 47252DCD.88D3.11036 ; \n\t28 Oct 2007 20:48:16 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 86BE450EC1;\n\tSun, 28 Oct 2007 07:18:27 +0000 (GMT)\nMessage-ID: <200710290045.l9T0jD4Q016959@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 919\n          for <source@collab.sakaiproject.org>;\n          Sun, 28 Oct 2007 07:18:01 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6F69B12A45\n\tfor <source@collab.sakaiproject.org>; Mon, 29 Oct 2007 00:47:52 +0000 (GMT)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9T0jDK8016961\n\tfor <source@collab.sakaiproject.org>; Sun, 28 Oct 2007 20:45:13 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9T0jD4Q016959\n\tfor source@collab.sakaiproject.org; Sun, 28 Oct 2007 20:45:13 -0400\nDate: Sun, 28 Oct 2007 20:45:13 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jimeng@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: jimeng@umich.edu\nSubject: [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 !\n 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!\n  dojo/dojo-release-0.9.0/dojo/_firebug dojo/dojo-release-0.9.0!\n /dojo/cl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Sun Oct 28 20:48:23 2007\nX-DSPAM-Confidence: 0.6187\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37439\n\nAuthor: jimeng@umich.edu\nDate: 2007-10-28 20:23:08 -0400 (Sun, 28 Oct 2007)\nNew Revision: 37439\n\nAdded:\nreference/trunk/library/src/webapp/dojo/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/ColorPalette.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/Declaration.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/Dialog.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/Editor.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/Menu.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/ProgressBar.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/TitlePane.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/Toolbar.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/Tooltip.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/Tree.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_Calendar.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_Container.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_Templated.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_Widget.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_base.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_base/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_base/bidi.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_base/focus.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_base/manager.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_base/place.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_base/popup.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_base/scroll.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_base/sniff.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_base/typematic.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_base/wai.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_base/window.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/RichText.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/_Plugin.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/nls/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/nls/LinkDialog.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/nls/commands.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/nls/de/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/nls/de/commands.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/nls/it/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/nls/it/commands.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/plugins/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/plugins/AlwaysShowToolbar.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/plugins/EnterKeyHandling.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/plugins/LinkDialog.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/range.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_editor/selection.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_tree/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_tree/Controller.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_tree/Node.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/_tree/Tree.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/bench/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/bench/benchReceive.php\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/bench/benchTool.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/bench/create_widgets.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/bench/test_Button-programmatic.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/bench/test_button-results.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/bench/widget_construction_test.php\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/changes.txt\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/demos/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/demos/form.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/demos/mail.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/demos/mail/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/demos/mail/icons.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/demos/mail/mail.css\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/demos/mail/mail.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/dijit-all.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/dijit-all.js.uncompressed.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/dijit.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/dijit.js.uncompressed.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/Button.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/CheckBox.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/ComboBox.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/CurrencyTextBox.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/DateTextBox.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/FilteringSelect.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/Form.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/InlineEditBox.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/NumberSpinner.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/NumberTextBox.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/Slider.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/TextBox.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/Textarea.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/TimeTextBox.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/ValidationTextBox.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/_DropDownTextBox.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/_FormWidget.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/_Spinner.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/_TimePicker.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/nls/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/nls/ComboBox.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/nls/Textarea.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/nls/de/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/nls/de/validate.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/nls/fr/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/nls/fr/validate.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/nls/it/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/nls/it/validate.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/nls/ja/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/nls/ja/validate.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/nls/validate.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/nls/zh-cn/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/nls/zh-cn/validate.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/templates/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/templates/Button.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/templates/CheckBox.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/templates/ComboBox.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/templates/ComboButton.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/templates/DropDownButton.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/templates/HorizontalSlider.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/templates/InlineEditBox.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/templates/Spinner.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/templates/TextBox.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/templates/TimePicker.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/templates/VerticalSlider.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/form/templates/blank.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/layout/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/layout/AccordionContainer.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/layout/ContentPane.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/layout/LayoutContainer.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/layout/LinkPane.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/layout/SplitContainer.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/layout/StackContainer.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/layout/TabContainer.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/layout/_LayoutWidget.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/layout/templates/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/layout/templates/AccordionPane.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/layout/templates/TabContainer.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/layout/templates/TooltipDialog.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/common.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/de/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/de/common.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_ROOT.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_de-de.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_de.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_en-gb.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_en-us.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_en.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_es-es.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_es.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_fr-fr.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_fr.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_it-it.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_it.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_ja-jp.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_ja.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_ko-kr.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_ko.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_pt-br.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_pt.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_xx.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_zh-cn.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_zh-tw.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/dijit-all_zh.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/nls/loading.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/templates/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/templates/Calendar.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/templates/ColorPalette.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/templates/Dialog.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/templates/ProgressBar.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/templates/TitlePane.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/templates/Tooltip.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/templates/blank.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/templates/buttons/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/templates/buttons/bg-fade.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/templates/colors3x4.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/templates/colors7x10.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/Container.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/Container.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/_Templated.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/_Templated.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/_base/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/_base/manager.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/_base/manager.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/_base/test_FocusManager.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/_base/test_focusWidget.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/_base/test_placeStrict.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/_base/test_typematic.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/_editor/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/_editor/test_RichText.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/_editor/test_richtext.css\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/countries.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/css/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/css/dijitTests.css\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/Form.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/Form.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/comboBoxData.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/comboBoxDataToo.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/images/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/images/Alabama.jpg\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/test_Button.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/test_CheckBox.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/test_ComboBox.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/test_ComboBox_destroy.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/test_FilteringSelect.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/test_InlineEditBox.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/test_Slider.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/test_Spinner.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/test_Textarea.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/form/test_validate.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/i18n/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/i18n/README\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/i18n/currency.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/i18n/date.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/i18n/module.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/i18n/number.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/i18n/test_i18n.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/i18n/textbox.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/i18n/time.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/images/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/images/arrowSmall.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/images/copy.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/images/cut.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/images/flatScreen.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/images/note.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/images/paste.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/images/plus.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/images/testsBodyBg.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/images/tube.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/images/tubeTall.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/ContentPane.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/ContentPane.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/combotab.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/doc0.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/doc1.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/doc2.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/getResponse.php\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/tab1.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/tab2.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/test_AccordionContainer.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/test_ContentPane.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/test_Layout.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/test_LayoutCode.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/test_LayoutContainer.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/test_SplitContainer.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/test_StackContainer.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/test_TabContainer.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/layout/test_TabContainer_remote.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/module.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/ondijitclick.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/ondijitclick.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/runTests.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/test.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/testBidi.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/test_Calendar.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/test_ColorPalette.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/test_Declaration.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/test_Dialog.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/test_Editor.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/test_Menu.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/test_ProgressBar.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/test_Table.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/test_TitlePane.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/test_Toolbar.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/test_Tooltip.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/test_Tree.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/test_Tree_Notification_API_Support.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/treeTest.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/widgetsInTemplate.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/tests/widgetsInTemplate.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/a11y/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/a11y/README.txt\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/a11y/indeterminate_progress.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/dijit.css\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/dijit_rtl.css\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/buttonActive-left.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/buttonActive-right.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/buttonActive-stretch.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/buttonDisabled-left.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/buttonDisabled-right.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/buttonDisabled-stretch.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/buttonEnabled-left.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/buttonEnabled-right.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/buttonEnabled-stretch.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/buttonHover-left.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/buttonHover-right.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/buttonHover-stretch.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/close.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/closeActive.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/closeHover.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonArrowActive-left.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonArrowActive-right.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonArrowActive-stretch.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonArrowHover-left.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonArrowHover-right.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonArrowHover-stretch.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonBtnActive-left.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonBtnActive-right.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonBtnActive-stretch.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonBtnHover-left.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonBtnHover-right.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonBtnHover-stretch.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonDisabled-left.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonDisabled-right.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonDisabled-stretch.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonEnabled-left.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonEnabled-right.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/comboButtonEnabled-stretch.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonActive-center.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonActive-left.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonActive-right.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonActive-stretch.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonDisabled-center.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonDisabled-left.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonDisabled-right.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonDisabled-stretch.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonEnabled-left.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonEnabled-right-06.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonEnabled-right.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonEnabled-stretch.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonHover-center.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonHover-left.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonHover-right.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/ddButtonHover-stretch.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/dndCopy.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/dndMove.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/dndNoCopy.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/dndNoMove.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/images.css\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/selectActive-left.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/selectActive-right.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/selectActive-stretch.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/selectDisabled-left.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/selectDisabled-right.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/selectDisabled-stretch.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/selectEnabled-left.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/selectEnabled-right.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/selectEnabled-stretch.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/selectHover-left.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/selectHover-right.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/selectHover-stretch.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/spinnerActive-bottom.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/spinnerActive-top.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/spinnerDisabled-bottom.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/spinnerDisabled-left.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/spinnerDisabled-stretch.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/spinnerDisabled-top.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/spinnerEnabled-bottom.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/spinnerEnabled-left.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/spinnerEnabled-stretch.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/spinnerEnabled-top.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/spinnerHover-bottom.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/spinnerHover-top.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/tabActive-left.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/tabActive-right.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/tabActive-stretch.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/tabDisabled-left.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/tabDisabled-right.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/tabDisabled-stretch.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/tabEnabled-left.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/tabEnabled-right.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/tabEnabled-stretch.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/tabHover-left.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/tabHover-right.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/images/tabHover-stretch.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/noir.css\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/noir.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/noir/noir.psd\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/dojoUITundra06.psd\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/dojosakadojoGradientBg.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/dojosakadojoGradientBg.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/arrowDown.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/arrowDown.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/arrowLeft.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/arrowLeft.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/arrowRight.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/arrowRight.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/arrowUp.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/arrowUp.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/buttonActive.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/buttonDisabled.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/buttonEnabled.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/buttonHover.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/calendarDayLabel.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/calendarMonthLabel.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/calendarYearLabel.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/checkboxActive.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/checkboxDisabled.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/checkboxEnabled.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/checkboxHover.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/checkmark.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/checkmark.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/checkmarkNoBorder.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/checkmarkNoBorder.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/dijitProgressBarAnim.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/dijitProgressBarAnim.psd\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/dndCopy.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/dndMove.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/dndNoCopy.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/dndNoMove.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/doubleArrowDown.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/doubleArrowUp.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/editor.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/i.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/i_half.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/i_half_rtl.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/i_rtl.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/menu.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/no.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/noX.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/popupMenuBg.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/preciseSliderThumb.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/preciseSliderThumb.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/progressBarAnim-1.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/progressBarAnim-2.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/progressBarAnim-3.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/progressBarAnim-4.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/progressBarAnim-5.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/progressBarAnim-6.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/progressBarAnim-7.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/progressBarAnim-8.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/progressBarAnim-9.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/progressBarAnim.psd\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/progressBarEmpty.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/progressBarFull.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/radioButtonActive.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/radioButtonActiveDisabled.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/radioButtonActiveHover.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/radioButtonDisabled.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/radioButtonEnabled.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/radioButtonHover.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/sliderEmpty.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/sliderEmptyVertical.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/sliderFull.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/sliderFullVertical.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/sliderThumb.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/smallArrowDown.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/smallArrowUp.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/splitContainerSizerH-thumb.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/splitContainerSizerH.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/splitContainerSizerV-thumb.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/splitContainerSizerV.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tabActive.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tabClose.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tabClose.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tabCloseHover.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tabCloseHover.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tabDisabled.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tabEnabled.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tabHover.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/titleBar.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/titleBarBg.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tooltipConnectorDown.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tooltipConnectorDown.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tooltipConnectorLeft.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tooltipConnectorLeft.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tooltipConnectorRight.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tooltipConnectorRight.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tooltipConnectorUp.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/tooltipConnectorUp.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/treeExpand_leaf.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/treeExpand_leaf_rtl.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/treeExpand_loading.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/treeExpand_minus.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/treeExpand_minus_rtl.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/treeExpand_plus.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/treeExpand_plus_rtl.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/images/validationInputBg.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/sakadojo.css\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/sakadojo/sakadojo_rtl.css\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/arrows.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/checkmark.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/dndCopy.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/dndMove.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/dndNoCopy.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/dndNoMove.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/editor.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/gradientBottomBg.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/gradientInverseBottomBg.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/gradientInverseTopBg.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/gradientTopBg.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/preciseSliderThumb.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/progressBarAnim.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/sliderThumb.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/splitContainerSizerH-thumb.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/splitContainerSizerH.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/splitContainerSizerV-thumb.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/splitContainerSizerV.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/tabClose.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/tabCloseHover.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/tooltips.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/treeExpand_loading.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/treeExpand_minus.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/treeExpand_minus_rtl.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/treeExpand_plus.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/images/treeExpand_plus_rtl.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/soria.css\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/soria/soria_rtl.css\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/templateThemeTest.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/themeTester.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/dojoTundraGradientBg.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/dojoTundraGradientBg.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/dojoUITundra06.psd\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/arrowDown.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/arrowDown.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/arrowLeft.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/arrowLeft.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/arrowRight.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/arrowRight.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/arrowUp.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/arrowUp.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/buttonActive.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/buttonDisabled.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/buttonEnabled.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/buttonHover.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/calendarDayLabel.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/calendarMonthLabel.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/calendarYearLabel.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/checkboxActive.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/checkboxDisabled.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/checkboxEnabled.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/checkboxHover.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/checkmark.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/checkmark.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/checkmarkNoBorder.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/checkmarkNoBorder.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/dijitProgressBarAnim.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/dijitProgressBarAnim.psd\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/dndCopy.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/dndMove.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/dndNoCopy.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/dndNoMove.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/doubleArrowDown.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/doubleArrowUp.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/editor.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/i.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/i_half.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/i_half_rtl.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/i_rtl.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/menu.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/no.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/noX.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/popupMenuBg.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/preciseSliderThumb.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/preciseSliderThumb.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/progressBarAnim-1.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/progressBarAnim-2.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/progressBarAnim-3.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/progressBarAnim-4.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/progressBarAnim-5.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/progressBarAnim-6.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/progressBarAnim-7.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/progressBarAnim-8.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/progressBarAnim-9.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/progressBarAnim.psd\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/progressBarEmpty.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/progressBarFull.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/radioButtonActive.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/radioButtonActiveDisabled.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/radioButtonActiveHover.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/radioButtonDisabled.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/radioButtonEnabled.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/radioButtonHover.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/sliderEmpty.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/sliderEmptyVertical.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/sliderFull.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/sliderFullVertical.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/sliderThumb.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/smallArrowDown.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/smallArrowUp.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/splitContainerSizerH-thumb.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/splitContainerSizerH.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/splitContainerSizerV-thumb.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/splitContainerSizerV.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tabActive.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tabClose.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tabClose.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tabCloseHover.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tabCloseHover.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tabDisabled.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tabEnabled.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tabHover.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/titleBar.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/titleBarBg.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tooltipConnectorDown.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tooltipConnectorDown.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tooltipConnectorLeft.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tooltipConnectorLeft.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tooltipConnectorRight.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tooltipConnectorRight.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tooltipConnectorUp.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/tooltipConnectorUp.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/treeExpand_leaf.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/treeExpand_leaf_rtl.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/treeExpand_loading.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/treeExpand_minus.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/treeExpand_minus_rtl.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/treeExpand_plus.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/treeExpand_plus_rtl.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/images/validationInputBg.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/tundra.css\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dijit/themes/tundra/tundra_rtl.css\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/AdapterRegistry.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/DeferredList.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/OpenAjax.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/_firebug/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/_firebug/LICENSE\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/_firebug/errorIcon.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/_firebug/firebug.css\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/_firebug/firebug.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/_firebug/infoIcon.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/_firebug/warningIcon.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/back.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/behavior.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/build.txt\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/README\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/monetary.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/currency.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/de-de/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/de-de/number.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/de/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/de/currency.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/de/gregorian.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/de/number.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en-au/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en-au/currency.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en-au/gregorian.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en-ca/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en-ca/currency.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en-ca/gregorian.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en-ca/number.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en-gb/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en-gb/gregorian.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en-us/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en-us/currency.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en-us/number.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en/currency.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en/gregorian.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/en/number.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/es-es/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/es-es/gregorian.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/es-es/number.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/es/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/es/currency.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/es/gregorian.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/es/number.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/fr/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/fr/currency.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/fr/gregorian.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/fr/number.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/gregorian.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/it-it/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/it-it/gregorian.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/it/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/it/currency.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/it/gregorian.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/it/number.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/ja-jp/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/ja-jp/number.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/ja/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/ja/currency.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/ja/gregorian.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/ko-kr/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/ko-kr/gregorian.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/ko-kr/number.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/ko/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/ko/currency.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/ko/gregorian.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/number.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/pt-br/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/pt-br/gregorian.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/pt/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/pt/currency.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/pt/gregorian.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/pt/number.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/zh-cn/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/zh-cn/gregorian.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/zh-cn/number.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/zh-tw/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/zh-tw/number.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/zh/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/zh/currency.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/nls/zh/gregorian.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cldr/supplemental.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/colors.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/cookie.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/currency.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/data/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/data/ItemFileReadStore.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/data/ItemFileWriteStore.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/data/api/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/data/api/Identity.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/data/api/Notification.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/data/api/Read.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/data/api/Request.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/data/api/Write.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/data/util/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/data/util/filter.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/data/util/simpleFetch.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/data/util/sorter.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/date.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/date/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/date/locale.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/date/stamp.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/dnd/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/dnd/autoscroll.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/dnd/avatar.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/dnd/common.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/dnd/container.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/dnd/manager.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/dnd/move.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/dnd/selector.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/dnd/source.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/dojo.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/dojo.js.uncompressed.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/fx.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/i18n.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/io/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/io/iframe.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/io/script.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/nls/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/nls/colors.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/number.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/parser.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/regexp.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/resources/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/resources/LICENSE\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/resources/blank.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/resources/dnd.css\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/resources/dojo.css\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/resources/iframe_history.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/resources/images/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/resources/images/dndCopy.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/resources/images/dndMove.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/resources/images/dndNoCopy.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/resources/images/dndNoMove.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/rpc/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/rpc/JsonService.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/rpc/JsonpService.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/rpc/RpcService.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/string.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/AdapterRegistry.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/TODO\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/Color.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/Deferred.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/NodeList.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/_loader/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/_loader/744/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/_loader/744/foo/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/_loader/744/foo/bar.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/_loader/744/testEval.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/_loader/addLoadEvents.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/_loader/bootstrap.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/_loader/getText.txt\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/_loader/hostenv_browser.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/_loader/hostenv_rhino.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/_loader/hostenv_spidermonkey.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/_loader/loader.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/array.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/connect.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/declare.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/fx.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/fx.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/html.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/html.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/html_box.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/html_box_quirks.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/html_quirks.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/html_rtl.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/json.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/lang.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/query.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/query.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/timeout.php\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/xhr.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/xhr.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/_base/xhrDummyMethod.php\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/back-bookmark.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/back.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/back.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/behavior.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/behavior.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/cldr.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/colors.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/connect.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/cookie.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/cookie.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/currency.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/ItemFileReadStore.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/ItemFileWriteStore.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/countries.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/countries_commentFiltered.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/countries_idcollision.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/countries_withBoolean.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/countries_withDates.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/countries_withNull.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/geography_hierarchy_large.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/geography_hierarchy_small.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/readOnlyItemFileTestTemplates.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/runTests.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/data/utils.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/date.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/date/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/date/locale.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/date/stamp.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/dndDefault.css\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/flickr_viewer.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/test_box_constraints.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/test_container.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/test_container_markup.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/test_custom_constraints.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/test_dnd.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/test_form.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/test_moveable.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/test_moveable_markup.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/test_params.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/test_parent_constraints.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/test_parent_constraints_margins.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/test_selector.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/dnd/test_selector_markup.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/fx.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/fx.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/i18n.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/io/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/io/iframe.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/io/iframe.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/io/iframeResponse.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/io/iframeResponse.js.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/io/iframeResponse.json.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/io/iframeResponse.text.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/io/iframeUploadTest.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/io/script.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/io/script.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/io/scriptJsonp.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/io/scriptSimple.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/io/scriptTimeout.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/io/upload.cgi\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/module.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/ar/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/ar/salutations.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/cs/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/cs/salutations.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/de/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/de/salutations.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/el/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/el/salutations.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/en-au/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/en-au/salutations.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/en-us-hawaii/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/en-us-hawaii/salutations.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/en-us-new_york-brooklyn/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/en-us-new_york-brooklyn/salutations.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/en-us-texas/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/en-us-texas/salutations.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/es/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/es/salutations.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/fa/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/fa/salutations.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/fr/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/fr/salutations.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/he/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/he/salutations.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/hi/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/hi/salutations.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/it/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/it/salutations.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/ja/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/ja/salutations.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/ko/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/ko/salutations.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/pl/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/pl/salutations.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/pt/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/pt/salutations.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/ru/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/ru/salutations.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/salutations.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/sw/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/sw/salutations.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/th/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/th/salutations.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/tr/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/tr/salutations.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/yi/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/yi/salutations.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/zh-cn/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/zh-cn/salutations.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/zh-tw/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/nls/zh-tw/salutations.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/number.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/parser.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/parser.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/resources/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/resources/ApplicationState.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/resources/JSON.php\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/resources/testClass.php\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/resources/testClass.smd\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/resources/test_JsonRPCMediator.php\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/resources/test_css.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/rpc.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/runTests.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojo/tests/string.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/_cometd/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/_cometd/README\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/_cometd/cometd.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/_sql/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/_sql/LICENSE\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/_sql/_crypto.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/_sql/common.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/_sql/demos/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/_sql/demos/customers/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/_sql/demos/customers/customers.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/Theme.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/_color.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/tests/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/tests/Theme.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/tests/_color.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/tests/charting.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/tests/runTests.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/themes/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/themes/GreySkies.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/themes/PlotKit/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/themes/PlotKit/README\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/themes/PlotKit/blue.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/themes/PlotKit/cyan.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/themes/PlotKit/green.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/themes/PlotKit/orange.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/themes/PlotKit/purple.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/charting/themes/PlotKit/red.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/ArrayList.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/BinaryTree.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/Dictionary.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/Queue.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/README\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/Set.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/SortedList.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/Stack.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/_base.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/tests/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/tests/ArrayList.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/tests/BinaryTree.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/tests/Dictionary.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/tests/Queue.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/tests/Set.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/tests/SortedList.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/tests/Stack.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/tests/_base.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/tests/collections.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/collections/tests/runTests.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/cometd.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/crypto.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/crypto/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/crypto/Blowfish.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/crypto/LICENSE\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/crypto/MD5.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/crypto/README\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/crypto/_base.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/crypto/tests/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/crypto/tests/Blowfish.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/crypto/tests/MD5.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/crypto/tests/crypto.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/crypto/tests/runTests.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/CsvStore.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/FlickrStore.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/HtmlTableStore.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/OpmlStore.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/README\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/XmlStore.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/demo_DataDemoTable.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/demo_FlickrStore.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/demo_FlickrStoreTree.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/demo_LazyLoad.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/demo_MultiStores.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/flickrDemo.css\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography.xml\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Argentina/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Argentina/data.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Brazil/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Brazil/data.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Canada/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Canada/Ottawa/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Canada/Ottawa/data.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Canada/Toronto/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Canada/Toronto/data.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Canada/data.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/China/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/China/data.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Commonwealth of Australia/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Commonwealth of Australia/data.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Egypt/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Egypt/data.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/France/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/France/data.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Germany/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Germany/data.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/India/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/India/data.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Italy/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Italy/data.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Kenya/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Kenya/Mombasa/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Kenya/Mombasa/data.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Kenya/Nairobi/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Kenya/Nairobi/data.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Kenya/data.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Mexico/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Mexico/Guadalajara/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Mexico/Guadalajara/data.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Mexico/Mexico City/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Mexico/Mexico City/data.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Mexico/data.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Mongolia/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Mongolia/data.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Russia/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Russia/data.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Spain/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Spain/data.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Sudan/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Sudan/Khartoum/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Sudan/Khartoum/data.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/Sudan/data.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/United States of America/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/United States of America/data.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/geography/root.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/stores/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/stores/LazyLoadJSIStore.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/widgets/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/widgets/FlickrView.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/widgets/FlickrViewList.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/widgets/templates/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/widgets/templates/FlickrView.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/demos/widgets/templates/FlickrViewList.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/dom.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/dom.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/ml/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/ml/test_HtmlTableStore_declaratively.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/module.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/runTests.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/CsvStore.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/FlickrStore.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/HtmlTableStore.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/OpmlStore.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/XmlStore.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/books.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/books.xml\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/books2.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/books2.xml\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/books3.xml\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/books_isbnAttr.xml\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/books_isbnAttr2.xml\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/geography.xml\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/geography_withspeciallabel.xml\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/movies.csv\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/data/tests/stores/patterns.csv\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/date/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/date/php.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/date/posix.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/date/tests/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/date/tests/module.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/date/tests/posix.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/date/tests/runTests.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/README\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/ascii85.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/bits.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/easy64.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/lzw.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/splay.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/ascii85.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/bits.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/colors.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/colors2.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/colors2.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/colors3.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/colors3.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/easy64.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/encoding.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/lzw.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/runTests.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/splay.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/test.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/encoding/tests/vq.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/flash.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/flash/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/flash/README\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/flash/_common.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/flash/flash6/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/flash/flash6/DojoExternalInterface.as\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/flash/flash6/flash6_gateway.fla\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/flash/flash8/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/flash/flash8/DojoExternalInterface.as\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/flash/flash8/ExpressInstall.as\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/fx.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/fx/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/fx/README\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/fx/_base.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/fx/easing.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/fx/tests/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/fx/tests/test_animateClass.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/fx/tests/test_easing.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/fx/tests/test_sizeTo.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/README\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/_base.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/demos/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/demos/Silverlight.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/demos/butterfly.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/demos/circles.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/demos/clock.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/demos/images/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/demos/images/clock_face.jpg\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/demos/lion.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/demos/tiger.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/matrix.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/path.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/shape.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/silverlight.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/svg.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/Silverlight.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/images/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/images/error.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/images/placeholder.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/images/rect.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/matrix.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/module.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/runTests.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_arc.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_bezier.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_fill.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_gfx.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_gradient.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_group.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_image1.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_image2.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_linearGradient.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_linestyle.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_pattern.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_poly.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_setPath.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_tbbox.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_text.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_textpath.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/tests/test_transform.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/gfx/vml.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/io/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/io/proxy/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/io/proxy/README\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/io/proxy/tests/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/io/proxy/tests/frag.xml\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/io/proxy/tests/xip.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/io/proxy/xip.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/io/proxy/xip_client.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/io/proxy/xip_server.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/ContentPane.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/FloatingPane.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/README\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/ResizeHandle.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/resources/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/resources/FloatingPane.css\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/resources/FloatingPane.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/resources/ResizeHandle.css\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/resources/icons/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/resources/icons/down.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/resources/icons/resize.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/resources/icons/tabClose.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/resources/icons/up.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/tests/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/tests/ContentPane.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/tests/images/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/tests/images/blank.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/tests/images/dojoLogo.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/tests/images/gridUnderlay.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/tests/images/testImage.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/tests/remote/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/tests/remote/getResponse.php\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/tests/test_FloatingPane.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/tests/test_ResizeHandle.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/layout/tests/test_SizingPane.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/README\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/_common.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/about.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/editor.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/editor.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/LICENSE\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/README\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/build.sh\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/editor.jar\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/lib/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/lib/commons-beanutils.jar\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/lib/commons-lang-2.2.jar\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/lib/derby.jar\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/lib/ezmorph-1.0.jar\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/lib/jetty-6.1.3.jar\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/lib/jetty-util-6.1.3.jar\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/lib/json-lib-1.0b2-jdk13.jar\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/lib/servlet-api-2.5-6.1.3.jar\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/manifest\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/org/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/org/dojo/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/org/dojo/moxie/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/org/dojo/moxie/Document.java\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/org/dojo/moxie/Documents.java\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/org/dojo/moxie/Main.java\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/org/dojo/moxie/MoxieException.java\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/server/org/dojo/moxie/MoxieServlet.java\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/editor/version.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/helloworld/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/helloworld/helloworld.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/demos/helloworld/version.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/docs/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/docs/bookmarklets.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/files.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/network_check.txt\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/offline.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/offline.js.uncompressed.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/resources/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/resources/checkmark.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/resources/greenball.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/resources/learnhow.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/resources/learnhow.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/resources/offline-widget.css\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/resources/offline-widget.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/resources/redball.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/resources/roller.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/sync.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/off/ui.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/README\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/SlideShow.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/_base.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/resources/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/resources/Show.css\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/resources/Show.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/resources/Slide.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/resources/SlideShow.css\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/resources/SlideShow.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/resources/icons/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/resources/icons/down.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/resources/icons/navIconDirDown.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/resources/icons/navIconDirUp.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/resources/icons/navIconPause.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/resources/icons/navIconPlay.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/resources/icons/next.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/resources/icons/prev.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/resources/icons/up.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/tests/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/tests/_ext1.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/tests/images/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/tests/images/tile-1.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/tests/images/tile-2.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/tests/images/tile-3.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/tests/images/tile-4.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/tests/images/tile-5.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/tests/images/tile-6.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/tests/images/tile-7.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/tests/images/tile-8.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/tests/images/tile-9.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/tests/test_SlideShow.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/presentation/tests/test_presentation.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/resources/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/resources/README.template\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/rpc/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/rpc/yahoo.smd\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/sql.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/FlashStorageProvider.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/GearsStorageProvider.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/Provider.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/Storage.as\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/Storage_version6.swf\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/Storage_version8.swf\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/WhatWGStorageProvider.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/_common.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/build.sh\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/manager.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/storage_dialog.fla\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/tests/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/tests/resources/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/tests/resources/testBook.txt\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/tests/resources/testXML.xml\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/tests/test_storage.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/storage/tests/test_storage.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/string/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/string/Builder.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/string/README\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/string/tests/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/string/tests/Builder.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/string/tests/BuilderPerf.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/string/tests/PerfFun.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/string/tests/lipsum.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/string/tests/notes.txt\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/string/tests/peller.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/string/tests/runTests.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/string/tests/string.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/timing.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/timing/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/timing/README\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/timing/Sequence.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/timing/Streamer.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/timing/ThreadPool.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/timing/_base.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/timing/tests/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/timing/tests/test_Sequence.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/timing/tests/test_ThreadPool.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/uuid.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/uuid/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/uuid/README\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/uuid/Uuid.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/uuid/_base.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/uuid/generateRandomUuid.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/uuid/generateTimeBasedUuid.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/uuid/tests/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/uuid/tests/runTests.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/uuid/tests/uuid.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/validate.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/validate/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/validate/README\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/validate/_base.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/validate/ca.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/validate/check.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/validate/creditCard.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/validate/regexp.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/validate/tests/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/validate/tests/creditcard.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/validate/tests/module.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/validate/tests/runTests.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/validate/tests/validate.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/validate/us.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/validate/web.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/ColorPicker.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/ColorPicker/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/ColorPicker/ColorPicker.css\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/ColorPicker/ColorPicker.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/ColorPicker/images/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/ColorPicker/images/hue.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/ColorPicker/images/hueHandle.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/ColorPicker/images/pickerPointer.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/ColorPicker/images/underlay.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/FisheyeList.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/FisheyeList/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/FisheyeList/FisheyeList.css\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/FisheyeList/blank.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/Loader.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/Loader/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/Loader/Loader.css\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/Loader/README\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/Loader/honey.php\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/Loader/icons/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/Loader/icons/loading.gif\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/README\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/Toaster.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/Toaster/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/Toaster/Toaster.css\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/tests/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/tests/images/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/tests/images/fisheye_1.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/tests/images/fisheye_2.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/tests/images/fisheye_3.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/tests/images/fisheye_4.png\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/tests/test_ColorPicker.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/tests/test_FisheyeList.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/tests/test_Loader.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/widget/tests/test_Toaster.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/CompositeWire.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/DataWire.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/README\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/TableAdapter.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/TextAdapter.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/TreeAdapter.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/Wire.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/XmlWire.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/_base.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/TableContainer.css\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/TableContainer.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/WidgetRepeater.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/markup/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/markup/countries.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/markup/demo_ActionChaining.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/markup/demo_ActionWiring.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/markup/demo_BasicChildWire.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/markup/demo_BasicColumnWiring.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/markup/demo_ConditionalActions.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/markup/demo_FlickrStoreWire.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/markup/demo_TopicWiring.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/markup/flickrDemo.css\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/demos/markup/states.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/ml/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/ml/Action.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/ml/Data.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/ml/DataStore.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/ml/Invocation.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/ml/Service.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/ml/Transfer.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/ml/util.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/Action.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/Data.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/DataStore.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/DataStore.xml\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/Invocation.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/Service.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/Service/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/Service/JSON.smd\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/Service/XML.smd\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/Service/a.json\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/Service/a.xml\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/markup/Transfer.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/module.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/programmatic/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/programmatic/CompositeWire.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/programmatic/ConverterDynamic.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/programmatic/DataWire.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/programmatic/TableAdapter.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/programmatic/TextAdapter.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/programmatic/TreeAdapter.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/programmatic/Wire.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/programmatic/XmlWire.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/programmatic/_base.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/runTests.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/wire.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/wire/tests/wireml.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/xml/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/xml/DomParser.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/dojox/xml/README\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/util/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/util/doh/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/util/doh/_browserRunner.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/util/doh/_rhinoRunner.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/util/doh/_sounds/\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/util/doh/_sounds/LICENSE\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/util/doh/_sounds/doh.wav\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/util/doh/_sounds/dohaaa.wav\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/util/doh/_sounds/woohoo.wav\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/util/doh/runner.html\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/util/doh/runner.js\nreference/trunk/library/src/webapp/dojo/dojo-release-0.9.0/util/doh/small_logo.png\nLog:\nSAK-12063\nThis is for 2.6 -- NOT 2.5\nCopying current version of dojo libraries to reference.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Oct 26 23:15:38 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 26 Oct 2007 23:15:38 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 26 Oct 2007 23:15:38 -0400\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby fan.mail.umich.edu () with ESMTP id l9R3Fbdg029760;\n\tFri, 26 Oct 2007 23:15:37 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4722AD55.8380.5661 ; \n\t26 Oct 2007 23:15:35 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2470F5E6AF;\n\tFri, 26 Oct 2007 10:47:51 +0100 (BST)\nMessage-ID: <200710270312.l9R3CiMB023836@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 107\n          for <source@collab.sakaiproject.org>;\n          Fri, 26 Oct 2007 10:47:33 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A5A011DBBE\n\tfor <source@collab.sakaiproject.org>; Sat, 27 Oct 2007 04:15:16 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9R3CiDS023838\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 23:12:44 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9R3CiMB023836\n\tfor source@collab.sakaiproject.org; Fri, 26 Oct 2007 23:12:44 -0400\nDate: Fri, 26 Oct 2007 23:12:44 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 26 23:15:38 2007\nX-DSPAM-Confidence: 0.8481\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37436\n\nAuthor: zqian@umich.edu\nDate: 2007-10-26 23:12:38 -0400 (Fri, 26 Oct 2007)\nNew Revision: 37436\n\nModified:\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nassignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nassignment/trunk/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm\nLog:\nfix to SAK-12053:If user sets an invalid accept until date for a single student a warning should be displayed\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jzaremba@unicon.net Fri Oct 26 19:56:55 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 26 Oct 2007 19:56:55 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 26 Oct 2007 19:56:55 -0400\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby casino.mail.umich.edu () with ESMTP id l9QNuspp002105;\n\tFri, 26 Oct 2007 19:56:54 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 47227EC1.9795C.26302 ; \n\t26 Oct 2007 19:56:52 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4148F64E52;\n\tFri, 26 Oct 2007 07:28:51 +0100 (BST)\nMessage-ID: <200710262353.l9QNrort021983@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 434\n          for <source@collab.sakaiproject.org>;\n          Fri, 26 Oct 2007 07:28:30 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C63CA1DB9A\n\tfor <source@collab.sakaiproject.org>; Sat, 27 Oct 2007 00:56:22 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QNrpsr021985\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 19:53:51 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QNrort021983\n\tfor source@collab.sakaiproject.org; Fri, 26 Oct 2007 19:53:50 -0400\nDate: Fri, 26 Oct 2007 19:53:50 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jzaremba@unicon.net using -f\nTo: source@collab.sakaiproject.org\nFrom: jzaremba@unicon.net\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 26 19:56:55 2007\nX-DSPAM-Confidence: 0.9745\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37435\n\nAuthor: jzaremba@unicon.net\nDate: 2007-10-26 19:53:32 -0400 (Fri, 26 Oct 2007)\nNew Revision: 37435\n\nModified:\ncontent/branches/SAK-11543/content-api/api/src/java/org/sakaiproject/content/api/ContentHostingService.java\ncontent/branches/SAK-11543/content-api/api/src/java/org/sakaiproject/content/cover/ContentHostingService.java\ncontent/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java\ncontent/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\ncontent/branches/SAK-11543/content-tool/tool/src/webapp/vm/resources/sakai_properties.vm\nLog:\nTSQ-747 UI is partially reflecting existing state.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom colin.clark@utoronto.ca Fri Oct 26 19:25:59 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 26 Oct 2007 19:25:59 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 26 Oct 2007 19:25:59 -0400\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby awakenings.mail.umich.edu () with ESMTP id l9QNPwbm004405;\n\tFri, 26 Oct 2007 19:25:58 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 47227780.6B652.19200 ; \n\t26 Oct 2007 19:25:55 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B578D4FADB;\n\tFri, 26 Oct 2007 06:58:05 +0100 (BST)\nMessage-ID: <200710262322.l9QNMwKY021961@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 323\n          for <source@collab.sakaiproject.org>;\n          Fri, 26 Oct 2007 06:57:46 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7D23813A83\n\tfor <source@collab.sakaiproject.org>; Sat, 27 Oct 2007 00:25:30 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QNMxe4021963\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 19:22:59 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QNMwKY021961\n\tfor source@collab.sakaiproject.org; Fri, 26 Oct 2007 19:22:58 -0400\nDate: Fri, 26 Oct 2007 19:22:58 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to colin.clark@utoronto.ca using -f\nTo: source@collab.sakaiproject.org\nFrom: colin.clark@utoronto.ca\nSubject: [sakai] svn commit: r37434 - portal/trunk/portal-charon/charon/src/webapp/scripts\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 26 19:25:59 2007\nX-DSPAM-Confidence: 0.8480\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37434\n\nAuthor: colin.clark@utoronto.ca\nDate: 2007-10-26 19:22:56 -0400 (Fri, 26 Oct 2007)\nNew Revision: 37434\n\nModified:\nportal/trunk/portal-charon/charon/src/webapp/scripts/portalscripts.js\nLog:\nSAK-11824\n\nPortal 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.\n\nPatch from Eli Cochran.\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Fri Oct 26 19:02:09 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 26 Oct 2007 19:02:09 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 26 Oct 2007 19:02:09 -0400\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby brazil.mail.umich.edu () with ESMTP id l9QN27sF005489;\n\tFri, 26 Oct 2007 19:02:07 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 472271E0.C16C2.22979 ; \n\t26 Oct 2007 19:02:05 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 25356598EE;\n\tFri, 26 Oct 2007 06:34:07 +0100 (BST)\nMessage-ID: <200710262259.l9QMx1Ok021920@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 837\n          for <source@collab.sakaiproject.org>;\n          Fri, 26 Oct 2007 06:33:42 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E8C271DB6E\n\tfor <source@collab.sakaiproject.org>; Sat, 27 Oct 2007 00:01:32 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QMx1nW021922\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 18:59:01 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QMx1Ok021920\n\tfor source@collab.sakaiproject.org; Fri, 26 Oct 2007 18:59:01 -0400\nDate: Fri, 26 Oct 2007 18:59:01 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [sakai] svn commit: r37433 - bspace/assignment/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 26 19:02:09 2007\nX-DSPAM-Confidence: 0.7556\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37433\n\nAuthor: ray@media.berkeley.edu\nDate: 2007-10-26 18:58:57 -0400 (Fri, 26 Oct 2007)\nNew Revision: 37433\n\nModified:\nbspace/assignment/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nBSP-1324 See if my blind attempt to fix SAK-12029 works better than what we have now\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Fri Oct 26 17:10:03 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 26 Oct 2007 17:10:03 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 26 Oct 2007 17:10:03 -0400\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby awakenings.mail.umich.edu () with ESMTP id l9QLA2Rl012903;\n\tFri, 26 Oct 2007 17:10:02 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 472257A4.9E1F6.24447 ; \n\t26 Oct 2007 17:09:59 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C79756CE12;\n\tFri, 26 Oct 2007 04:51:09 +0100 (BST)\nMessage-ID: <200710262107.l9QL71RF021863@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 959\n          for <source@collab.sakaiproject.org>;\n          Fri, 26 Oct 2007 04:50:48 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 93FD213A1A\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 22:09:32 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QL71sU021865\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 17:07:01 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QL71RF021863\n\tfor source@collab.sakaiproject.org; Fri, 26 Oct 2007 17:07:01 -0400\nDate: Fri, 26 Oct 2007 17:07:01 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [sakai] svn commit: r37432 - bspace/assignment/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 26 17:10:03 2007\nX-DSPAM-Confidence: 0.7546\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37432\n\nAuthor: ray@media.berkeley.edu\nDate: 2007-10-26 17:06:58 -0400 (Fri, 26 Oct 2007)\nNew Revision: 37432\n\nModified:\nbspace/assignment/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nBSP-1324 More diagnostics for SAK-12029\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Fri Oct 26 16:49:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 26 Oct 2007 16:49:42 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 26 Oct 2007 16:49:42 -0400\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby casino.mail.umich.edu () with ESMTP id l9QKneUx021932;\n\tFri, 26 Oct 2007 16:49:40 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 472252D0.251F1.22433 ; \n\t26 Oct 2007 16:49:37 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9BA4A6C69C;\n\tFri, 26 Oct 2007 04:30:37 +0100 (BST)\nMessage-ID: <200710262046.l9QKkXx7021848@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 620\n          for <source@collab.sakaiproject.org>;\n          Fri, 26 Oct 2007 04:30:17 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0E2231DB68\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 21:49:03 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QKkXbK021850\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 16:46:33 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QKkXx7021848\n\tfor source@collab.sakaiproject.org; Fri, 26 Oct 2007 16:46:33 -0400\nDate: Fri, 26 Oct 2007 16:46:33 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [sakai] svn commit: r37431 - bspace/assignment/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 26 16:49:42 2007\nX-DSPAM-Confidence: 0.7552\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37431\n\nAuthor: ray@media.berkeley.edu\nDate: 2007-10-26 16:46:30 -0400 (Fri, 26 Oct 2007)\nNew Revision: 37431\n\nModified:\nbspace/assignment/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nBSP-1324 Add some logging so that we have some chance to diagnose SAK-12029\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Fri Oct 26 16:25:40 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 26 Oct 2007 16:25:40 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 26 Oct 2007 16:25:40 -0400\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby faithful.mail.umich.edu () with ESMTP id l9QKPdqw023636;\n\tFri, 26 Oct 2007 16:25:39 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 47224D3E.2FB17.15760 ; \n\t26 Oct 2007 16:25:37 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 71A796C696;\n\tFri, 26 Oct 2007 04:06:52 +0100 (BST)\nMessage-ID: <200710262022.l9QKMm54021808@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 699\n          for <source@collab.sakaiproject.org>;\n          Fri, 26 Oct 2007 04:06:35 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EFF501DB65\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 21:25:18 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QKMmwE021810\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 16:22:48 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QKMm54021808\n\tfor source@collab.sakaiproject.org; Fri, 26 Oct 2007 16:22:48 -0400\nDate: Fri, 26 Oct 2007 16:22:48 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [sakai] svn commit: r37430 - bspace/assignment/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 26 16:25:40 2007\nX-DSPAM-Confidence: 0.6937\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37430\n\nAuthor: ray@media.berkeley.edu\nDate: 2007-10-26 16:22:45 -0400 (Fri, 26 Oct 2007)\nNew Revision: 37430\n\nModified:\nbspace/assignment/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nBSP-1324 merge -r37387:37410 from assignment/branches/post-2-4\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom louis@media.berkeley.edu Fri Oct 26 15:37:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 26 Oct 2007 15:37:43 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 26 Oct 2007 15:37:43 -0400\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby sleepers.mail.umich.edu () with ESMTP id l9QJbgZK030031;\n\tFri, 26 Oct 2007 15:37:42 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 47224200.726BB.9567 ; \n\t26 Oct 2007 15:37:39 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3FC0C598ED;\n\tFri, 26 Oct 2007 03:18:49 +0100 (BST)\nMessage-ID: <200710261916.l9QJGcfC021742@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 831\n          for <source@collab.sakaiproject.org>;\n          Fri, 26 Oct 2007 03:00:26 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DF4921DBA4\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 20:19:07 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QJGcE0021744\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 15:16:38 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QJGcfC021742\n\tfor source@collab.sakaiproject.org; Fri, 26 Oct 2007 15:16:38 -0400\nDate: Fri, 26 Oct 2007 15:16:38 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: louis@media.berkeley.edu\nSubject: [sakai] svn commit: r37428 - in roster/trunk/roster-app/src: java/org/sakaiproject/tool/roster webapp/roster/inc\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 26 15:37:43 2007\nX-DSPAM-Confidence: 0.7540\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37428\n\nAuthor: louis@media.berkeley.edu\nDate: 2007-10-26 15:16:33 -0400 (Fri, 26 Oct 2007)\nNew Revision: 37428\n\nModified:\nroster/trunk/roster-app/src/java/org/sakaiproject/tool/roster/FilteredParticipantListingBean.java\nroster/trunk/roster-app/src/webapp/roster/inc/filter.jspf\nLog:\nSAK-12059  Roster Group/Section Filter does not show\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Fri Oct 26 14:58:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 26 Oct 2007 14:58:25 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 26 Oct 2007 14:58:25 -0400\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby faithful.mail.umich.edu () with ESMTP id l9QIwOYF008999;\n\tFri, 26 Oct 2007 14:58:24 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 472238C9.71F58.26039 ; \n\t26 Oct 2007 14:58:21 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4FAF96CD2D;\n\tFri, 26 Oct 2007 02:39:32 +0100 (BST)\nMessage-ID: <200710261855.l9QItZpt021696@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 703\n          for <source@collab.sakaiproject.org>;\n          Fri, 26 Oct 2007 02:39:19 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2E5781DB7C\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 19:58:05 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QItZKe021698\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 14:55:35 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QItZpt021696\n\tfor source@collab.sakaiproject.org; Fri, 26 Oct 2007 14:55:35 -0400\nDate: Fri, 26 Oct 2007 14:55:35 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37427 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 26 14:58:25 2007\nX-DSPAM-Confidence: 0.9831\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37427\n\nAuthor: dlhaines@umich.edu\nDate: 2007-10-26 14:55:33 -0400 (Fri, 26 Oct 2007)\nNew Revision: 37427\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties\nLog:\nCTools: update P release revision number.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Fri Oct 26 14:57:44 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 26 Oct 2007 14:57:44 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 26 Oct 2007 14:57:44 -0400\nReceived: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43])\n\tby score.mail.umich.edu () with ESMTP id l9QIvi3P030151;\n\tFri, 26 Oct 2007 14:57:44 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY serenity.mr.itd.umich.edu ID 472238A0.B1AE1.26705 ; \n\t26 Oct 2007 14:57:40 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4EB4851E3E;\n\tFri, 26 Oct 2007 02:38:50 +0100 (BST)\nMessage-ID: <200710261854.l9QIsmt7021684@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 26\n          for <source@collab.sakaiproject.org>;\n          Fri, 26 Oct 2007 02:38:34 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9B4031DB7C\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 19:57:18 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QIsmLs021686\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 14:54:48 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QIsmt7021684\n\tfor source@collab.sakaiproject.org; Fri, 26 Oct 2007 14:54:48 -0400\nDate: Fri, 26 Oct 2007 14:54:48 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37426 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 26 14:57:44 2007\nX-DSPAM-Confidence: 0.9835\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37426\n\nAuthor: dlhaines@umich.edu\nDate: 2007-10-26 14:54:45 -0400 (Fri, 26 Oct 2007)\nNew Revision: 37426\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xO.properties\nLog:\nCTools: update P release revision number.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Fri Oct 26 14:51:59 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 26 Oct 2007 14:51:59 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 26 Oct 2007 14:51:59 -0400\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby brazil.mail.umich.edu () with ESMTP id l9QIpuxf009410;\n\tFri, 26 Oct 2007 14:51:56 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 47223746.C156A.16549 ; \n\t26 Oct 2007 14:51:53 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9B4E056F23;\n\tFri, 26 Oct 2007 02:33:03 +0100 (BST)\nMessage-ID: <200710261848.l9QImu75021672@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 382\n          for <source@collab.sakaiproject.org>;\n          Fri, 26 Oct 2007 02:32:36 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0C6ACBDC3\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 19:51:25 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QImudD021674\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 14:48:56 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QImu75021672\n\tfor source@collab.sakaiproject.org; Fri, 26 Oct 2007 14:48:56 -0400\nDate: Fri, 26 Oct 2007 14:48:56 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37425 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 26 14:51:59 2007\nX-DSPAM-Confidence: 0.9834\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37425\n\nAuthor: dlhaines@umich.edu\nDate: 2007-10-26 14:48:54 -0400 (Fri, 26 Oct 2007)\nNew Revision: 37425\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xO.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xO.properties\nLog:\nCTools: update keywords\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Fri Oct 26 14:49:22 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 26 Oct 2007 14:49:22 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 26 Oct 2007 14:49:22 -0400\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby casino.mail.umich.edu () with ESMTP id l9QInL5p017890;\n\tFri, 26 Oct 2007 14:49:21 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 472236AB.31092.13460 ; \n\t26 Oct 2007 14:49:18 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 712FD51E3E;\n\tFri, 26 Oct 2007 02:30:27 +0100 (BST)\nMessage-ID: <200710261846.l9QIkS4P021660@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 764\n          for <source@collab.sakaiproject.org>;\n          Fri, 26 Oct 2007 02:30:12 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9B359BDC3\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 19:48:58 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QIkSph021662\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 14:46:29 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QIkS4P021660\n\tfor source@collab.sakaiproject.org; Fri, 26 Oct 2007 14:46:28 -0400\nDate: Fri, 26 Oct 2007 14:46:28 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37424 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 26 14:49:22 2007\nX-DSPAM-Confidence: 0.9825\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37424\n\nAuthor: dlhaines@umich.edu\nDate: 2007-10-26 14:46:26 -0400 (Fri, 26 Oct 2007)\nNew Revision: 37424\n\nAdded:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xO.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xO.properties\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xP.properties\nRemoved:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xO.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xO.properties\nLog:\nCTools: Insert yet another Evaluation tool release as 2.4.xO and push current 2.4.xO to 2.4.xP\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Fri Oct 26 14:11:40 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 26 Oct 2007 14:11:40 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 26 Oct 2007 14:11:40 -0400\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby panther.mail.umich.edu () with ESMTP id l9QIBdS2022244;\n\tFri, 26 Oct 2007 14:11:40 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 47222DD3.F3627.19032 ; \n\t26 Oct 2007 14:11:36 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A332456F23;\n\tFri, 26 Oct 2007 01:52:38 +0100 (BST)\nMessage-ID: <200710261808.l9QI8gE6021562@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 645\n          for <source@collab.sakaiproject.org>;\n          Fri, 26 Oct 2007 01:52:26 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9107B1DB8B\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 19:11:12 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QI8hIg021564\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 14:08:43 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QI8gE6021562\n\tfor source@collab.sakaiproject.org; Fri, 26 Oct 2007 14:08:42 -0400\nDate: Fri, 26 Oct 2007 14:08:42 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37423 - oncourse/branches/sakai_2-4-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 26 14:11:40 2007\nX-DSPAM-Confidence: 0.9771\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37423\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-26 14:08:42 -0400 (Fri, 26 Oct 2007)\nNew Revision: 37423\n\nModified:\noncourse/branches/sakai_2-4-x/\noncourse/branches/sakai_2-4-x/.externals\nLog:\nUpdated externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom wagnermr@iupui.edu Fri Oct 26 14:08:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 26 Oct 2007 14:08:50 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 26 Oct 2007 14:08:50 -0400\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby chaos.mail.umich.edu () with ESMTP id l9QI8nuZ009911;\n\tFri, 26 Oct 2007 14:08:49 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 47222D2B.C972B.1331 ; \n\t26 Oct 2007 14:08:46 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 94F4156F23;\n\tFri, 26 Oct 2007 01:49:54 +0100 (BST)\nMessage-ID: <200710261805.l9QI5wmO021550@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 415\n          for <source@collab.sakaiproject.org>;\n          Fri, 26 Oct 2007 01:49:41 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C0E631DB8B\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 19:08:27 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QI5wvN021552\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 14:05:58 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QI5wmO021550\n\tfor source@collab.sakaiproject.org; Fri, 26 Oct 2007 14:05:58 -0400\nDate: Fri, 26 Oct 2007 14:05:58 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to wagnermr@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: wagnermr@iupui.edu\nSubject: [sakai] svn commit: r37422 - assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 26 14:08:50 2007\nX-DSPAM-Confidence: 0.9906\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37422\n\nAuthor: wagnermr@iupui.edu\nDate: 2007-10-26 14:05:56 -0400 (Fri, 26 Oct 2007)\nNew Revision: 37422\n\nModified:\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nsvn merge -r37408:37409 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\n------------------------------------------------------------------------\nr37409 | zqian@umich.edu | 2007-10-26 10:35:02 -0400 (Fri, 26 Oct 2007) | 3 lines\n\nFix to SAK-11967:assignments / problem with mixed format assignments when using the 'assign this grade to all participants without submissions'\n\nAssign grades also to those non-graded submissions.\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Oct 26 14:01:47 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 26 Oct 2007 14:01:47 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 26 Oct 2007 14:01:47 -0400\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby sleepers.mail.umich.edu () with ESMTP id l9QI1k6M010499;\n\tFri, 26 Oct 2007 14:01:46 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 47222B82.7D893.20802 ; \n\t26 Oct 2007 14:01:42 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 114A951383;\n\tFri, 26 Oct 2007 01:42:48 +0100 (BST)\nMessage-ID: <200710261758.l9QHwqh1021528@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 574\n          for <source@collab.sakaiproject.org>;\n          Fri, 26 Oct 2007 01:42:35 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5EBBD1DB8B\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 19:01:22 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QHwqlk021530\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 13:58:52 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QHwqh1021528\n\tfor source@collab.sakaiproject.org; Fri, 26 Oct 2007 13:58:52 -0400\nDate: Fri, 26 Oct 2007 13:58:52 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37421 - assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 26 14:01:47 2007\nX-DSPAM-Confidence: 0.9852\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37421\n\nAuthor: zqian@umich.edu\nDate: 2007-10-26 13:58:49 -0400 (Fri, 26 Oct 2007)\nNew Revision: 37421\n\nModified:\nassignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nfix to SAK-12058:Grade Report in Assignments orders by default by Last Name, should order by Last Name, First Name\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ktsao@stanford.edu Fri Oct 26 13:50:08 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 26 Oct 2007 13:50:08 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 26 Oct 2007 13:50:08 -0400\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby jacknife.mail.umich.edu () with ESMTP id l9QHo70J002934;\n\tFri, 26 Oct 2007 13:50:07 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 472228C0.6E366.11380 ; \n\t26 Oct 2007 13:50:04 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4DF1354B3D;\n\tFri, 26 Oct 2007 01:31:01 +0100 (BST)\nMessage-ID: <200710261747.l9QHl6vi021497@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 962\n          for <source@collab.sakaiproject.org>;\n          Fri, 26 Oct 2007 01:30:47 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4061F1BB30\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 18:49:36 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QHl6m9021499\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 13:47:06 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QHl6vi021497\n\tfor source@collab.sakaiproject.org; Fri, 26 Oct 2007 13:47:06 -0400\nDate: Fri, 26 Oct 2007 13:47:06 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ktsao@stanford.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ktsao@stanford.edu\nSubject: [sakai] svn commit: r37420 - sam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/select\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 26 13:50:08 2007\nX-DSPAM-Confidence: 0.9797\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37420\n\nAuthor: ktsao@stanford.edu\nDate: 2007-10-26 13:47:03 -0400 (Fri, 26 Oct 2007)\nNew Revision: 37420\n\nModified:\nsam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/select/SelectActionListener.java\nLog:\nSAK-12049\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Fri Oct 26 13:26:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 26 Oct 2007 13:26:30 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 26 Oct 2007 13:26:30 -0400\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby sleepers.mail.umich.edu () with ESMTP id l9QHQTbu019944;\n\tFri, 26 Oct 2007 13:26:29 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 4722233C.BFC.18463 ; \n\t26 Oct 2007 13:26:22 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E6F5453295;\n\tFri, 26 Oct 2007 01:07:21 +0100 (BST)\nMessage-ID: <200710261723.l9QHNEDK021424@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 449\n          for <source@collab.sakaiproject.org>;\n          Fri, 26 Oct 2007 01:06:57 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 213FF1DB9D\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 18:25:46 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QHNEa7021426\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 13:23:14 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QHNEDK021424\n\tfor source@collab.sakaiproject.org; Fri, 26 Oct 2007 13:23:14 -0400\nDate: Fri, 26 Oct 2007 13:23:14 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [sakai] svn commit: r37419 - bspace/assignment/post-2-4\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 26 13:26:30 2007\nX-DSPAM-Confidence: 0.7565\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37419\n\nAuthor: ray@media.berkeley.edu\nDate: 2007-10-26 13:23:11 -0400 (Fri, 26 Oct 2007)\nNew Revision: 37419\n\nModified:\nbspace/assignment/post-2-4/runconversion-2.4.x.sh\nLog:\nBSP-1324 Update script with new Oracle driver file name\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Fri Oct 26 13:03:38 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 26 Oct 2007 13:03:38 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 26 Oct 2007 13:03:38 -0400\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby brazil.mail.umich.edu () with ESMTP id l9QH3btX009615;\n\tFri, 26 Oct 2007 13:03:37 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 47221DE2.9D1B7.13729 ; \n\t26 Oct 2007 13:03:33 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3B3D96C8E9;\n\tFri, 26 Oct 2007 00:44:37 +0100 (BST)\nMessage-ID: <200710261700.l9QH0bp2021404@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 493\n          for <source@collab.sakaiproject.org>;\n          Fri, 26 Oct 2007 00:44:17 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0EAA11AAAA\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 18:03:06 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QH0b9F021406\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 13:00:37 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QH0bp2021404\n\tfor source@collab.sakaiproject.org; Fri, 26 Oct 2007 13:00:37 -0400\nDate: Fri, 26 Oct 2007 13:00:37 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 26 13:03:38 2007\nX-DSPAM-Confidence: 0.9878\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37418\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-26 13:00:25 -0400 (Fri, 26 Oct 2007)\nNew Revision: 37418\n\nModified:\nmemory/branches/SAK-11913/memory-test/impl/pom.xml\nmemory/branches/SAK-11913/memory-test/impl/src/java/org/sakaiproject/memory/test/LoadTestMemoryService.java\nmemory/branches/SAK-11913/memory-test/pack/pom.xml\nmemory/branches/SAK-11913/memory-test/pack/src/webapp/WEB-INF/components.xml\nmemory/branches/SAK-11913/memory-test/pom.xml\nLog:\nSAK-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\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Oct 26 11:52:47 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 26 Oct 2007 11:52:47 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 26 Oct 2007 11:52:46 -0400\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby sleepers.mail.umich.edu () with ESMTP id l9QFqjBU029161;\n\tFri, 26 Oct 2007 11:52:45 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 47220D47.B5FE0.15548 ; \n\t26 Oct 2007 11:52:43 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DEC636BD8C;\n\tThu, 25 Oct 2007 23:35:07 +0100 (BST)\nMessage-ID: <200710261549.l9QFnDeH021339@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 284\n          for <source@collab.sakaiproject.org>;\n          Thu, 25 Oct 2007 23:34:47 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8A8721BC6F\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 16:51:42 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QFnDHT021341\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 11:49:13 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QFnDeH021339\n\tfor source@collab.sakaiproject.org; Fri, 26 Oct 2007 11:49:13 -0400\nDate: Fri, 26 Oct 2007 11:49:13 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37417 - assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 26 11:52:46 2007\nX-DSPAM-Confidence: 0.9881\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37417\n\nAuthor: zqian@umich.edu\nDate: 2007-10-26 11:49:11 -0400 (Fri, 26 Oct 2007)\nNew Revision: 37417\n\nModified:\nassignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nfix to SAK-11821: fix the problem those auto added submission object have two same submitter ids listed in xml\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Fri Oct 26 11:42:08 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 26 Oct 2007 11:42:08 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 26 Oct 2007 11:42:08 -0400\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby mission.mail.umich.edu () with ESMTP id l9QFg7h1006427;\n\tFri, 26 Oct 2007 11:42:07 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 47220AC9.BE23.20895 ; \n\t26 Oct 2007 11:42:04 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 13BF752479;\n\tThu, 25 Oct 2007 23:25:05 +0100 (BST)\nMessage-ID: <200710261539.l9QFdJ5i021327@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 159\n          for <source@collab.sakaiproject.org>;\n          Thu, 25 Oct 2007 23:24:46 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4FEBE1BC6F\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 16:41:48 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QFdJBV021329\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 11:39:19 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QFdJ5i021327\n\tfor source@collab.sakaiproject.org; Fri, 26 Oct 2007 11:39:19 -0400\nDate: Fri, 26 Oct 2007 11:39:19 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 26 11:42:08 2007\nX-DSPAM-Confidence: 0.9870\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37416\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-26 11:39:07 -0400 (Fri, 26 Oct 2007)\nNew Revision: 37416\n\nModified:\nmemory/branches/SAK-11913/memory-test/.classpath\nmemory/branches/SAK-11913/memory-test/impl/pom.xml\nmemory/branches/SAK-11913/memory-test/impl/src/java/org/sakaiproject/memory/test/LoadTestMemoryService.java\nmemory/branches/SAK-11913/memory-test/pack/pom.xml\nmemory/branches/SAK-11913/memory-test/pack/src/webapp/WEB-INF/components.xml\nLog:\nSAK-11913: Added in a test runner test to load test the caching service, need to add in more tests though\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom bahollad@indiana.edu Fri Oct 26 11:41:49 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 26 Oct 2007 11:41:49 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 26 Oct 2007 11:41:49 -0400\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby awakenings.mail.umich.edu () with ESMTP id l9QFfmUk012760;\n\tFri, 26 Oct 2007 11:41:48 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 47220AB5.53B12.18662 ; \n\t26 Oct 2007 11:41:44 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D76C36CBDD;\n\tThu, 25 Oct 2007 23:24:28 +0100 (BST)\nMessage-ID: <200710261537.l9QFbmlb021315@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 814\n          for <source@collab.sakaiproject.org>;\n          Thu, 25 Oct 2007 23:24:07 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A3DBC1DB5A\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 16:40:17 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QFbmtl021317\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 11:37:48 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QFbmlb021315\n\tfor source@collab.sakaiproject.org; Fri, 26 Oct 2007 11:37:48 -0400\nDate: Fri, 26 Oct 2007 11:37:48 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bahollad@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: bahollad@indiana.edu\nSubject: [sakai] svn commit: r37415 - reference/trunk/docs/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 26 11:41:49 2007\nX-DSPAM-Confidence: 0.7600\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37415\n\nAuthor: bahollad@indiana.edu\nDate: 2007-10-26 11:37:46 -0400 (Fri, 26 Oct 2007)\nNew Revision: 37415\n\nModified:\nreference/trunk/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql\nreference/trunk/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\nLog:\nSAK-12027\nPossible problems with sakai 2.4->2.5 mysql conversion script\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Fri Oct 26 11:40:15 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 26 Oct 2007 11:40:15 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 26 Oct 2007 11:40:15 -0400\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby chaos.mail.umich.edu () with ESMTP id l9QFeEMO026714;\n\tFri, 26 Oct 2007 11:40:14 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 47220A4A.6721E.5959 ; \n\t26 Oct 2007 11:39:57 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 979ED5B8A6;\n\tThu, 25 Oct 2007 23:23:52 +0100 (BST)\nMessage-ID: <200710261537.l9QFb2Dw021301@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 862\n          for <source@collab.sakaiproject.org>;\n          Thu, 25 Oct 2007 23:23:38 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 771DB1BC6F\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 16:39:31 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QFb2XO021303\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 11:37:02 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QFb2Dw021301\n\tfor source@collab.sakaiproject.org; Fri, 26 Oct 2007 11:37:02 -0400\nDate: Fri, 26 Oct 2007 11:37:02 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37414 - in memory/branches/SAK-11913/memory-impl: impl/src/java/org/sakaiproject/memory/impl pack/src/webapp/WEB-INF\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 26 11:40:15 2007\nX-DSPAM-Confidence: 0.9826\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37414\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-26 11:36:50 -0400 (Fri, 26 Oct 2007)\nNew Revision: 37414\n\nAdded:\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemoryServiceJMXAgent.java\nModified:\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/BasicMemoryService.java\nmemory/branches/SAK-11913/memory-impl/pack/src/webapp/WEB-INF/components.xml\nmemory/branches/SAK-11913/memory-impl/pack/src/webapp/WEB-INF/ehcache-beans.xml\nLog:\nAdded in some of the changes from trunk to the branch\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Oct 26 10:42:58 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 26 Oct 2007 10:42:58 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 26 Oct 2007 10:42:58 -0400\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby panther.mail.umich.edu () with ESMTP id l9QEgv6E013436;\n\tFri, 26 Oct 2007 10:42:57 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 4721FCEB.7CBEE.9642 ; \n\t26 Oct 2007 10:42:54 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 56FBE6CB70;\n\tThu, 25 Oct 2007 22:26:50 +0100 (BST)\nMessage-ID: <200710261439.l9QEdkmN021213@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 312\n          for <source@collab.sakaiproject.org>;\n          Thu, 25 Oct 2007 22:26:22 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C7A1F1DB65\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 15:42:15 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QEdkfY021215\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 10:39:46 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QEdkmN021213\n\tfor source@collab.sakaiproject.org; Fri, 26 Oct 2007 10:39:46 -0400\nDate: Fri, 26 Oct 2007 10:39:46 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37412 - assignment/branches/sakai_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 26 10:42:58 2007\nX-DSPAM-Confidence: 0.8487\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37412\n\nAuthor: zqian@umich.edu\nDate: 2007-10-26 10:39:44 -0400 (Fri, 26 Oct 2007)\nNew Revision: 37412\n\nModified:\nassignment/branches/sakai_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerge fix to SAK-11967 into 2.4.x branch:svn merge -r 37408:37409 https://source.sakaiproject.org/svn/assignment/trunk/\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Fri Oct 26 10:42:23 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 26 Oct 2007 10:42:23 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 26 Oct 2007 10:42:23 -0400\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby flawless.mail.umich.edu () with ESMTP id l9QEgMdC014759;\n\tFri, 26 Oct 2007 10:42:22 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4721FCC6.CBB84.19773 ; \n\t26 Oct 2007 10:42:18 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BCF266CB67;\n\tThu, 25 Oct 2007 22:26:17 +0100 (BST)\nMessage-ID: <200710261439.l9QEdYWX021201@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 359\n          for <source@collab.sakaiproject.org>;\n          Thu, 25 Oct 2007 22:26:01 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4735C1DB65\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 15:42:03 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QEdYG3021203\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 10:39:34 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QEdYWX021201\n\tfor source@collab.sakaiproject.org; Fri, 26 Oct 2007 10:39:34 -0400\nDate: Fri, 26 Oct 2007 10:39:34 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [sakai] svn commit: r37411 - bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 26 10:42:23 2007\nX-DSPAM-Confidence: 0.6929\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37411\n\nAuthor: ray@media.berkeley.edu\nDate: 2007-10-26 10:39:30 -0400 (Fri, 26 Oct 2007)\nNew Revision: 37411\n\nModified:\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionController.java\nLog:\nBSP-1324 Quiet down logging\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Oct 26 10:41:35 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 26 Oct 2007 10:41:35 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 26 Oct 2007 10:41:35 -0400\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby jacknife.mail.umich.edu () with ESMTP id l9QEfYrY011032;\n\tFri, 26 Oct 2007 10:41:34 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 4721FC98.93219.12616 ; \n\t26 Oct 2007 10:41:31 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4304862277;\n\tThu, 25 Oct 2007 22:25:30 +0100 (BST)\nMessage-ID: <200710261438.l9QEckDZ021187@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 356\n          for <source@collab.sakaiproject.org>;\n          Thu, 25 Oct 2007 22:25:17 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 98AE21DB65\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 15:41:15 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QEck6a021191\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 10:38:46 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QEckDZ021187\n\tfor source@collab.sakaiproject.org; Fri, 26 Oct 2007 10:38:46 -0400\nDate: Fri, 26 Oct 2007 10:38:46 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37410 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 26 10:41:35 2007\nX-DSPAM-Confidence: 0.7567\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37410\n\nAuthor: zqian@umich.edu\nDate: 2007-10-26 10:38:44 -0400 (Fri, 26 Oct 2007)\nNew Revision: 37410\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerge fix to SAK-11967 into post-2-4 branch:svn merge -r 37408:37409 https://source.sakaiproject.org/svn/assignment/trunk/\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Oct 26 10:38:09 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 26 Oct 2007 10:38:08 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 26 Oct 2007 10:38:08 -0400\nReceived: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43])\n\tby flawless.mail.umich.edu () with ESMTP id l9QEc85a012246;\n\tFri, 26 Oct 2007 10:38:08 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY serenity.mr.itd.umich.edu ID 4721FBC7.2075.12664 ; \n\t26 Oct 2007 10:38:02 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1EDAA62277;\n\tThu, 25 Oct 2007 22:21:28 +0100 (BST)\nMessage-ID: <200710261435.l9QEZ4nZ021149@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 217\n          for <source@collab.sakaiproject.org>;\n          Thu, 25 Oct 2007 22:21:05 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6901F1DB65\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 15:37:33 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QEZ4dZ021151\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 10:35:04 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QEZ4nZ021149\n\tfor source@collab.sakaiproject.org; Fri, 26 Oct 2007 10:35:04 -0400\nDate: Fri, 26 Oct 2007 10:35:04 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37409 - assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 26 10:38:08 2007\nX-DSPAM-Confidence: 0.9862\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37409\n\nAuthor: zqian@umich.edu\nDate: 2007-10-26 10:35:02 -0400 (Fri, 26 Oct 2007)\nNew Revision: 37409\n\nModified:\nassignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nFix to SAK-11967:assignments / problem with mixed format assignments when using the 'assign this grade to all participants without submissions'\n\nAssign grades also to those non-graded submissions.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Oct 26 10:06:47 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 26 Oct 2007 10:06:47 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 26 Oct 2007 10:06:47 -0400\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby brazil.mail.umich.edu () with ESMTP id l9QE6ki7031703;\n\tFri, 26 Oct 2007 10:06:46 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4721F46E.D572B.15280 ; \n\t26 Oct 2007 10:06:41 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7C8636CAEA;\n\tThu, 25 Oct 2007 21:50:36 +0100 (BST)\nMessage-ID: <200710261403.l9QE3mMo021068@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 219\n          for <source@collab.sakaiproject.org>;\n          Thu, 25 Oct 2007 21:50:19 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 18AAE19931\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 15:06:17 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QE3mSv021070\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 10:03:49 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QE3mMo021068\n\tfor source@collab.sakaiproject.org; Fri, 26 Oct 2007 10:03:48 -0400\nDate: Fri, 26 Oct 2007 10:03:48 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37408 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 26 10:06:47 2007\nX-DSPAM-Confidence: 0.9861\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37408\n\nAuthor: zqian@umich.edu\nDate: 2007-10-26 10:03:47 -0400 (Fri, 26 Oct 2007)\nNew Revision: 37408\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerge fix to SAK-11765 into post-2-4:\n\nsvn merge -r 36061:36062 https://source.sakaiproject.org/svn/assignment/trunk/ \n\nsvn merge -r 36075:36076 https://source.sakaiproject.org/svn/assignment/trunk/ \n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom bahollad@indiana.edu Fri Oct 26 08:54:26 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 26 Oct 2007 08:54:26 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 26 Oct 2007 08:54:26 -0400\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby brazil.mail.umich.edu () with ESMTP id l9QCsPhs025744;\n\tFri, 26 Oct 2007 08:54:25 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4721E37B.EF320.7066 ; \n\t26 Oct 2007 08:54:22 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 82A5B60C9F;\n\tThu, 25 Oct 2007 20:37:56 +0100 (BST)\nMessage-ID: <200710261251.l9QCp25n021009@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 49\n          for <source@collab.sakaiproject.org>;\n          Thu, 25 Oct 2007 20:37:31 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1EDE81BC84\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 13:53:30 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QCp2uh021011\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 08:51:02 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QCp25n021009\n\tfor source@collab.sakaiproject.org; Fri, 26 Oct 2007 08:51:02 -0400\nDate: Fri, 26 Oct 2007 08:51:02 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bahollad@indiana.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: bahollad@indiana.edu\nSubject: [sakai] svn commit: r37407 - reference/trunk/docs/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 26 08:54:26 2007\nX-DSPAM-Confidence: 0.7593\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37407\n\nAuthor: bahollad@indiana.edu\nDate: 2007-10-26 08:51:00 -0400 (Fri, 26 Oct 2007)\nNew Revision: 37407\n\nModified:\nreference/trunk/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql\nreference/trunk/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\nLog:\nSAK-12027\nPossible problems with sakai 2.4->2.5 mysql conversion script\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Fri Oct 26 08:19:32 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 26 Oct 2007 08:19:32 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 26 Oct 2007 08:19:32 -0400\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby score.mail.umich.edu () with ESMTP id l9QCJV03003430;\n\tFri, 26 Oct 2007 08:19:31 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 4721DB4D.1F373.24814 ; \n\t26 Oct 2007 08:19:29 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8A3CD6C936;\n\tThu, 25 Oct 2007 20:02:52 +0100 (BST)\nMessage-ID: <200710261216.l9QCGanX020967@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 418\n          for <source@collab.sakaiproject.org>;\n          Thu, 25 Oct 2007 20:02:29 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7BCB91BC86\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 13:19:08 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9QCGbX0020969\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 08:16:37 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9QCGanX020967\n\tfor source@collab.sakaiproject.org; Fri, 26 Oct 2007 08:16:36 -0400\nDate: Fri, 26 Oct 2007 08:16:36 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [sakai] svn commit: r37406 - bspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 26 08:19:32 2007\nX-DSPAM-Confidence: 0.7591\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37406\n\nAuthor: ray@media.berkeley.edu\nDate: 2007-10-26 08:16:32 -0400 (Fri, 26 Oct 2007)\nNew Revision: 37406\n\nModified:\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionDriver.java\nLog:\nBSP-1324 Quiet down logging while I look into the transaction problem on dev\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Oct 25 22:58:33 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 25 Oct 2007 22:58:33 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 25 Oct 2007 22:58:33 -0400\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby mission.mail.umich.edu () with ESMTP id l9Q2wW97029806;\n\tThu, 25 Oct 2007 22:58:32 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 472157D3.8A086.28210 ; \n\t25 Oct 2007 22:58:30 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E16A56C464;\n\tThu, 25 Oct 2007 10:56:19 +0100 (BST)\nMessage-ID: <200710260255.l9Q2tkdj020001@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 373\n          for <source@collab.sakaiproject.org>;\n          Thu, 25 Oct 2007 10:56:07 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 353471BD19\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 03:58:14 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9Q2tk7f020003\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 22:55:46 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9Q2tkdj020001\n\tfor source@collab.sakaiproject.org; Thu, 25 Oct 2007 22:55:46 -0400\nDate: Thu, 25 Oct 2007 22:55:46 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37402 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 25 22:58:33 2007\nX-DSPAM-Confidence: 0.9858\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37402\n\nAuthor: zqian@umich.edu\nDate: 2007-10-25 22:55:44 -0400 (Thu, 25 Oct 2007)\nNew Revision: 37402\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerge the fix to SAK-12029 into post-2-4 branch: svn merge -r 37399:37400 https://source.sakaiproject.org/svn/assignment/trunk/\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Oct 25 22:19:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 25 Oct 2007 22:19:37 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 25 Oct 2007 22:19:37 -0400\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby jacknife.mail.umich.edu () with ESMTP id l9Q2Ja4f030454;\n\tThu, 25 Oct 2007 22:19:36 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 47214EB3.53B09.24976 ; \n\t25 Oct 2007 22:19:34 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A74056C2E8;\n\tThu, 25 Oct 2007 10:17:13 +0100 (BST)\nMessage-ID: <200710260216.l9Q2GiLW019960@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 436\n          for <source@collab.sakaiproject.org>;\n          Thu, 25 Oct 2007 10:16:50 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 98F05BCD3\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 03:19:11 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9Q2Gi8Q019962\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 22:16:44 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9Q2GiLW019960\n\tfor source@collab.sakaiproject.org; Thu, 25 Oct 2007 22:16:44 -0400\nDate: Thu, 25 Oct 2007 22:16:44 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37400 - assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 25 22:19:37 2007\nX-DSPAM-Confidence: 0.9849\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37400\n\nAuthor: zqian@umich.edu\nDate: 2007-10-25 22:16:42 -0400 (Thu, 25 Oct 2007)\nNew Revision: 37400\n\nModified:\nassignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nfix to SAK-12029:zip file not accepted in Assignments \"Upload All\" feature\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom louis@media.berkeley.edu Thu Oct 25 21:28:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 25 Oct 2007 21:28:17 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 25 Oct 2007 21:28:17 -0400\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby sleepers.mail.umich.edu () with ESMTP id l9Q1SGDN001770;\n\tThu, 25 Oct 2007 21:28:16 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 472142AA.395B2.1651 ; \n\t25 Oct 2007 21:28:13 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8DDB650246;\n\tThu, 25 Oct 2007 09:25:56 +0100 (BST)\nMessage-ID: <200710260125.l9Q1POwU019899@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1004\n          for <source@collab.sakaiproject.org>;\n          Thu, 25 Oct 2007 09:25:34 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1AD6B1D64A\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 02:27:51 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9Q1PO7b019901\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 21:25:25 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9Q1POwU019899\n\tfor source@collab.sakaiproject.org; Thu, 25 Oct 2007 21:25:24 -0400\nDate: Thu, 25 Oct 2007 21:25:24 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: louis@media.berkeley.edu\nSubject: [sakai] svn commit: r37399 - roster/trunk/roster-app/src/java/org/sakaiproject/tool/roster\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 25 21:28:17 2007\nX-DSPAM-Confidence: 0.7546\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37399\n\nAuthor: louis@media.berkeley.edu\nDate: 2007-10-25 21:25:22 -0400 (Thu, 25 Oct 2007)\nNew Revision: 37399\n\nModified:\nroster/trunk/roster-app/src/java/org/sakaiproject/tool/roster/RosterPreferences.java\nLog:\nSAK-11444 make the default Roster order configurable \n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Oct 25 20:36:48 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 25 Oct 2007 20:36:48 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 25 Oct 2007 20:36:48 -0400\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby mission.mail.umich.edu () with ESMTP id l9Q0amND011052;\n\tThu, 25 Oct 2007 20:36:48 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4721369B.33796.19916 ; \n\t25 Oct 2007 20:36:45 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4C1C24E6BA;\n\tThu, 25 Oct 2007 08:34:16 +0100 (BST)\nMessage-ID: <200710260033.l9Q0XtaL019813@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 875\n          for <source@collab.sakaiproject.org>;\n          Thu, 25 Oct 2007 08:33:53 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B669A1D622\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 01:36:22 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9Q0XthC019815\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 20:33:55 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9Q0XtaL019813\n\tfor source@collab.sakaiproject.org; Thu, 25 Oct 2007 20:33:55 -0400\nDate: Thu, 25 Oct 2007 20:33:55 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37398 - assignment/trunk\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 25 20:36:48 2007\nX-DSPAM-Confidence: 0.8493\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37398\n\nAuthor: zqian@umich.edu\nDate: 2007-10-25 20:33:54 -0400 (Thu, 25 Oct 2007)\nNew Revision: 37398\n\nModified:\nassignment/trunk/upgradeschema_oracle.config\nLog:\nfix to SAK-11821:remove the line break\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Thu Oct 25 20:13:54 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 25 Oct 2007 20:13:54 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 25 Oct 2007 20:13:54 -0400\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby brazil.mail.umich.edu () with ESMTP id l9Q0DsEL020874;\n\tThu, 25 Oct 2007 20:13:54 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 4721313B.41C03.7246 ; \n\t25 Oct 2007 20:13:50 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EE9F3550B2;\n\tThu, 25 Oct 2007 08:11:31 +0100 (BST)\nMessage-ID: <200710260010.l9Q0At5W019737@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 256\n          for <source@collab.sakaiproject.org>;\n          Thu, 25 Oct 2007 08:11:12 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DC8E61D58D\n\tfor <source@collab.sakaiproject.org>; Fri, 26 Oct 2007 01:13:22 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9Q0At6G019739\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 20:10:55 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9Q0At5W019737\n\tfor source@collab.sakaiproject.org; Thu, 25 Oct 2007 20:10:55 -0400\nDate: Thu, 25 Oct 2007 20:10:55 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 25 20:13:54 2007\nX-DSPAM-Confidence: 0.7603\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37397\n\nAuthor: ray@media.berkeley.edu\nDate: 2007-10-25 20:10:15 -0400 (Thu, 25 Oct 2007)\nNew Revision: 37397\n\nAdded:\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/SchemaConversionHandler.java\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/SerializableSubmissionAccess.java\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/AssignmentSubmissionAccess.java\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/CombineDuplicateSubmissionsConversionHandler.java\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/RemoveDuplicateSubmissionsConversionHandler.java\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SAXSerializablePropertiesAccess.java\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionController.java\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionDriver.java\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionException.java\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SubmitterIdAssignmentsConversionHandler.java\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/UpgradeSchema.java\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/upgradeschema.config\nbspace/assignment/post-2-4/runconversion-2.4.x.sh\nbspace/assignment/post-2-4/runconversion.sh\nbspace/assignment/post-2-4/upgradeschema_mysql.config\nbspace/assignment/post-2-4/upgradeschema_oracle.config\nRemoved:\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/SchemaConversionHandler.java\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/SerializableSubmissionAccess.java\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/AssignmentSubmissionAccess.java\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/CombineDuplicateSubmissionsConversionHandler.java\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/RemoveDuplicateSubmissionsConversionHandler.java\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SAXSerializablePropertiesAccess.java\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionController.java\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionDriver.java\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionException.java\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SubmitterIdAssignmentsConversionHandler.java\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/UpgradeSchema.java\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/upgradeschema.config\nModified:\nbspace/assignment/post-2-4/assignment-api/api/src/java/org/sakaiproject/assignment/api/AssignmentService.java\nbspace/assignment/post-2-4/assignment-api/api/src/java/org/sakaiproject/assignment/api/AssignmentSubmission.java\nbspace/assignment/post-2-4/assignment-api/api/src/java/org/sakaiproject/assignment/cover/AssignmentService.java\nbspace/assignment/post-2-4/assignment-impl/.classpath\nbspace/assignment/post-2-4/assignment-impl/impl/pom.xml\nbspace/assignment/post-2-4/assignment-impl/impl/project.xml\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/DbAssignmentService.java\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/taggable/impl/AssignmentActivityProducerImpl.java\nbspace/assignment/post-2-4/assignment-impl/impl/src/sql/hsqldb/sakai_assignment.sql\nbspace/assignment/post-2-4/assignment-impl/impl/src/sql/mysql/sakai_assignment.sql\nbspace/assignment/post-2-4/assignment-impl/impl/src/sql/oracle/sakai_assignment.sql\nbspace/assignment/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nbspace/assignment/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm\nLog:\nBSP-1324 Try to drag in what's needed to fix SAK-11821 from the trunk\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jzaremba@unicon.net Thu Oct 25 17:23:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 25 Oct 2007 17:23:13 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 25 Oct 2007 17:23:13 -0400\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby score.mail.umich.edu () with ESMTP id l9PLNClV000824;\n\tThu, 25 Oct 2007 17:23:12 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 4721093A.10729.32266 ; \n\t25 Oct 2007 17:23:09 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 76CBA6C3A8;\n\tThu, 25 Oct 2007 05:27:43 +0100 (BST)\nMessage-ID: <200710252120.l9PLKAVo019482@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 546\n          for <source@collab.sakaiproject.org>;\n          Thu, 25 Oct 2007 05:27:22 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C8E701D631\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 22:22:36 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PLKB8D019484\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 17:20:11 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PLKAVo019482\n\tfor source@collab.sakaiproject.org; Thu, 25 Oct 2007 17:20:10 -0400\nDate: Thu, 25 Oct 2007 17:20:10 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jzaremba@unicon.net using -f\nTo: source@collab.sakaiproject.org\nFrom: jzaremba@unicon.net\nSubject: [sakai] svn commit: r37396 - in content/branches/SAK-11543/content-tool/tool/src: java/org/sakaiproject/content/tool webapp/vm/resources\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 25 17:23:13 2007\nX-DSPAM-Confidence: 0.9763\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37396\n\nAuthor: jzaremba@unicon.net\nDate: 2007-10-25 17:20:02 -0400 (Thu, 25 Oct 2007)\nNew Revision: 37396\n\nModified:\ncontent/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ListItem.java\ncontent/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\ncontent/branches/SAK-11543/content-tool/tool/src/webapp/vm/resources/sakai_properties.vm\nLog:\nTSQ-747\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom louis@media.berkeley.edu Thu Oct 25 17:19:10 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 25 Oct 2007 17:19:10 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 25 Oct 2007 17:19:10 -0400\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby chaos.mail.umich.edu () with ESMTP id l9PLJATf029834;\n\tThu, 25 Oct 2007 17:19:10 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 47210847.72736.4270 ; \n\t25 Oct 2007 17:19:06 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 072356C3A7;\n\tThu, 25 Oct 2007 05:23:46 +0100 (BST)\nMessage-ID: <200710252116.l9PLGOe8019470@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 299\n          for <source@collab.sakaiproject.org>;\n          Thu, 25 Oct 2007 05:23:32 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id F10E91D631\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 22:18:49 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PLGO8U019472\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 17:16:24 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PLGOe8019470\n\tfor source@collab.sakaiproject.org; Thu, 25 Oct 2007 17:16:24 -0400\nDate: Thu, 25 Oct 2007 17:16:24 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: louis@media.berkeley.edu\nSubject: [sakai] svn commit: r37395 - roster/trunk/roster-app/src/webapp/roster\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 25 17:19:10 2007\nX-DSPAM-Confidence: 0.6945\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37395\n\nAuthor: louis@media.berkeley.edu\nDate: 2007-10-25 17:16:21 -0400 (Thu, 25 Oct 2007)\nNew Revision: 37395\n\nModified:\nroster/trunk/roster-app/src/webapp/roster/pictures.jsp\nLog:\nSAK-11144 In IE7, switch picture view takes two clicks\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Thu Oct 25 16:37:54 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 25 Oct 2007 16:37:54 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 25 Oct 2007 16:37:54 -0400\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby mission.mail.umich.edu () with ESMTP id l9PKbrLn006833;\n\tThu, 25 Oct 2007 16:37:53 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4720FE9C.108C6.5094 ; \n\t25 Oct 2007 16:37:50 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id AB2474EE58;\n\tThu, 25 Oct 2007 04:42:30 +0100 (BST)\nMessage-ID: <200710252035.l9PKZ6HQ019408@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 310\n          for <source@collab.sakaiproject.org>;\n          Thu, 25 Oct 2007 04:42:18 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B095F1D58E\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 21:37:32 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PKZ614019410\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 16:35:07 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PKZ6HQ019408\n\tfor source@collab.sakaiproject.org; Thu, 25 Oct 2007 16:35:06 -0400\nDate: Thu, 25 Oct 2007 16:35:06 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r37394 - assignment/branches/oncourse_2-4-x/assignment-impl/impl/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 25 16:37:54 2007\nX-DSPAM-Confidence: 0.9783\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37394\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-10-25 16:35:05 -0400 (Thu, 25 Oct 2007)\nNew Revision: 37394\n\nModified:\nassignment/branches/oncourse_2-4-x/assignment-impl/impl/src/bundle/assignment.properties\nLog:\nSAK-11967\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Thu Oct 25 15:47:33 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 25 Oct 2007 15:47:33 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 25 Oct 2007 15:47:33 -0400\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby sleepers.mail.umich.edu () with ESMTP id l9PJlW85004477;\n\tThu, 25 Oct 2007 15:47:32 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 4720F2CC.518F6.26930 ; \n\t25 Oct 2007 15:47:28 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 741066C27F;\n\tThu, 25 Oct 2007 03:53:07 +0100 (BST)\nMessage-ID: <200710251944.l9PJii0P019294@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 558\n          for <source@collab.sakaiproject.org>;\n          Thu, 25 Oct 2007 03:52:55 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id AAA041D605\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 20:47:09 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PJii4B019296\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 15:44:44 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PJii0P019294\n\tfor source@collab.sakaiproject.org; Thu, 25 Oct 2007 15:44:44 -0400\nDate: Thu, 25 Oct 2007 15:44:44 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 25 15:47:33 2007\nX-DSPAM-Confidence: 0.9910\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37393\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-25 15:44:41 -0400 (Thu, 25 Oct 2007)\nNew Revision: 37393\n\nModified:\nsam/branches/sakai_2-5-x/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/delivery/ShowAttachmentMediaServlet.java\nsam/branches/sakai_2-5-x/samigo-app/src/webapp/jsf/delivery/assessment_attachment.jsp\nsam/branches/sakai_2-5-x/samigo-app/src/webapp/jsf/delivery/item/attachment.jsp\nsam/branches/sakai_2-5-x/samigo-app/src/webapp/jsf/delivery/part_attachment.jsp\nsam/branches/sakai_2-5-x/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java\nsam/branches/sakai_2-5-x/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueriesAPI.java\nsam/branches/sakai_2-5-x/samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/AssessmentService.java\nsam/branches/sakai_2-5-x/samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/PublishedAssessmentService.java\nLog:\n\nsvn merge -c 37148 https://source.sakaiproject.org/svn/sam/trunk\nU    samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/delivery/ShowAttachmentMediaServlet.java\nU    samigo-app/src/webapp/jsf/delivery/assessment_attachment.jsp\nU    samigo-app/src/webapp/jsf/delivery/item/attachment.jsp\nU    samigo-app/src/webapp/jsf/delivery/part_attachment.jsp\nU    samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueriesAPI.java\nU    samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java\nU    samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/AssessmentService.java\nU    samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/PublishedAssessmentService.java\nsvn log -r 37148 https://source.sakaiproject.org/svn/sam/trunk\n------------------------------------------------------------------------\nr37148 | ktsao@stanford.edu | 2007-10-19 13:55:26 -0400 (Fri, 19 Oct 2007) | 1 line\n\nSAK-11909\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Thu Oct 25 15:36:10 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 25 Oct 2007 15:36:10 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 25 Oct 2007 15:36:10 -0400\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby casino.mail.umich.edu () with ESMTP id l9PJa8V0023711;\n\tThu, 25 Oct 2007 15:36:08 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 4720F023.3ADF9.12291 ; \n\t25 Oct 2007 15:36:06 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 917826C1D1;\n\tThu, 25 Oct 2007 03:41:45 +0100 (BST)\nMessage-ID: <200710251933.l9PJXMIO019224@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 391\n          for <source@collab.sakaiproject.org>;\n          Thu, 25 Oct 2007 03:41:32 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 07FA51BD0F\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 20:35:47 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PJXMDN019226\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 15:33:22 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PJXMIO019224\n\tfor source@collab.sakaiproject.org; Thu, 25 Oct 2007 15:33:22 -0400\nDate: Thu, 25 Oct 2007 15:33:22 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [sakai] svn commit: r37392 - in bspace: . entity\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 25 15:36:10 2007\nX-DSPAM-Confidence: 0.7595\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37392\n\nAuthor: ray@media.berkeley.edu\nDate: 2007-10-25 15:33:19 -0400 (Thu, 25 Oct 2007)\nNew Revision: 37392\n\nAdded:\nbspace/entity/\nbspace/entity/sakai_2-4-x/\nLog:\nBSP-1324 Create local entity branch to bring in 2.5 serialization code which is needed for the SAK-11821 Assignments fix\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Thu Oct 25 15:31:35 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 25 Oct 2007 15:31:35 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 25 Oct 2007 15:31:35 -0400\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby jacknife.mail.umich.edu () with ESMTP id l9PJVZGi009227;\n\tThu, 25 Oct 2007 15:31:35 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4720EF0F.C3A86.3354 ; \n\t25 Oct 2007 15:31:31 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4E1526C223;\n\tThu, 25 Oct 2007 03:37:11 +0100 (BST)\nMessage-ID: <200710251928.l9PJSkkf019212@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 196\n          for <source@collab.sakaiproject.org>;\n          Thu, 25 Oct 2007 03:36:57 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 1A20A1BC69\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 20:31:11 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PJSkBQ019214\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 15:28:46 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PJSkkf019212\n\tfor source@collab.sakaiproject.org; Thu, 25 Oct 2007 15:28:46 -0400\nDate: Thu, 25 Oct 2007 15:28:46 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37391 - oncourse/branches/sakai_2-4-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 25 15:31:35 2007\nX-DSPAM-Confidence: 0.9760\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37391\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-25 15:28:45 -0400 (Thu, 25 Oct 2007)\nNew Revision: 37391\n\nModified:\noncourse/branches/sakai_2-4-x/\noncourse/branches/sakai_2-4-x/.externals\nLog:\nUpdated externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Thu Oct 25 15:31:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 25 Oct 2007 15:31:02 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 25 Oct 2007 15:31:02 -0400\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby mission.mail.umich.edu () with ESMTP id l9PJV1ds032482;\n\tThu, 25 Oct 2007 15:31:01 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 4720EEEE.3BDEB.16856 ; \n\t25 Oct 2007 15:30:57 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C07626C21D;\n\tThu, 25 Oct 2007 03:36:36 +0100 (BST)\nMessage-ID: <200710251928.l9PJS9ZL019200@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 271\n          for <source@collab.sakaiproject.org>;\n          Thu, 25 Oct 2007 03:36:16 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 67D711BC69\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 20:30:35 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PJSA0J019202\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 15:28:10 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PJS9ZL019200\n\tfor source@collab.sakaiproject.org; Thu, 25 Oct 2007 15:28:09 -0400\nDate: Thu, 25 Oct 2007 15:28:09 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r37390 - assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 25 15:31:02 2007\nX-DSPAM-Confidence: 0.9923\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37390\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-10-25 15:28:08 -0400 (Thu, 25 Oct 2007)\nNew Revision: 37390\n\nModified:\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nsvn merge -r 37384:37385 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nin-143-146:~/java/test/oncourse_2-4-x admin$ svn log -r 37385 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr37385 | zqian@umich.edu | 2007-10-25 12:05:12 -0400 (Thu, 25 Oct 2007) | 1 line\n\nfix to SAK-12047:Upload All/ When only 1 students information is uploaded, the data for other students is being wiped out\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Thu Oct 25 14:31:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 25 Oct 2007 14:31:42 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 25 Oct 2007 14:31:42 -0400\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby sleepers.mail.umich.edu () with ESMTP id l9PIVf4a015992;\n\tThu, 25 Oct 2007 14:31:41 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4720E0FD.DF161.3454 ; \n\t25 Oct 2007 14:31:29 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EBAA16BFA4;\n\tThu, 25 Oct 2007 02:37:06 +0100 (BST)\nMessage-ID: <200710251828.l9PISZ8h019131@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 223\n          for <source@collab.sakaiproject.org>;\n          Thu, 25 Oct 2007 02:36:44 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DA97EB253\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 19:31:00 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PISZV9019133\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 14:28:35 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PISZ8h019131\n\tfor source@collab.sakaiproject.org; Thu, 25 Oct 2007 14:28:35 -0400\nDate: Thu, 25 Oct 2007 14:28:35 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 25 14:31:42 2007\nX-DSPAM-Confidence: 0.6518\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37389\n\nAuthor: ray@media.berkeley.edu\nDate: 2007-10-25 14:28:18 -0400 (Thu, 25 Oct 2007)\nNew Revision: 37389\n\nModified:\nbspace/assignment/post-2-4/assignment-api/api/src/java/org/sakaiproject/assignment/api/AssignmentService.java\nbspace/assignment/post-2-4/assignment-api/api/src/java/org/sakaiproject/assignment/cover/AssignmentService.java\nbspace/assignment/post-2-4/assignment-impl/impl/src/bundle/assignment.properties\nbspace/assignment/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nbspace/assignment/post-2-4/assignment-tool/tool/src/bundle/assignment.properties\nbspace/assignment/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nbspace/assignment/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_grading_submission.vm\nbspace/assignment/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_list_submissions.vm\nbspace/assignment/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_new_edit_assignment.vm\nbspace/assignment/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_preview_assignment.vm\nbspace/assignment/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_instructor_uploadAll.vm\nbspace/assignment/post-2-4/assignment-tool/tool/src/webapp/vm/assignment/chef_assignments_list_assignments.vm\nLog:\nBSP-1324 Merge -r 35724:37387 from post-2-4; was not able to replicate SAK-12029 locally, so we'll test it on dev\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Oct 25 14:24:00 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 25 Oct 2007 14:24:00 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 25 Oct 2007 14:24:00 -0400\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby sleepers.mail.umich.edu () with ESMTP id l9PINxnf010145;\n\tThu, 25 Oct 2007 14:23:59 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 4720DF39.11093.32269 ; \n\t25 Oct 2007 14:23:56 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8F36A6C122;\n\tThu, 25 Oct 2007 02:29:32 +0100 (BST)\nMessage-ID: <200710251821.l9PIL1ql019119@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 197\n          for <source@collab.sakaiproject.org>;\n          Thu, 25 Oct 2007 02:29:12 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8FD80B253\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 19:23:26 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PIL1pS019121\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 14:21:01 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PIL1ql019119\n\tfor source@collab.sakaiproject.org; Thu, 25 Oct 2007 14:21:01 -0400\nDate: Thu, 25 Oct 2007 14:21:01 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37388 - in assignment/trunk: assignment-bundles assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 25 14:24:00 2007\nX-DSPAM-Confidence: 0.9844\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37388\n\nAuthor: zqian@umich.edu\nDate: 2007-10-25 14:20:57 -0400 (Thu, 25 Oct 2007)\nNew Revision: 37388\n\nModified:\nassignment/trunk/assignment-bundles/assignment.properties\nassignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nfix to SAK-12050: wrong alert message when only choose upload feedback text for 'upload all assignment submission'\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom bkirschn@umich.edu Thu Oct 25 12:18:35 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 25 Oct 2007 12:18:35 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 25 Oct 2007 12:18:35 -0400\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby mission.mail.umich.edu () with ESMTP id l9PGIXT4003872;\n\tThu, 25 Oct 2007 12:18:33 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 4720C1D0.EAF1C.29603 ; \n\t25 Oct 2007 12:18:30 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DAFF458D12;\n\tThu, 25 Oct 2007 00:24:07 +0100 (BST)\nMessage-ID: <200710251615.l9PGFkfF018842@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 669\n          for <source@collab.sakaiproject.org>;\n          Thu, 25 Oct 2007 00:23:54 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3ACC3BCCB\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 17:18:11 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PGFk1p018844\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 12:15:46 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PGFkfF018842\n\tfor source@collab.sakaiproject.org; Thu, 25 Oct 2007 12:15:46 -0400\nDate: Thu, 25 Oct 2007 12:15:46 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: bkirschn@umich.edu\nSubject: [sakai] svn commit: r37387 - content/trunk/content-tool/tool/src/java/org/sakaiproject/content/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 25 12:18:35 2007\nX-DSPAM-Confidence: 0.8473\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37387\n\nAuthor: bkirschn@umich.edu\nDate: 2007-10-25 12:15:43 -0400 (Thu, 25 Oct 2007)\nNew Revision: 37387\n\nModified:\ncontent/trunk/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java\nLog:\nSAK-1357 update exception error handling\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mbreuker@loi.nl Thu Oct 25 12:13:41 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 25 Oct 2007 12:13:41 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 25 Oct 2007 12:13:40 -0400\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby mission.mail.umich.edu () with ESMTP id l9PGDd9Y000789;\n\tThu, 25 Oct 2007 12:13:39 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 4720C0AA.CE63B.7364 ; \n\t25 Oct 2007 12:13:35 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0219F6BFE0;\n\tThu, 25 Oct 2007 00:19:13 +0100 (BST)\nMessage-ID: <200710251610.l9PGAn3d018822@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 698\n          for <source@collab.sakaiproject.org>;\n          Thu, 25 Oct 2007 00:18:58 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3FE521D610\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 17:13:15 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PGAoMu018824\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 12:10:50 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PGAn3d018822\n\tfor source@collab.sakaiproject.org; Thu, 25 Oct 2007 12:10:49 -0400\nDate: Thu, 25 Oct 2007 12:10:49 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mbreuker@loi.nl using -f\nTo: source@collab.sakaiproject.org\nFrom: mbreuker@loi.nl\nSubject: [sakai] svn commit: r37386 - osp/trunk/glossary/tool/src/bundle/org/theospi/portfolio/glossary/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 25 12:13:40 2007\nX-DSPAM-Confidence: 0.9765\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37386\n\nAuthor: mbreuker@loi.nl\nDate: 2007-10-25 12:10:41 -0400 (Thu, 25 Oct 2007)\nNew Revision: 37386\n\nModified:\nosp/trunk/glossary/tool/src/bundle/org/theospi/portfolio/glossary/bundle/Messages_nl.properties\nLog:\nSAK-12021 - update dutch translations (osp glossary tool)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Oct 25 12:08:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 25 Oct 2007 12:08:13 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 25 Oct 2007 12:08:13 -0400\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby jacknife.mail.umich.edu () with ESMTP id l9PG8CC6012125;\n\tThu, 25 Oct 2007 12:08:12 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 4720BF5E.4EF76.10839 ; \n\t25 Oct 2007 12:08:06 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4CCAF6BFE0;\n\tThu, 25 Oct 2007 00:13:43 +0100 (BST)\nMessage-ID: <200710251605.l9PG5F2g018807@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 656\n          for <source@collab.sakaiproject.org>;\n          Thu, 25 Oct 2007 00:13:27 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DCABF1D605\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 17:07:40 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PG5F4m018809\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 12:05:15 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PG5F2g018807\n\tfor source@collab.sakaiproject.org; Thu, 25 Oct 2007 12:05:15 -0400\nDate: Thu, 25 Oct 2007 12:05:15 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37385 - assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 25 12:08:13 2007\nX-DSPAM-Confidence: 0.9814\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37385\n\nAuthor: zqian@umich.edu\nDate: 2007-10-25 12:05:12 -0400 (Thu, 25 Oct 2007)\nNew Revision: 37385\n\nModified:\nassignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nfix to SAK-12047:Upload All/ When only 1 students information is uploaded, the data for other students is being wiped out\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gsilver@umich.edu Thu Oct 25 11:59:58 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 25 Oct 2007 11:59:58 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 25 Oct 2007 11:59:58 -0400\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby fan.mail.umich.edu () with ESMTP id l9PFxvMT024087;\n\tThu, 25 Oct 2007 11:59:57 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 4720BD67.74273.24843 ; \n\t25 Oct 2007 11:59:38 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id AFD2D6BFD4;\n\tThu, 25 Oct 2007 00:04:41 +0100 (BST)\nMessage-ID: <200710251556.l9PFu8Nc018787@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 264\n          for <source@collab.sakaiproject.org>;\n          Thu, 25 Oct 2007 00:04:24 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 961A211C47\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 16:58:37 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PFu8gD018789\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 11:56:08 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PFu8Nc018787\n\tfor source@collab.sakaiproject.org; Thu, 25 Oct 2007 11:56:08 -0400\nDate: Thu, 25 Oct 2007 11:56:08 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gsilver@umich.edu\nSubject: [sakai] svn commit: r37384 - reference/trunk/library/src/webapp/skin/default\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 25 11:59:58 2007\nX-DSPAM-Confidence: 0.9815\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37384\n\nAuthor: gsilver@umich.edu\nDate: 2007-10-25 11:56:07 -0400 (Thu, 25 Oct 2007)\nNew Revision: 37384\n\nModified:\nreference/trunk/library/src/webapp/skin/default/portal.css\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-11701\n- tool icons\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom louis@media.berkeley.edu Thu Oct 25 11:31:49 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 25 Oct 2007 11:31:49 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 25 Oct 2007 11:31:49 -0400\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby mission.mail.umich.edu () with ESMTP id l9PFVmCg007103;\n\tThu, 25 Oct 2007 11:31:48 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 4720B6DE.5BBF9.25686 ; \n\t25 Oct 2007 11:31:45 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B717250FF6;\n\tWed, 24 Oct 2007 23:47:22 +0100 (BST)\nMessage-ID: <200710251528.l9PFSouS018748@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 451\n          for <source@collab.sakaiproject.org>;\n          Wed, 24 Oct 2007 23:47:01 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D950D1D5C2\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 16:31:15 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PFSp4A018750\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 11:28:51 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PFSouS018748\n\tfor source@collab.sakaiproject.org; Thu, 25 Oct 2007 11:28:50 -0400\nDate: Thu, 25 Oct 2007 11:28:50 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to louis@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: louis@media.berkeley.edu\nSubject: [sakai] svn commit: r37383 - roster/trunk/roster-app/src/java/org/sakaiproject/tool/roster\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 25 11:31:49 2007\nX-DSPAM-Confidence: 0.7560\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37383\n\nAuthor: louis@media.berkeley.edu\nDate: 2007-10-25 11:28:47 -0400 (Thu, 25 Oct 2007)\nNew Revision: 37383\n\nModified:\nroster/trunk/roster-app/src/java/org/sakaiproject/tool/roster/BaseRosterPageBean.java\nroster/trunk/roster-app/src/java/org/sakaiproject/tool/roster/RosterPreferences.java\nLog:\nSAK-11444 make the default Roster order configurable\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom bkirschn@umich.edu Thu Oct 25 11:17:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 25 Oct 2007 11:17:13 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 25 Oct 2007 11:17:13 -0400\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby fan.mail.umich.edu () with ESMTP id l9PFHCRS026799;\n\tThu, 25 Oct 2007 11:17:12 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 4720B36F.429FA.29155 ; \n\t25 Oct 2007 11:17:06 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B605A6BFA7;\n\tWed, 24 Oct 2007 23:32:44 +0100 (BST)\nMessage-ID: <200710251514.l9PFEFal018736@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 815\n          for <source@collab.sakaiproject.org>;\n          Wed, 24 Oct 2007 23:32:25 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 62334BCD1\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 16:16:40 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PFEFrB018738\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 11:14:15 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PFEFal018736\n\tfor source@collab.sakaiproject.org; Thu, 25 Oct 2007 11:14:15 -0400\nDate: Thu, 25 Oct 2007 11:14:15 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: bkirschn@umich.edu\nSubject: [sakai] svn commit: r37382 - in content/trunk: content-bundles content-tool/tool/src/java/org/sakaiproject/content/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 25 11:17:13 2007\nX-DSPAM-Confidence: 0.8484\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37382\n\nAuthor: bkirschn@umich.edu\nDate: 2007-10-25 11:14:13 -0400 (Thu, 25 Oct 2007)\nNew Revision: 37382\n\nModified:\ncontent/trunk/content-bundles/types.properties\ncontent/trunk/content-bundles/types_ar.properties\ncontent/trunk/content-bundles/types_fr_CA.properties\ncontent/trunk/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java\nLog:\nSAK-1357 SAK-11814 fix uploading and editting UTF-8 content\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom bkirschn@umich.edu Thu Oct 25 11:02:52 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 25 Oct 2007 11:02:52 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 25 Oct 2007 11:02:52 -0400\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby jacknife.mail.umich.edu () with ESMTP id l9PF2peD002941;\n\tThu, 25 Oct 2007 11:02:51 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 4720B011.1FDC9.13923 ; \n\t25 Oct 2007 11:02:44 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B12396BF9E;\n\tWed, 24 Oct 2007 23:18:21 +0100 (BST)\nMessage-ID: <200710251459.l9PExrS8018696@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 858\n          for <source@collab.sakaiproject.org>;\n          Wed, 24 Oct 2007 23:18:00 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9F7321D5B9\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 16:02:17 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PExrue018698\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 10:59:53 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PExrS8018696\n\tfor source@collab.sakaiproject.org; Thu, 25 Oct 2007 10:59:53 -0400\nDate: Thu, 25 Oct 2007 10:59:53 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to bkirschn@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: bkirschn@umich.edu\nSubject: [sakai] svn commit: r37381 - content/trunk/content-tool/tool/src/java/org/sakaiproject/content/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 25 11:02:52 2007\nX-DSPAM-Confidence: 0.9853\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37381\n\nAuthor: bkirschn@umich.edu\nDate: 2007-10-25 10:59:51 -0400 (Thu, 25 Oct 2007)\nNew Revision: 37381\n\nModified:\ncontent/trunk/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesHelperAction.java\nLog:\nSAK-11814 formatting change: fix tabs only\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Thu Oct 25 09:20:41 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 25 Oct 2007 09:20:41 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 25 Oct 2007 09:20:41 -0400\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby casino.mail.umich.edu () with ESMTP id l9PDKesS003952;\n\tThu, 25 Oct 2007 09:20:40 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 47209823.2629.31755 ; \n\t25 Oct 2007 09:20:37 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 32468606FE;\n\tWed, 24 Oct 2007 21:36:00 +0100 (BST)\nMessage-ID: <200710251317.l9PDHkHq018481@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 377\n          for <source@collab.sakaiproject.org>;\n          Wed, 24 Oct 2007 21:35:47 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5D4801D5D5\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 14:20:10 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PDHlAc018483\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 09:17:47 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PDHkHq018481\n\tfor source@collab.sakaiproject.org; Thu, 25 Oct 2007 09:17:46 -0400\nDate: Thu, 25 Oct 2007 09:17:46 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37380 - oncourse/branches/sakai_2-4-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 25 09:20:41 2007\nX-DSPAM-Confidence: 0.9790\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37380\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-25 09:17:45 -0400 (Thu, 25 Oct 2007)\nNew Revision: 37380\n\nModified:\noncourse/branches/sakai_2-4-x/\noncourse/branches/sakai_2-4-x/.externals\nLog:\nUpdated externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Thu Oct 25 09:20:00 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 25 Oct 2007 09:20:00 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 25 Oct 2007 09:20:00 -0400\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby score.mail.umich.edu () with ESMTP id l9PDJxsw020340;\n\tThu, 25 Oct 2007 09:20:00 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 472097F8.38162.14004 ; \n\t25 Oct 2007 09:19:55 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 221A45BDEE;\n\tWed, 24 Oct 2007 21:35:25 +0100 (BST)\nMessage-ID: <200710251317.l9PDHD8e018469@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 452\n          for <source@collab.sakaiproject.org>;\n          Wed, 24 Oct 2007 21:35:14 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DF48A1D5D5\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 14:19:36 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PDHDNa018471\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 09:17:13 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PDHD8e018469\n\tfor source@collab.sakaiproject.org; Thu, 25 Oct 2007 09:17:13 -0400\nDate: Thu, 25 Oct 2007 09:17:13 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r37379 - assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 25 09:20:00 2007\nX-DSPAM-Confidence: 0.9916\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37379\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-10-25 09:17:12 -0400 (Thu, 25 Oct 2007)\nNew Revision: 37379\n\nModified:\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/bundle/assignment.properties\nLog:\nsvn merge -r 37334:37335 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nsvn log -r 37335:37335 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr37335 | zqian@umich.edu | 2007-10-23 17:07:19 -0400 (Tue, 23 Oct 2007) | 1 line\n\nfix to SAK-11967:assignments / problem with mixed format assignments when using the 'assign this grade to all participants without submissions'\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Thu Oct 25 09:16:13 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 25 Oct 2007 09:16:13 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 25 Oct 2007 09:16:13 -0400\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby fan.mail.umich.edu () with ESMTP id l9PDGBuB019430;\n\tThu, 25 Oct 2007 09:16:11 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 47209717.12201.4501 ; \n\t25 Oct 2007 09:16:09 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id BFFCD6BEF5;\n\tWed, 24 Oct 2007 21:31:42 +0100 (BST)\nMessage-ID: <200710251313.l9PDDV3M018448@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 530\n          for <source@collab.sakaiproject.org>;\n          Wed, 24 Oct 2007 21:31:28 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B833B1D5D5\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 14:15:54 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PDDVom018450\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 09:13:31 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PDDV3M018448\n\tfor source@collab.sakaiproject.org; Thu, 25 Oct 2007 09:13:31 -0400\nDate: Thu, 25 Oct 2007 09:13:31 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r37378 - assignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 25 09:16:13 2007\nX-DSPAM-Confidence: 0.9916\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37378\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-10-25 09:13:30 -0400 (Thu, 25 Oct 2007)\nNew Revision: 37378\n\nModified:\nassignment/branches/oncourse_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nsvn merge -r 37334:37335 https://source.sakaiproject.org/svn/assignment/trunk\nU    assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nsvn log -r 37335:37335 https://source.sakaiproject.org/svn/assignment/trunk\n------------------------------------------------------------------------\nr37335 | zqian@umich.edu | 2007-10-23 17:07:19 -0400 (Tue, 23 Oct 2007) | 1 line\n\nfix to SAK-11967:assignments / problem with mixed format assignments when using the 'assign this grade to all participants without submissions'\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zach.thomas@txstate.edu Thu Oct 25 07:48:38 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 25 Oct 2007 07:48:38 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 25 Oct 2007 07:48:38 -0400\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby sleepers.mail.umich.edu () with ESMTP id l9PBmcUt029769;\n\tThu, 25 Oct 2007 07:48:38 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 4720828F.DDD73.20790 ; \n\t25 Oct 2007 07:48:35 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id CB3B3565B9;\n\tWed, 24 Oct 2007 20:04:02 +0100 (BST)\nMessage-ID: <200710251145.l9PBjqVX018225@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 652\n          for <source@collab.sakaiproject.org>;\n          Wed, 24 Oct 2007 20:03:48 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 28D7111990\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 12:48:15 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PBjqQm018227\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 07:45:52 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PBjqVX018225\n\tfor source@collab.sakaiproject.org; Thu, 25 Oct 2007 07:45:52 -0400\nDate: Thu, 25 Oct 2007 07:45:52 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zach.thomas@txstate.edu\nSubject: [sakai] svn commit: r37377 - content/branches/SAK-11543/content-impl/impl/src/java/org/sakaiproject/content/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 25 07:48:38 2007\nX-DSPAM-Confidence: 0.8458\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37377\n\nAuthor: zach.thomas@txstate.edu\nDate: 2007-10-25 07:45:49 -0400 (Thu, 25 Oct 2007)\nNew Revision: 37377\n\nModified:\ncontent/branches/SAK-11543/content-impl/impl/src/java/org/sakaiproject/content/impl/BaseContentService.java\nLog:\nadded additional logic to isAvailable method to look for the resource.satisfies.rule property.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Thu Oct 25 07:20:36 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 25 Oct 2007 07:20:36 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 25 Oct 2007 07:20:36 -0400\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby sleepers.mail.umich.edu () with ESMTP id l9PBKZd5020834;\n\tThu, 25 Oct 2007 07:20:35 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 47207BFD.52242.17527 ; \n\t25 Oct 2007 07:20:32 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2A8FF5555B;\n\tWed, 24 Oct 2007 19:35:52 +0100 (BST)\nMessage-ID: <200710251117.l9PBHjwd018172@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 171\n          for <source@collab.sakaiproject.org>;\n          Wed, 24 Oct 2007 19:35:30 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5E48B1D5EF\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 12:20:12 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9PBHjWZ018174\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 07:17:45 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9PBHjwd018172\n\tfor source@collab.sakaiproject.org; Thu, 25 Oct 2007 07:17:45 -0400\nDate: Thu, 25 Oct 2007 07:17:45 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r37376 - event/branches/sakai_2-4-x/event-impl/impl/src/java/org/sakaiproject/event/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 25 07:20:36 2007\nX-DSPAM-Confidence: 0.9732\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37376\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-10-25 07:17:40 -0400 (Thu, 25 Oct 2007)\nNew Revision: 37376\n\nModified:\nevent/branches/sakai_2-4-x/event-impl/impl/src/java/org/sakaiproject/event/impl/UsageSessionServiceAdaptor.java\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-7428\nApplied patch \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Thu Oct 25 05:02:18 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 25 Oct 2007 05:02:18 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 25 Oct 2007 05:02:18 -0400\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby flawless.mail.umich.edu () with ESMTP id l9P92HKh027708;\n\tThu, 25 Oct 2007 05:02:17 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 47205B94.94731.29896 ; \n\t25 Oct 2007 05:02:15 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3A9FA5F751;\n\tWed, 24 Oct 2007 17:24:38 +0100 (BST)\nMessage-ID: <200710250859.l9P8xXkL016695@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 905\n          for <source@collab.sakaiproject.org>;\n          Wed, 24 Oct 2007 17:24:25 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 388C81D5F1\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 10:01:56 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9P8xXwR016699\n\tfor <source@collab.sakaiproject.org>; Thu, 25 Oct 2007 04:59:33 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9P8xXkL016695\n\tfor source@collab.sakaiproject.org; Thu, 25 Oct 2007 04:59:33 -0400\nDate: Thu, 25 Oct 2007 04:59:33 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r37375 - event/trunk/event-impl/impl/src/java/org/sakaiproject/event/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 25 05:02:18 2007\nX-DSPAM-Confidence: 0.9760\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37375\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-10-25 04:59:28 -0400 (Thu, 25 Oct 2007)\nNew Revision: 37375\n\nModified:\nevent/trunk/event-impl/impl/src/java/org/sakaiproject/event/impl/UsageSessionServiceAdaptor.java\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-7428\n\nPatch applied with recoding, stucture has changed in trunk\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ray@media.berkeley.edu Wed Oct 24 18:09:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 24 Oct 2007 18:09:53 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 24 Oct 2007 18:09:53 -0400\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby jacknife.mail.umich.edu () with ESMTP id l9OM9nCo028551;\n\tWed, 24 Oct 2007 18:09:49 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 471FC2A7.ECCE3.3212 ; \n\t24 Oct 2007 18:09:46 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 488EC690D0;\n\tWed, 24 Oct 2007 06:32:54 +0100 (BST)\nMessage-ID: <200710242207.l9OM73hO013321@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1007\n          for <source@collab.sakaiproject.org>;\n          Wed, 24 Oct 2007 06:32:38 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4C1D1C3CE\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 23:09:25 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9OM74gs013323\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 18:07:04 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9OM73hO013321\n\tfor source@collab.sakaiproject.org; Wed, 24 Oct 2007 18:07:03 -0400\nDate: Wed, 24 Oct 2007 18:07:03 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ray@media.berkeley.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ray@media.berkeley.edu\nSubject: [sakai] svn commit: r37369 - user/trunk/user-impl/integration-test/src/test/java/org/sakaiproject/user/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 24 18:09:53 2007\nX-DSPAM-Confidence: 0.7594\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37369\n\nAuthor: ray@media.berkeley.edu\nDate: 2007-10-24 18:06:59 -0400 (Wed, 24 Oct 2007)\nNew Revision: 37369\n\nModified:\nuser/trunk/user-impl/integration-test/src/test/java/org/sakaiproject/user/impl/UserDirectoryServiceGetTest.java\nLog:\nSAK-11597 Add regression test for blocking duplicate user EIDs\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ktsao@stanford.edu Wed Oct 24 16:52:55 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 24 Oct 2007 16:52:55 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 24 Oct 2007 16:52:55 -0400\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby godsend.mail.umich.edu () with ESMTP id l9OKqsDV004352;\n\tWed, 24 Oct 2007 16:52:54 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 471FB09F.BADB2.5591 ; \n\t24 Oct 2007 16:52:50 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2EC206B97B;\n\tWed, 24 Oct 2007 05:21:56 +0100 (BST)\nMessage-ID: <200710242050.l9OKo68t013238@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 963\n          for <source@collab.sakaiproject.org>;\n          Wed, 24 Oct 2007 05:21:37 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0158510EA8\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 21:52:26 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9OKo6BZ013240\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 16:50:06 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9OKo68t013238\n\tfor source@collab.sakaiproject.org; Wed, 24 Oct 2007 16:50:06 -0400\nDate: Wed, 24 Oct 2007 16:50:06 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ktsao@stanford.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ktsao@stanford.edu\nSubject: [sakai] svn commit: r37368 - sam/branches/sakai_2-4-x/samigo-services/src/java/org/sakaiproject/tool/assessment/facade\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 24 16:52:55 2007\nX-DSPAM-Confidence: 0.9799\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37368\n\nAuthor: ktsao@stanford.edu\nDate: 2007-10-24 16:50:03 -0400 (Wed, 24 Oct 2007)\nNew Revision: 37368\n\nModified:\nsam/branches/sakai_2-4-x/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/AssessmentGradingFacadeQueries.java\nLog:\nSAK-11726\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Wed Oct 24 16:23:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 24 Oct 2007 16:23:43 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 24 Oct 2007 16:23:43 -0400\nReceived: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43])\n\tby sleepers.mail.umich.edu () with ESMTP id l9OKNgf6018457;\n\tWed, 24 Oct 2007 16:23:42 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY serenity.mr.itd.umich.edu ID 471FA9C9.205AC.30075 ; \n\t24 Oct 2007 16:23:40 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B7FFD6B5D0;\n\tWed, 24 Oct 2007 04:52:43 +0100 (BST)\nMessage-ID: <200710242020.l9OKKrop013158@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 247\n          for <source@collab.sakaiproject.org>;\n          Wed, 24 Oct 2007 04:52:23 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BED691BAC6\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 21:23:13 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9OKKrlr013160\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 16:20:53 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9OKKrop013158\n\tfor source@collab.sakaiproject.org; Wed, 24 Oct 2007 16:20:53 -0400\nDate: Wed, 24 Oct 2007 16:20:53 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37367 - assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 24 16:23:43 2007\nX-DSPAM-Confidence: 0.9871\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37367\n\nAuthor: zqian@umich.edu\nDate: 2007-10-24 16:20:51 -0400 (Wed, 24 Oct 2007)\nNew Revision: 37367\n\nModified:\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/DbAssignmentService.java\nLog:\nfix to SAK-11821: fix the problem with 0 value for getting graded or submission submission count. Was using wrong sql syntax for Oracle\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Wed Oct 24 15:57:55 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 24 Oct 2007 15:57:55 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 24 Oct 2007 15:57:55 -0400\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby score.mail.umich.edu () with ESMTP id l9OJvs2G010325;\n\tWed, 24 Oct 2007 15:57:54 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 471FA3BC.DF68D.16117 ; \n\t24 Oct 2007 15:57:51 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2637254354;\n\tWed, 24 Oct 2007 04:26:53 +0100 (BST)\nMessage-ID: <200710241955.l9OJtAF5013108@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 871\n          for <source@collab.sakaiproject.org>;\n          Wed, 24 Oct 2007 04:26:30 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id F27C410E77\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 20:57:30 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9OJtAFQ013110\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 15:55:10 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9OJtAF5013108\n\tfor source@collab.sakaiproject.org; Wed, 24 Oct 2007 15:55:10 -0400\nDate: Wed, 24 Oct 2007 15:55:10 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r37366 - in db/trunk/db-impl: ext/src/java/org/sakaiproject/springframework/orm/hibernate pack/src/webapp/WEB-INF\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 24 15:57:55 2007\nX-DSPAM-Confidence: 0.9800\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37366\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-10-24 15:54:58 -0400 (Wed, 24 Oct 2007)\nNew Revision: 37366\n\nAdded:\ndb/trunk/db-impl/ext/src/java/org/sakaiproject/springframework/orm/hibernate/HibernateJMXAgent.java\nModified:\ndb/trunk/db-impl/pack/src/webapp/WEB-INF/components.xml\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-12040\n\nFixed,\nEnables Hibernate JMXAgent,\nTo use start tomcat with  -Dcom.sun.management.jmxremote and start jconsole\nonce hibernate is fully registered, you will see a hibernate MBean\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Wed Oct 24 15:50:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 24 Oct 2007 15:50:17 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 24 Oct 2007 15:50:17 -0400\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby chaos.mail.umich.edu () with ESMTP id l9OJoG71008961;\n\tWed, 24 Oct 2007 15:50:16 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 471FA1F3.48B6F.7008 ; \n\t24 Oct 2007 15:50:14 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 263DB54354;\n\tWed, 24 Oct 2007 04:19:16 +0100 (BST)\nMessage-ID: <200710241947.l9OJlTPE013073@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 88\n          for <source@collab.sakaiproject.org>;\n          Wed, 24 Oct 2007 04:18:58 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 66CFF1998F\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 20:49:50 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9OJlTiN013075\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 15:47:30 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9OJlTPE013073\n\tfor source@collab.sakaiproject.org; Wed, 24 Oct 2007 15:47:29 -0400\nDate: Wed, 24 Oct 2007 15:47:29 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r37364 - osp/trunk/presentation/tool/src/webapp/WEB-INF/jsp/presentation\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 24 15:50:17 2007\nX-DSPAM-Confidence: 0.9849\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37364\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-10-24 15:47:28 -0400 (Wed, 24 Oct 2007)\nNew Revision: 37364\n\nModified:\nosp/trunk/presentation/tool/src/webapp/WEB-INF/jsp/presentation/addPresentation2.jsp\nLog:\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12026\nApplying the patch to fix the multi-select for forms.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Wed Oct 24 15:43:27 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 24 Oct 2007 15:43:27 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 24 Oct 2007 15:43:27 -0400\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby godsend.mail.umich.edu () with ESMTP id l9OJhQlA029459;\n\tWed, 24 Oct 2007 15:43:26 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 471FA059.6205F.13911 ; \n\t24 Oct 2007 15:43:24 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4BA6959BCA;\n\tWed, 24 Oct 2007 04:12:26 +0100 (BST)\nMessage-ID: <200710241940.l9OJekDX013057@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 453\n          for <source@collab.sakaiproject.org>;\n          Wed, 24 Oct 2007 04:12:15 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 42F9F1998F\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 20:43:07 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9OJekwb013059\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 15:40:46 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9OJekDX013057\n\tfor source@collab.sakaiproject.org; Wed, 24 Oct 2007 15:40:46 -0400\nDate: Wed, 24 Oct 2007 15:40:46 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r37363 - in memory/trunk/memory-impl: impl/src/java/org/sakaiproject/memory/impl pack/src/webapp/WEB-INF\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 24 15:43:27 2007\nX-DSPAM-Confidence: 0.8474\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37363\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-10-24 15:40:34 -0400 (Wed, 24 Oct 2007)\nNew Revision: 37363\n\nAdded:\nmemory/trunk/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemoryServiceJMXAgent.java\nModified:\nmemory/trunk/memory-impl/impl/src/java/org/sakaiproject/memory/impl/BasicMemoryService.java\nmemory/trunk/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemCache.java\nmemory/trunk/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MultiRefCacheImpl.java\nmemory/trunk/memory-impl/pack/src/webapp/WEB-INF/components.xml\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-12030\n\nFixed, but needs some really carefull testing to make certain that items are being evicted correctly.\nThe multirefcache eviction code is almost the same as it was withthe HashMap memory service.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Wed Oct 24 15:18:05 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 24 Oct 2007 15:18:05 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 24 Oct 2007 15:18:05 -0400\nReceived: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43])\n\tby fan.mail.umich.edu () with ESMTP id l9OJI4lr010671;\n\tWed, 24 Oct 2007 15:18:04 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY serenity.mr.itd.umich.edu ID 471F9A65.BA9A7.1130 ; \n\t24 Oct 2007 15:18:01 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 97C486B933;\n\tWed, 24 Oct 2007 03:48:03 +0100 (BST)\nMessage-ID: <200710241915.l9OJFOGc012965@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 270\n          for <source@collab.sakaiproject.org>;\n          Wed, 24 Oct 2007 03:47:52 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B4ABE1BAC6\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 20:17:44 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9OJFOlD012967\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 15:15:24 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9OJFOGc012965\n\tfor source@collab.sakaiproject.org; Wed, 24 Oct 2007 15:15:24 -0400\nDate: Wed, 24 Oct 2007 15:15:24 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r37362 - oncourse/trunk/src/presence/presence-tool/tool/src/java/org/sakaiproject/presence/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 24 15:18:05 2007\nX-DSPAM-Confidence: 0.9791\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37362\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-10-24 15:15:23 -0400 (Wed, 24 Oct 2007)\nNew Revision: 37362\n\nModified:\noncourse/trunk/src/presence/presence-tool/tool/src/java/org/sakaiproject/presence/tool/PresenceTool.java\nLog:\nONC-8 - layout issue change\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Wed Oct 24 15:17:35 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 24 Oct 2007 15:17:35 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 24 Oct 2007 15:17:35 -0400\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby godsend.mail.umich.edu () with ESMTP id l9OJHY98014853;\n\tWed, 24 Oct 2007 15:17:34 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 471F9A46.E9CC.10597 ; \n\t24 Oct 2007 15:17:30 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E7C3367A66;\n\tWed, 24 Oct 2007 03:47:29 +0100 (BST)\nMessage-ID: <200710241914.l9OJEmfL012953@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 997\n          for <source@collab.sakaiproject.org>;\n          Wed, 24 Oct 2007 03:47:07 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0BDEA1BAC6\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 20:17:08 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9OJEmT3012955\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 15:14:48 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9OJEmfL012953\n\tfor source@collab.sakaiproject.org; Wed, 24 Oct 2007 15:14:48 -0400\nDate: Wed, 24 Oct 2007 15:14:48 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r37361 - oncourse/trunk/src/presence/presence-tool/tool/src/java/org/sakaiproject/presence/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 24 15:17:35 2007\nX-DSPAM-Confidence: 0.9787\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37361\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-10-24 15:14:47 -0400 (Wed, 24 Oct 2007)\nNew Revision: 37361\n\nModified:\noncourse/trunk/src/presence/presence-tool/tool/src/java/org/sakaiproject/presence/tool/PresenceTool.java\nLog:\nONC-8 - layout issue change\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Oct 24 12:09:08 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 24 Oct 2007 12:09:08 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 24 Oct 2007 12:09:08 -0400\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby score.mail.umich.edu () with ESMTP id l9OG960Q027195;\n\tWed, 24 Oct 2007 12:09:06 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 471F6E16.66108.20276 ; \n\t24 Oct 2007 12:08:57 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3157961DDD;\n\tWed, 24 Oct 2007 00:38:56 +0100 (BST)\nMessage-ID: <200710241606.l9OG6IYl012700@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 243\n          for <source@collab.sakaiproject.org>;\n          Wed, 24 Oct 2007 00:38:41 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5E8681B9A1\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 17:08:38 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9OG6I9S012702\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 12:06:18 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9OG6IYl012700\n\tfor source@collab.sakaiproject.org; Wed, 24 Oct 2007 12:06:18 -0400\nDate: Wed, 24 Oct 2007 12:06:18 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 24 12:09:08 2007\nX-DSPAM-Confidence: 0.9861\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37356\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-24 12:05:58 -0400 (Wed, 24 Oct 2007)\nNew Revision: 37356\n\nAdded:\nmemory/branches/SAK-11913/memory-test/\nmemory/branches/SAK-11913/memory-test/.classpath\nmemory/branches/SAK-11913/memory-test/.project\nmemory/branches/SAK-11913/memory-test/impl/\nmemory/branches/SAK-11913/memory-test/impl/pom.xml\nmemory/branches/SAK-11913/memory-test/impl/src/\nmemory/branches/SAK-11913/memory-test/impl/src/java/\nmemory/branches/SAK-11913/memory-test/impl/src/java/org/\nmemory/branches/SAK-11913/memory-test/impl/src/java/org/sakaiproject/\nmemory/branches/SAK-11913/memory-test/impl/src/java/org/sakaiproject/memory/\nmemory/branches/SAK-11913/memory-test/impl/src/java/org/sakaiproject/memory/test/\nmemory/branches/SAK-11913/memory-test/impl/src/java/org/sakaiproject/memory/test/LoadTestMemoryService.java\nmemory/branches/SAK-11913/memory-test/pack/\nmemory/branches/SAK-11913/memory-test/pack/pom.xml\nmemory/branches/SAK-11913/memory-test/pack/src/\nmemory/branches/SAK-11913/memory-test/pack/src/webapp/\nmemory/branches/SAK-11913/memory-test/pack/src/webapp/WEB-INF/\nmemory/branches/SAK-11913/memory-test/pack/src/webapp/WEB-INF/components.xml\nmemory/branches/SAK-11913/memory-test/pom.xml\nModified:\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/BasicMemoryService.java\nLog:\nSAK-11913: added load testing project\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Wed Oct 24 11:52:31 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 24 Oct 2007 11:52:31 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 24 Oct 2007 11:52:31 -0400\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby sleepers.mail.umich.edu () with ESMTP id l9OFqU74031034;\n\tWed, 24 Oct 2007 11:52:30 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 471F6A38.9FCC5.30113 ; \n\t24 Oct 2007 11:52:27 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 8ECF84E687;\n\tWed, 24 Oct 2007 00:22:22 +0100 (BST)\nMessage-ID: <200710241549.l9OFnhlk012680@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 225\n          for <source@collab.sakaiproject.org>;\n          Wed, 24 Oct 2007 00:22:05 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C92261D3CF\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 16:52:03 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9OFnhRc012682\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 11:49:43 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9OFnhlk012680\n\tfor source@collab.sakaiproject.org; Wed, 24 Oct 2007 11:49:43 -0400\nDate: Wed, 24 Oct 2007 11:49:43 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r37355 - reference/trunk/docs/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 24 11:52:31 2007\nX-DSPAM-Confidence: 0.9789\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37355\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-10-24 11:49:39 -0400 (Wed, 24 Oct 2007)\nNew Revision: 37355\n\nModified:\nreference/trunk/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-11948\nFixed\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Oct 24 11:31:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 24 Oct 2007 11:31:42 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 24 Oct 2007 11:31:42 -0400\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby chaos.mail.umich.edu () with ESMTP id l9OFVfdG013510;\n\tWed, 24 Oct 2007 11:31:41 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 471F654E.1A471.17969 ; \n\t24 Oct 2007 11:31:28 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 24C0A6B652;\n\tWed, 24 Oct 2007 00:01:23 +0100 (BST)\nMessage-ID: <200710241528.l9OFSbmG012653@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 137\n          for <source@collab.sakaiproject.org>;\n          Wed, 24 Oct 2007 00:00:55 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7F98FDD16\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 16:30:57 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9OFSbiF012655\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 11:28:37 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9OFSbmG012653\n\tfor source@collab.sakaiproject.org; Wed, 24 Oct 2007 11:28:37 -0400\nDate: Wed, 24 Oct 2007 11:28:37 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37354 - memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 24 11:31:42 2007\nX-DSPAM-Confidence: 0.9830\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37354\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-24 11:28:33 -0400 (Wed, 24 Oct 2007)\nNew Revision: 37354\n\nModified:\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/BasicMemoryService.java\nLog:\nSAK-11913: Made the memory stats easier to read and more informative\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Oct 24 11:11:47 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 24 Oct 2007 11:11:47 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 24 Oct 2007 11:11:47 -0400\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby jacknife.mail.umich.edu () with ESMTP id l9OFBidq009905;\n\tWed, 24 Oct 2007 11:11:44 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 471F60AB.69553.6182 ; \n\t24 Oct 2007 11:11:42 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 863CD6B61B;\n\tTue, 23 Oct 2007 23:41:42 +0100 (BST)\nMessage-ID: <200710241508.l9OF8ucw012641@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 19\n          for <source@collab.sakaiproject.org>;\n          Tue, 23 Oct 2007 23:41:21 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A9A7C1D3C7\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 16:11:16 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9OF8ujR012643\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 11:08:56 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9OF8ucw012641\n\tfor source@collab.sakaiproject.org; Wed, 24 Oct 2007 11:08:56 -0400\nDate: Wed, 24 Oct 2007 11:08:56 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37353 - memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 24 11:11:47 2007\nX-DSPAM-Confidence: 0.9831\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37353\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-24 11:08:51 -0400 (Wed, 24 Oct 2007)\nNew Revision: 37353\n\nModified:\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/BasicMemoryService.java\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemCache.java\nLog:\nSAK-11913: Made the memory stats easier to read and more informative\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Wed Oct 24 09:58:46 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 24 Oct 2007 09:58:46 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 24 Oct 2007 09:58:46 -0400\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby faithful.mail.umich.edu () with ESMTP id l9ODwjWi011284;\n\tWed, 24 Oct 2007 09:58:45 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 471F4F78.721F3.31484 ; \n\t24 Oct 2007 09:58:28 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id EAD216B553;\n\tTue, 23 Oct 2007 22:28:17 +0100 (BST)\nMessage-ID: <200710241355.l9ODteZ8012495@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 965\n          for <source@collab.sakaiproject.org>;\n          Tue, 23 Oct 2007 22:28:05 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0533F1BAB4\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 14:57:59 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9ODteNf012497\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 09:55:40 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9ODteZ8012495\n\tfor source@collab.sakaiproject.org; Wed, 24 Oct 2007 09:55:40 -0400\nDate: Wed, 24 Oct 2007 09:55:40 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37352 - site-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 24 09:58:46 2007\nX-DSPAM-Confidence: 0.8508\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37352\n\nAuthor: zqian@umich.edu\nDate: 2007-10-24 09:55:38 -0400 (Wed, 24 Oct 2007)\nNew Revision: 37352\n\nModified:\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-group.vm\nLog:\nfix 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\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Oct 24 08:08:46 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 24 Oct 2007 08:08:46 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 24 Oct 2007 08:08:46 -0400\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby panther.mail.umich.edu () with ESMTP id l9OC8kTm028425;\n\tWed, 24 Oct 2007 08:08:46 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 471F35C8.A01AD.22014 ; \n\t24 Oct 2007 08:08:43 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0AED76B538;\n\tTue, 23 Oct 2007 20:55:40 +0100 (BST)\nMessage-ID: <200710241205.l9OC5pM8012304@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 13\n          for <source@collab.sakaiproject.org>;\n          Tue, 23 Oct 2007 20:55:18 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id C48031CF18\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 13:08:10 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9OC5pWR012306\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 08:05:51 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9OC5pM8012304\n\tfor source@collab.sakaiproject.org; Wed, 24 Oct 2007 08:05:51 -0400\nDate: Wed, 24 Oct 2007 08:05:51 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37350 - in memory/branches/SAK-11913/memory-impl: impl/src/java/org/sakaiproject/memory/impl pack/src/webapp/WEB-INF\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 24 08:08:46 2007\nX-DSPAM-Confidence: 0.9859\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37350\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-24 08:05:40 -0400 (Wed, 24 Oct 2007)\nNew Revision: 37350\n\nModified:\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/BasicMemoryService.java\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemCache.java\nmemory/branches/SAK-11913/memory-impl/pack/src/webapp/WEB-INF/ehcache-beans.xml\nLog:\nSAK-11913: Adjusted the configuration to remove the cache that was created in memory, tweaked the implementation of the memory service\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Wed Oct 24 08:08:40 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 24 Oct 2007 08:08:40 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 24 Oct 2007 08:08:40 -0400\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby godsend.mail.umich.edu () with ESMTP id l9OC8dbn011784;\n\tWed, 24 Oct 2007 08:08:39 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 471F35B8.D4058.23027 ; \n\t24 Oct 2007 08:08:27 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 121196B52E;\n\tTue, 23 Oct 2007 20:55:30 +0100 (BST)\nMessage-ID: <200710241205.l9OC5bRv012292@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 467\n          for <source@collab.sakaiproject.org>;\n          Tue, 23 Oct 2007 20:55:04 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D37211CF18\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 13:07:57 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9OC5b51012294\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 08:05:37 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9OC5bRv012292\n\tfor source@collab.sakaiproject.org; Wed, 24 Oct 2007 08:05:37 -0400\nDate: Wed, 24 Oct 2007 08:05:37 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37349 - memory/branches/SAK-11913/memory-api/api/src/java\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 24 08:08:40 2007\nX-DSPAM-Confidence: 0.9866\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37349\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-24 08:05:33 -0400 (Wed, 24 Oct 2007)\nNew Revision: 37349\n\nModified:\nmemory/branches/SAK-11913/memory-api/api/src/java/ehcache.xml\nLog:\nSAK-11913: Adjusted the configuration to remove the cache that was created in memory, tweaked the implementation of the memory service\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom mbreuker@loi.nl Wed Oct 24 07:13:09 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 24 Oct 2007 07:13:09 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 24 Oct 2007 07:13:09 -0400\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby flawless.mail.umich.edu () with ESMTP id l9OBD89b013561;\n\tWed, 24 Oct 2007 07:13:08 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 471F28BE.C0264.29249 ; \n\t24 Oct 2007 07:13:05 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C8C7053BE4;\n\tTue, 23 Oct 2007 20:00:09 +0100 (BST)\nMessage-ID: <200710241110.l9OBAK1L012263@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 336\n          for <source@collab.sakaiproject.org>;\n          Tue, 23 Oct 2007 19:59:45 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CAB3E1BA75\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 12:12:39 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9OBAKuE012265\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 07:10:20 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9OBAK1L012263\n\tfor source@collab.sakaiproject.org; Wed, 24 Oct 2007 07:10:20 -0400\nDate: Wed, 24 Oct 2007 07:10:20 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to mbreuker@loi.nl using -f\nTo: source@collab.sakaiproject.org\nFrom: mbreuker@loi.nl\nSubject: [sakai] svn commit: r37348 - blog/trunk/tool/src/bundle/uk/ac/lancs/e_science/sakai/tools/blogger/bundle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 24 07:13:09 2007\nX-DSPAM-Confidence: 0.9797\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37348\n\nAuthor: mbreuker@loi.nl\nDate: 2007-10-24 07:10:15 -0400 (Wed, 24 Oct 2007)\nNew Revision: 37348\n\nModified:\nblog/trunk/tool/src/bundle/uk/ac/lancs/e_science/sakai/tools/blogger/bundle/Messages_nl.properties\nLog:\nSAK-12021 - update dutch translations (blogger tool)\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Wed Oct 24 04:07:45 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Wed, 24 Oct 2007 04:07:45 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Wed, 24 Oct 2007 04:07:45 -0400\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby fan.mail.umich.edu () with ESMTP id l9O87iw0008999;\n\tWed, 24 Oct 2007 04:07:44 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 471EFD4A.C7C55.24039 ; \n\t24 Oct 2007 04:07:41 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 576C655A94;\n\tTue, 23 Oct 2007 16:59:32 +0100 (BST)\nMessage-ID: <200710240805.l9O852hN012104@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 410\n          for <source@collab.sakaiproject.org>;\n          Tue, 23 Oct 2007 16:59:07 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 005301CD04\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 09:07:21 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9O8520B012106\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 04:05:02 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9O852hN012104\n\tfor source@collab.sakaiproject.org; Wed, 24 Oct 2007 04:05:02 -0400\nDate: Wed, 24 Oct 2007 04:05:02 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r37347 - db/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Wed Oct 24 04:07:45 2007\nX-DSPAM-Confidence: 0.9788\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37347\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-10-24 04:04:55 -0400 (Wed, 24 Oct 2007)\nNew Revision: 37347\n\nModified:\ndb/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionController.java\ndb/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionDriver.java\ndb/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionException.java\ndb/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionHandler.java\ndb/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion/UpgradeSchema.java\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-12031\n\nMissed build errors after syncing with assignments.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Tue Oct 23 21:15:34 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 23 Oct 2007 21:15:34 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 23 Oct 2007 21:15:34 -0400\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby brazil.mail.umich.edu () with ESMTP id l9O1FYwE032450;\n\tTue, 23 Oct 2007 21:15:34 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 471E9CB1.3B37D.24099 ; \n\t23 Oct 2007 21:15:31 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0E2106B22A;\n\tTue, 23 Oct 2007 10:09:02 +0100 (BST)\nMessage-ID: <200710240112.l9O1CvVS011417@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 953\n          for <source@collab.sakaiproject.org>;\n          Tue, 23 Oct 2007 10:08:44 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5EFA8B2BC\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 02:15:15 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9O1CvcD011419\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 21:12:57 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9O1CvVS011417\n\tfor source@collab.sakaiproject.org; Tue, 23 Oct 2007 21:12:57 -0400\nDate: Tue, 23 Oct 2007 21:12:57 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37346 - in assignment/branches/sakai_2-4-x/assignment-tool/tool/src: bundle java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 23 21:15:34 2007\nX-DSPAM-Confidence: 0.9872\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37346\n\nAuthor: zqian@umich.edu\nDate: 2007-10-23 21:12:53 -0400 (Tue, 23 Oct 2007)\nNew Revision: 37346\n\nModified:\nassignment/branches/sakai_2-4-x/assignment-tool/tool/src/bundle/assignment.properties\nassignment/branches/sakai_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerge the fix to SAK-11967 into 2-4-x branch:svn merge -r 37334:37335 https://source.sakaiproject.org/svn/assignment/trunk\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Tue Oct 23 21:12:48 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 23 Oct 2007 21:12:48 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 23 Oct 2007 21:12:48 -0400\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby faithful.mail.umich.edu () with ESMTP id l9O1Clpd030175;\n\tTue, 23 Oct 2007 21:12:47 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 471E9C08.D6723.9501 ; \n\t23 Oct 2007 21:12:43 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5498A6B22A;\n\tTue, 23 Oct 2007 10:06:27 +0100 (BST)\nMessage-ID: <200710240110.l9O1A4d3011404@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 455\n          for <source@collab.sakaiproject.org>;\n          Tue, 23 Oct 2007 10:06:12 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 659E5B2BC\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 02:12:22 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9O1A4Uk011406\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 21:10:04 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9O1A4d3011404\n\tfor source@collab.sakaiproject.org; Tue, 23 Oct 2007 21:10:04 -0400\nDate: Tue, 23 Oct 2007 21:10:04 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37345 - in assignment/branches/post-2-4/assignment-tool/tool/src: bundle java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 23 21:12:48 2007\nX-DSPAM-Confidence: 0.9873\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37345\n\nAuthor: zqian@umich.edu\nDate: 2007-10-23 21:09:59 -0400 (Tue, 23 Oct 2007)\nNew Revision: 37345\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/bundle/assignment.properties\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerge the fix to SAK-11967 into post-2-4 branch:svn merge -r 37334:37335 https://source.sakaiproject.org/svn/assignment/trunk\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Tue Oct 23 19:54:11 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 23 Oct 2007 19:54:11 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 23 Oct 2007 19:54:11 -0400\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby sleepers.mail.umich.edu () with ESMTP id l9NNsAqi030299;\n\tTue, 23 Oct 2007 19:54:10 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 471E899B.D0531.1829 ; \n\t23 Oct 2007 19:54:06 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3155A68995;\n\tTue, 23 Oct 2007 08:47:53 +0100 (BST)\nMessage-ID: <200710232351.l9NNpYig011284@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 676\n          for <source@collab.sakaiproject.org>;\n          Tue, 23 Oct 2007 08:47:40 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 365BDBDBE\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 00:53:52 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NNpYef011286\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 19:51:34 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NNpYig011284\n\tfor source@collab.sakaiproject.org; Tue, 23 Oct 2007 19:51:34 -0400\nDate: Tue, 23 Oct 2007 19:51:34 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r37344 - assignment/trunk\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 23 19:54:11 2007\nX-DSPAM-Confidence: 0.9868\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37344\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-10-23 19:51:30 -0400 (Tue, 23 Oct 2007)\nNew Revision: 37344\n\nModified:\nassignment/trunk/runconversion-2.4.x.sh\nassignment/trunk/runconversion.sh\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-12031\n\nModified conversion scripts to use the central framework\nThe could be modified further to use the central script, left notes in the patch.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Tue Oct 23 19:47:28 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 23 Oct 2007 19:47:28 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 23 Oct 2007 19:47:28 -0400\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby godsend.mail.umich.edu () with ESMTP id l9NNlRxR019493;\n\tTue, 23 Oct 2007 19:47:27 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 471E8808.80DEF.11446 ; \n\t23 Oct 2007 19:47:23 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B5C8F4E754;\n\tTue, 23 Oct 2007 08:41:09 +0100 (BST)\nMessage-ID: <200710232344.l9NNijIu011229@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 176\n          for <source@collab.sakaiproject.org>;\n          Tue, 23 Oct 2007 08:40:51 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BC2D4BDBE\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 00:47:03 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NNikkd011231\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 19:44:46 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NNijIu011229\n\tfor source@collab.sakaiproject.org; Tue, 23 Oct 2007 19:44:45 -0400\nDate: Tue, 23 Oct 2007 19:44:45 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 23 19:47:28 2007\nX-DSPAM-Confidence: 0.9809\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37343\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-10-23 19:44:33 -0400 (Tue, 23 Oct 2007)\nNew Revision: 37343\n\nRemoved:\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/api/SchemaConversionHandler.java\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionController.java\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionDriver.java\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionException.java\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/UpgradeSchema.java\nModified:\nassignment/trunk/assignment-impl/impl/pom.xml\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/CombineDuplicateSubmissionsConversionHandler.java\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/RemoveDuplicateSubmissionsConversionHandler.java\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SubmitterIdAssignmentsConversionHandler.java\nLog:\nMoved the conversion framework into sakai-db-conversion\n\nhttp://jira.sakaiproject.org/jira/browse/SAK-12031\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Tue Oct 23 19:46:21 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 23 Oct 2007 19:46:21 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 23 Oct 2007 19:46:21 -0400\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby brazil.mail.umich.edu () with ESMTP id l9NNkK65022332;\n\tTue, 23 Oct 2007 19:46:20 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 471E87C6.DAD4F.4946 ; \n\t23 Oct 2007 19:46:17 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 06EE550FD6;\n\tTue, 23 Oct 2007 08:39:59 +0100 (BST)\nMessage-ID: <200710232343.l9NNhhcJ011217@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 511\n          for <source@collab.sakaiproject.org>;\n          Tue, 23 Oct 2007 08:39:42 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D79FFBDBE\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 00:46:01 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NNhijf011219\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 19:43:44 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NNhhcJ011217\n\tfor source@collab.sakaiproject.org; Tue, 23 Oct 2007 19:43:43 -0400\nDate: Tue, 23 Oct 2007 19:43:43 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 23 19:46:21 2007\nX-DSPAM-Confidence: 0.9804\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37342\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-10-23 19:43:14 -0400 (Tue, 23 Oct 2007)\nNew Revision: 37342\n\nAdded:\ndb/trunk/db-util/conversion/\ndb/trunk/db-util/conversion/pom.xml\ndb/trunk/db-util/conversion/runconversion.sh\ndb/trunk/db-util/conversion/src/\ndb/trunk/db-util/conversion/src/java/\ndb/trunk/db-util/conversion/src/java/org/\ndb/trunk/db-util/conversion/src/java/org/sakaiproject/\ndb/trunk/db-util/conversion/src/java/org/sakaiproject/util/\ndb/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion/\ndb/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion/CheckConnection.java\ndb/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionController.java\ndb/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionDriver.java\ndb/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionException.java\ndb/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion/SchemaConversionHandler.java\ndb/trunk/db-util/conversion/src/java/org/sakaiproject/util/conversion/UpgradeSchema.java\ndb/trunk/db-util/storage/src/java/org/sakaiproject/util/ByteStorageConversion.java\nModified:\ndb/trunk/db-util/.classpath\ndb/trunk/pom.xml\nLog:\nMoved conversion utility into sakai-db-conversion\n\nhttp://jira.sakaiproject.org/jira/browse/SAK-12031\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Tue Oct 23 19:44:39 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 23 Oct 2007 19:44:39 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 23 Oct 2007 19:44:39 -0400\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby faithful.mail.umich.edu () with ESMTP id l9NNicmb026601;\n\tTue, 23 Oct 2007 19:44:38 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 471E8761.16AED.17085 ; \n\t23 Oct 2007 19:44:35 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9D2EE4EC4D;\n\tTue, 23 Oct 2007 08:38:08 +0100 (BST)\nMessage-ID: <200710232342.l9NNg1xw011205@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 339\n          for <source@collab.sakaiproject.org>;\n          Tue, 23 Oct 2007 08:37:50 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5695DBDBE\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 00:44:19 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NNg10Y011207\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 19:42:01 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NNg1xw011205\n\tfor source@collab.sakaiproject.org; Tue, 23 Oct 2007 19:42:01 -0400\nDate: Tue, 23 Oct 2007 19:42:01 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 23 19:44:39 2007\nX-DSPAM-Confidence: 0.9761\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37341\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-10-23 19:41:38 -0400 (Tue, 23 Oct 2007)\nNew Revision: 37341\n\nRemoved:\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/ByteStorageConversion.java\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/CheckConnection.java\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/SchemaConversionController.java\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/SchemaConversionDriver.java\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/SchemaConversionException.java\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/SchemaConversionHandler.java\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/UpgradeSchema.java\ncontent/trunk/runconversion.sh\nModified:\ncontent/trunk/content-impl/impl/pom.xml\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/DbContentService.java\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/Type1BaseContentCollectionSerializer.java\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/Type1BaseContentResourceSerializer.java\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/ConvertTime.java\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/FileSizeResourcesConversionHandler.java\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/Type1BlobCollectionConversionHandler.java\ncontent/trunk/content-impl/impl/src/java/org/sakaiproject/content/impl/serialize/impl/conversion/Type1BlobResourcesConversionHandler.java\ncontent/trunk/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/ByteStorageConversionCheck.java\ncontent/trunk/content-impl/impl/src/test/org/sakaiproject/content/impl/serialize/impl/test/MySQLByteStorage.java\nLog:\nMoved conversion utility into /db\n\n\nhttp://jira.sakaiproject.org/jira/browse/SAK-12031\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Tue Oct 23 19:42:35 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 23 Oct 2007 19:42:35 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 23 Oct 2007 19:42:35 -0400\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby mission.mail.umich.edu () with ESMTP id l9NNgY9d029854;\n\tTue, 23 Oct 2007 19:42:34 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 471E86DC.C4520.27633 ; \n\t23 Oct 2007 19:42:23 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6AAA4679B8;\n\tTue, 23 Oct 2007 08:35:51 +0100 (BST)\nMessage-ID: <200710232339.l9NNdiEH011193@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 465\n          for <source@collab.sakaiproject.org>;\n          Tue, 23 Oct 2007 08:35:28 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B1172BDBE\n\tfor <source@collab.sakaiproject.org>; Wed, 24 Oct 2007 00:42:02 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NNdiO1011195\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 19:39:44 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NNdiEH011193\n\tfor source@collab.sakaiproject.org; Tue, 23 Oct 2007 19:39:44 -0400\nDate: Tue, 23 Oct 2007 19:39:44 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37340 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 23 19:42:35 2007\nX-DSPAM-Confidence: 0.9857\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37340\n\nAuthor: dlhaines@umich.edu\nDate: 2007-10-23 19:39:42 -0400 (Tue, 23 Oct 2007)\nNew Revision: 37340\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xN.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xN.properties\nLog:\nCTools: update 2.4.xN build for new evaluation revision.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Tue Oct 23 18:31:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 23 Oct 2007 18:31:43 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 23 Oct 2007 18:31:43 -0400\nReceived: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43])\n\tby casino.mail.umich.edu () with ESMTP id l9NMVgk3003906;\n\tTue, 23 Oct 2007 18:31:42 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY serenity.mr.itd.umich.edu ID 471E7648.9E569.9011 ; \n\t23 Oct 2007 18:31:39 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 98F9D695E6;\n\tTue, 23 Oct 2007 07:25:18 +0100 (BST)\nMessage-ID: <200710232229.l9NMT4OU011109@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 891\n          for <source@collab.sakaiproject.org>;\n          Tue, 23 Oct 2007 07:25:00 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B1AAD1CDF6\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 23:31:21 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NMT4sv011111\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 18:29:04 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NMT4OU011109\n\tfor source@collab.sakaiproject.org; Tue, 23 Oct 2007 18:29:04 -0400\nDate: Tue, 23 Oct 2007 18:29:04 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 23 18:31:43 2007\nX-DSPAM-Confidence: 0.9737\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37339\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-10-23 18:28:52 -0400 (Tue, 23 Oct 2007)\nNew Revision: 37339\n\nModified:\ncontent/trunk/content-impl-jcr/pack/pom.xml\ncontent/trunk/content-impl-jcr/pack/src/webapp/WEB-INF/components-jcr.xml\ncontent/trunk/content-impl-jcr/pack/src/webapp/WEB-INF/components.xml\ncontent/trunk/contentmultiplex-impl/\ncontent/trunk/contentmultiplex-impl/impl/src/java/org/sakaiproject/content/multiplex/ContentHostingMultiplexService.java\nLog:\nIntegrating the multiplexer\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Tue Oct 23 18:28:35 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 23 Oct 2007 18:28:35 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 23 Oct 2007 18:28:35 -0400\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby faithful.mail.umich.edu () with ESMTP id l9NMSYGP024562;\n\tTue, 23 Oct 2007 18:28:34 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 471E757F.2B346.20800 ; \n\t23 Oct 2007 18:28:18 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 77552695E6;\n\tTue, 23 Oct 2007 07:22:03 +0100 (BST)\nMessage-ID: <200710232225.l9NMPfW9011086@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 452\n          for <source@collab.sakaiproject.org>;\n          Tue, 23 Oct 2007 07:21:49 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6D1CC1CDF6\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 23:27:59 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NMPfLj011088\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 18:25:41 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NMPfW9011086\n\tfor source@collab.sakaiproject.org; Tue, 23 Oct 2007 18:25:41 -0400\nDate: Tue, 23 Oct 2007 18:25:41 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 23 18:28:35 2007\nX-DSPAM-Confidence: 0.9859\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37338\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-10-23 18:25:28 -0400 (Tue, 23 Oct 2007)\nNew Revision: 37338\n\nModified:\ncontent/trunk/content-bundles/types.properties\ncontent/trunk/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\ncontent/trunk/content-tool/tool/src/webapp/vm/resources/sakai_properties.vm\nLog:\nFixed the mount point issue,\nthere is a new bundle value which needs propagating to other language files.\n\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12019\n\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Tue Oct 23 17:36:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 23 Oct 2007 17:36:42 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 23 Oct 2007 17:36:42 -0400\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby godsend.mail.umich.edu () with ESMTP id l9NLafQB019765;\n\tTue, 23 Oct 2007 17:36:41 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 471E6963.9F5FA.22252 ; \n\t23 Oct 2007 17:36:38 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3DA636842F;\n\tTue, 23 Oct 2007 06:30:23 +0100 (BST)\nMessage-ID: <200710232134.l9NLY2nm010977@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 198\n          for <source@collab.sakaiproject.org>;\n          Tue, 23 Oct 2007 06:30:11 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6F442C82C\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 22:36:20 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NLY2Xf010979\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 17:34:03 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NLY2nm010977\n\tfor source@collab.sakaiproject.org; Tue, 23 Oct 2007 17:34:02 -0400\nDate: Tue, 23 Oct 2007 17:34:02 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r37337 - rwiki/trunk/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 23 17:36:42 2007\nX-DSPAM-Confidence: 0.9759\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37337\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-10-23 17:33:59 -0400 (Tue, 23 Oct 2007)\nNew Revision: 37337\n\nModified:\nrwiki/trunk/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/RequestScopeSuperBean.java\nLog:\nSAK-11988\nMissed eclipse file\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Tue Oct 23 17:21:59 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 23 Oct 2007 17:21:59 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 23 Oct 2007 17:21:59 -0400\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby brazil.mail.umich.edu () with ESMTP id l9NLLw2R023313;\n\tTue, 23 Oct 2007 17:21:58 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 471E65EF.BA959.21140 ; \n\t23 Oct 2007 17:21:55 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5C57F6A3AA;\n\tTue, 23 Oct 2007 06:15:12 +0100 (BST)\nMessage-ID: <200710232107.l9NL7Mj2010849@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 945\n          for <source@collab.sakaiproject.org>;\n          Tue, 23 Oct 2007 06:06:00 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A13221CDF7\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 22:09:39 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NL7MiL010851\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 17:07:22 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NL7Mj2010849\n\tfor source@collab.sakaiproject.org; Tue, 23 Oct 2007 17:07:22 -0400\nDate: Tue, 23 Oct 2007 17:07:22 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37335 - in assignment/trunk: assignment-bundles assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 23 17:21:59 2007\nX-DSPAM-Confidence: 0.9861\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37335\n\nAuthor: zqian@umich.edu\nDate: 2007-10-23 17:07:19 -0400 (Tue, 23 Oct 2007)\nNew Revision: 37335\n\nModified:\nassignment/trunk/assignment-bundles/assignment.properties\nassignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nfix to SAK-11967:assignments / problem with mixed format assignments when using the 'assign this grade to all participants without submissions'\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Tue Oct 23 17:21:54 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 23 Oct 2007 17:21:54 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 23 Oct 2007 17:21:54 -0400\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby flawless.mail.umich.edu () with ESMTP id l9NLLrMn001813;\n\tTue, 23 Oct 2007 17:21:53 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 471E65E8.BF4A3.5404 ; \n\t23 Oct 2007 17:21:49 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9B00E6A3A9;\n\tTue, 23 Oct 2007 06:15:11 +0100 (BST)\nMessage-ID: <200710232117.l9NLH3DP010908@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 181\n          for <source@collab.sakaiproject.org>;\n          Tue, 23 Oct 2007 06:12:52 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E756C1CDF8\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 22:19:20 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NLH3AB010910\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 17:17:03 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NLH3DP010908\n\tfor source@collab.sakaiproject.org; Tue, 23 Oct 2007 17:17:03 -0400\nDate: Tue, 23 Oct 2007 17:17:03 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 23 17:21:54 2007\nX-DSPAM-Confidence: 0.8434\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37336\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-10-23 17:16:48 -0400 (Tue, 23 Oct 2007)\nNew Revision: 37336\n\nModified:\nrwiki/trunk/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/SiteEmailNotificationRWiki.java\nrwiki/trunk/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/RequestScopeSuperBean.java\nrwiki/trunk/rwiki-tool/tool/src/java/uk/ac/cam/caret/sakai/rwiki/tool/command/UpdatePreferencesCommand.java\nLog:\nDiscovered that the eid and id usage was the wrong way round.\nFixed over entire preferences storage.\n\nhttp://jira.sakaiproject.org/jira/browse/SAK-11988\n\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Tue Oct 23 14:00:37 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 23 Oct 2007 14:00:37 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 23 Oct 2007 14:00:37 -0400\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby faithful.mail.umich.edu () with ESMTP id l9NI0aMf021236;\n\tTue, 23 Oct 2007 14:00:36 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 471E36B4.2E78C.28190 ; \n\t23 Oct 2007 14:00:26 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D7F4D60CCB;\n\tTue, 23 Oct 2007 03:01:49 +0100 (BST)\nMessage-ID: <200710231753.l9NHrEiO010401@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 37\n          for <source@collab.sakaiproject.org>;\n          Tue, 23 Oct 2007 02:57:07 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A41A61CD94\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 18:55:31 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NHrEig010403\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 13:53:14 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NHrEiO010401\n\tfor source@collab.sakaiproject.org; Tue, 23 Oct 2007 13:53:14 -0400\nDate: Tue, 23 Oct 2007 13:53:14 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37329 - memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 23 14:00:37 2007\nX-DSPAM-Confidence: 0.9838\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37329\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-23 13:53:09 -0400 (Tue, 23 Oct 2007)\nNew Revision: 37329\n\nModified:\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/BasicMemoryService.java\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemCache.java\nLog:\nSAK-11913: Fixed up a few issues in the code so that it is more backwards compatible\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Tue Oct 23 12:38:43 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 23 Oct 2007 12:38:43 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 23 Oct 2007 12:38:43 -0400\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby awakenings.mail.umich.edu () with ESMTP id l9NGcfKA003901;\n\tTue, 23 Oct 2007 12:38:41 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 471E238C.91F59.32451 ; \n\t23 Oct 2007 12:38:39 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0466E6AE58;\n\tTue, 23 Oct 2007 01:40:05 +0100 (BST)\nMessage-ID: <200710231636.l9NGa2eV010292@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 516\n          for <source@collab.sakaiproject.org>;\n          Tue, 23 Oct 2007 01:39:49 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9A2A81CBCC\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 17:38:19 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NGa28P010294\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 12:36:02 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NGa2eV010292\n\tfor source@collab.sakaiproject.org; Tue, 23 Oct 2007 12:36:02 -0400\nDate: Tue, 23 Oct 2007 12:36:02 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37328 - assignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 23 12:38:43 2007\nX-DSPAM-Confidence: 0.9855\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37328\n\nAuthor: zqian@umich.edu\nDate: 2007-10-23 12:36:01 -0400 (Tue, 23 Oct 2007)\nNew Revision: 37328\n\nModified:\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nLog:\nfix to SAK-11634:Assignment uses UsageSession rather than normal Session\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Tue Oct 23 12:23:55 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 23 Oct 2007 12:23:55 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 23 Oct 2007 12:23:55 -0400\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby fan.mail.umich.edu () with ESMTP id l9NGNsmt014124;\n\tTue, 23 Oct 2007 12:23:54 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 471E2006.D6DB1.26664 ; \n\t23 Oct 2007 12:23:38 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A5F015868D;\n\tTue, 23 Oct 2007 01:25:03 +0100 (BST)\nMessage-ID: <200710231621.l9NGL4H1010241@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 234\n          for <source@collab.sakaiproject.org>;\n          Tue, 23 Oct 2007 01:24:50 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id ABDB91CBCC\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 17:23:21 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NGL490010243\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 12:21:04 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NGL4H1010241\n\tfor source@collab.sakaiproject.org; Tue, 23 Oct 2007 12:21:04 -0400\nDate: Tue, 23 Oct 2007 12:21:04 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 23 12:23:55 2007\nX-DSPAM-Confidence: 0.9858\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37327\n\nAuthor: zqian@umich.edu\nDate: 2007-10-23 12:20:57 -0400 (Tue, 23 Oct 2007)\nNew Revision: 37327\n\nModified:\nassignment/branches/post-2-4/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nassignment/branches/post-2-4/assignment-tool/tool/src/bundle/assignment.properties\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nmerged fix to SAK-11992 into post-2-4 branch: svn merge -r 37325:37326 https://source.sakaiproject.org/svn/assignment/trunk/\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Tue Oct 23 12:19:42 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 23 Oct 2007 12:19:42 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 23 Oct 2007 12:19:42 -0400\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby faithful.mail.umich.edu () with ESMTP id l9NGJfqf022011;\n\tTue, 23 Oct 2007 12:19:41 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 471E1F16.7CCE0.4998 ; \n\t23 Oct 2007 12:19:37 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B2E866ADF4;\n\tTue, 23 Oct 2007 01:21:03 +0100 (BST)\nMessage-ID: <200710231617.l9NGH2q4010224@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 622\n          for <source@collab.sakaiproject.org>;\n          Tue, 23 Oct 2007 01:20:51 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3A7031C846\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 17:19:20 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NGH3gv010226\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 12:17:03 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NGH2q4010224\n\tfor source@collab.sakaiproject.org; Tue, 23 Oct 2007 12:17:02 -0400\nDate: Tue, 23 Oct 2007 12:17:02 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 23 12:19:42 2007\nX-DSPAM-Confidence: 0.9899\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37326\n\nAuthor: zqian@umich.edu\nDate: 2007-10-23 12:16:57 -0400 (Tue, 23 Oct 2007)\nNew Revision: 37326\n\nModified:\nassignment/trunk/assignment-bundles/assignment.properties\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/BaseAssignmentService.java\nassignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nfix 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'\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Tue Oct 23 11:37:04 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 23 Oct 2007 11:37:04 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 23 Oct 2007 11:37:04 -0400\nReceived: from carrie.mr.itd.umich.edu (carrie.mr.itd.umich.edu [141.211.93.152])\n\tby panther.mail.umich.edu () with ESMTP id l9NFb36M001839;\n\tTue, 23 Oct 2007 11:37:03 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY carrie.mr.itd.umich.edu ID 471E14FD.E4173.5093 ; \n\t23 Oct 2007 11:36:32 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C62636AE0A;\n\tTue, 23 Oct 2007 00:37:50 +0100 (BST)\nMessage-ID: <200710231533.l9NFXoAF010152@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 909\n          for <source@collab.sakaiproject.org>;\n          Tue, 23 Oct 2007 00:37:31 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5FB221CC1A\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 16:36:06 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NFXo4c010154\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 11:33:50 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NFXoAF010152\n\tfor source@collab.sakaiproject.org; Tue, 23 Oct 2007 11:33:50 -0400\nDate: Tue, 23 Oct 2007 11:33:50 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r37324 - osp/tags/sakai_2-5-0_QA_010_GMT\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 23 11:37:04 2007\nX-DSPAM-Confidence: 0.8473\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37324\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-10-23 11:33:49 -0400 (Tue, 23 Oct 2007)\nNew Revision: 37324\n\nModified:\nosp/tags/sakai_2-5-0_QA_010_GMT/\nosp/tags/sakai_2-5-0_QA_010_GMT/.externals\nosp/tags/sakai_2-5-0_QA_010_GMT/pom.xml\nLog:\nchanges for OSP tag to include gmt\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Tue Oct 23 11:19:14 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 23 Oct 2007 11:19:14 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 23 Oct 2007 11:19:14 -0400\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby sleepers.mail.umich.edu () with ESMTP id l9NFJESr008157;\n\tTue, 23 Oct 2007 11:19:14 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 471E10D4.DF419.26403 ; \n\t23 Oct 2007 11:18:47 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0B38A544F9;\n\tTue, 23 Oct 2007 00:20:08 +0100 (BST)\nMessage-ID: <200710231515.l9NFFtHT010113@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 886\n          for <source@collab.sakaiproject.org>;\n          Tue, 23 Oct 2007 00:19:41 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2F7D11CBE8\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 16:18:10 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NFFt8A010115\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 11:15:55 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NFFtHT010113\n\tfor source@collab.sakaiproject.org; Tue, 23 Oct 2007 11:15:55 -0400\nDate: Tue, 23 Oct 2007 11:15:55 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r37323 - osp/tags\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 23 11:19:14 2007\nX-DSPAM-Confidence: 0.9843\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37323\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-10-23 11:15:54 -0400 (Tue, 23 Oct 2007)\nNew Revision: 37323\n\nAdded:\nosp/tags/sakai_2-5-0_QA_010_GMT/\nLog:\nprep for 2.5 010 OSP + GMT tag\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Tue Oct 23 10:11:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 23 Oct 2007 10:11:17 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 23 Oct 2007 10:11:17 -0400\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby awakenings.mail.umich.edu () with ESMTP id l9NEBFbS001868;\n\tTue, 23 Oct 2007 10:11:15 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 471E00FD.9A85E.17758 ; \n\t23 Oct 2007 10:11:12 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 885316ADB3;\n\tMon, 22 Oct 2007 23:15:28 +0100 (BST)\nMessage-ID: <200710231408.l9NE8bxQ008840@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 687\n          for <source@collab.sakaiproject.org>;\n          Mon, 22 Oct 2007 23:15:07 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 59D141CC24\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 15:10:51 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NE8b8c008842\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 10:08:37 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NE8bxQ008840\n\tfor source@collab.sakaiproject.org; Tue, 23 Oct 2007 10:08:37 -0400\nDate: Tue, 23 Oct 2007 10:08:37 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37228 - in assignment/trunk: . assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 23 10:11:17 2007\nX-DSPAM-Confidence: 0.7610\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37228\n\nAuthor: zqian@umich.edu\nDate: 2007-10-23 10:08:35 -0400 (Tue, 23 Oct 2007)\nNew Revision: 37228\n\nModified:\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/CombineDuplicateSubmissionsConversionHandler.java\nassignment/trunk/upgradeschema_oracle.config\nLog:\nfurther 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\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Tue Oct 23 09:23:04 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 23 Oct 2007 09:23:04 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 23 Oct 2007 09:23:04 -0400\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby awakenings.mail.umich.edu () with ESMTP id l9NDN3PD005080;\n\tTue, 23 Oct 2007 09:23:03 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 471DF5B2.7BFBF.29216 ; \n\t23 Oct 2007 09:23:01 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6F8AC5FDCD;\n\tMon, 22 Oct 2007 22:27:22 +0100 (BST)\nMessage-ID: <200710231320.l9NDKS7E008765@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 123\n          for <source@collab.sakaiproject.org>;\n          Mon, 22 Oct 2007 22:27:10 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6FF771CC18\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 14:22:42 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NDKSmn008767\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 09:20:28 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NDKS7E008765\n\tfor source@collab.sakaiproject.org; Tue, 23 Oct 2007 09:20:28 -0400\nDate: Tue, 23 Oct 2007 09:20:28 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [sakai] svn commit: r37226 - oncourse/trunk/src/presence/presence-tool/tool/src/java/org/sakaiproject/presence/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 23 09:23:04 2007\nX-DSPAM-Confidence: 0.9788\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37226\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-10-23 09:20:27 -0400 (Tue, 23 Oct 2007)\nNew Revision: 37226\n\nModified:\noncourse/trunk/src/presence/presence-tool/tool/src/java/org/sakaiproject/presence/tool/PresenceTool.java\nLog:\nONC-8\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gsilver@umich.edu Tue Oct 23 09:15:07 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 23 Oct 2007 09:15:07 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 23 Oct 2007 09:15:07 -0400\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby flawless.mail.umich.edu () with ESMTP id l9NDF6AT003884;\n\tTue, 23 Oct 2007 09:15:06 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 471DF3D3.C82DC.17732 ; \n\t23 Oct 2007 09:15:02 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4E6276AD47;\n\tMon, 22 Oct 2007 22:19:25 +0100 (BST)\nMessage-ID: <200710231312.l9NDCJBL008723@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 848\n          for <source@collab.sakaiproject.org>;\n          Mon, 22 Oct 2007 22:19:01 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 699E21CC14\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 14:14:33 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NDCJLw008725\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 09:12:20 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NDCJBL008723\n\tfor source@collab.sakaiproject.org; Tue, 23 Oct 2007 09:12:19 -0400\nDate: Tue, 23 Oct 2007 09:12:19 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gsilver@umich.edu\nSubject: [sakai] svn commit: r37225 - in web/trunk/web-tool/tool/src: bundle webapp/vm/web\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 23 09:15:07 2007\nX-DSPAM-Confidence: 0.9804\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37225\n\nAuthor: gsilver@umich.edu\nDate: 2007-10-23 09:12:18 -0400 (Tue, 23 Oct 2007)\nNew Revision: 37225\n\nModified:\nweb/trunk/web-tool/tool/src/bundle/iframe.properties\nweb/trunk/web-tool/tool/src/webapp/vm/web/chef_iframe-customize.vm\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-12007\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Tue Oct 23 09:12:54 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 23 Oct 2007 09:12:54 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 23 Oct 2007 09:12:54 -0400\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby faithful.mail.umich.edu () with ESMTP id l9NDCreF000776;\n\tTue, 23 Oct 2007 09:12:53 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 471DF34E.68C8F.30401 ; \n\t23 Oct 2007 09:12:49 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 43B125FDCD;\n\tMon, 22 Oct 2007 22:17:12 +0100 (BST)\nMessage-ID: <200710231310.l9NDA7mH008680@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 559\n          for <source@collab.sakaiproject.org>;\n          Mon, 22 Oct 2007 22:16:45 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DDBB11CC12\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 14:12:21 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NDA8Eq008682\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 09:10:08 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NDA7mH008680\n\tfor source@collab.sakaiproject.org; Tue, 23 Oct 2007 09:10:07 -0400\nDate: Tue, 23 Oct 2007 09:10:07 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [sakai] svn commit: r37224 - rwiki/trunk/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 23 09:12:54 2007\nX-DSPAM-Confidence: 0.9847\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37224\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-10-23 09:10:02 -0400 (Tue, 23 Oct 2007)\nNew Revision: 37224\n\nModified:\nrwiki/trunk/rwiki-impl/impl/src/java/uk/ac/cam/caret/sakai/rwiki/component/service/impl/SiteEmailNotificationRWiki.java\nLog:\nProblem with confusion over user.getId() and user.getEid() causing emails not to go out.\nThis should perhapse be back ported into 2.4.x\n\nhttp://jira.sakaiproject.org/jira/browse/SAK-11988\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Tue Oct 23 08:42:32 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 23 Oct 2007 08:42:32 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 23 Oct 2007 08:42:32 -0400\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby flawless.mail.umich.edu () with ESMTP id l9NCgVcD015641;\n\tTue, 23 Oct 2007 08:42:31 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 471DEC31.33FF4.23371 ; \n\t23 Oct 2007 08:42:28 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 94DD86ACFA;\n\tMon, 22 Oct 2007 21:46:48 +0100 (BST)\nMessage-ID: <200710231239.l9NCdh36008629@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 146\n          for <source@collab.sakaiproject.org>;\n          Mon, 22 Oct 2007 21:46:24 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2867F1C84A\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 13:41:56 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NCdhwL008631\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 08:39:43 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NCdh36008629\n\tfor source@collab.sakaiproject.org; Tue, 23 Oct 2007 08:39:43 -0400\nDate: Tue, 23 Oct 2007 08:39:43 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37223 - oncourse/branches/sakai_2-4-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 23 08:42:32 2007\nX-DSPAM-Confidence: 0.9783\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37223\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-23 08:39:42 -0400 (Tue, 23 Oct 2007)\nNew Revision: 37223\n\nModified:\noncourse/branches/sakai_2-4-x/\noncourse/branches/sakai_2-4-x/.externals\nLog:\nUpdated externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Tue Oct 23 08:37:36 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 23 Oct 2007 08:37:36 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 23 Oct 2007 08:37:36 -0400\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby mission.mail.umich.edu () with ESMTP id l9NCbZYK015121;\n\tTue, 23 Oct 2007 08:37:35 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 471DEB09.BF385.10894 ; \n\t23 Oct 2007 08:37:32 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 9AF376AA3E;\n\tMon, 22 Oct 2007 21:41:48 +0100 (BST)\nMessage-ID: <200710231234.l9NCYt5v008605@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 686\n          for <source@collab.sakaiproject.org>;\n          Mon, 22 Oct 2007 21:41:35 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0EFB51C84A\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 13:37:08 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NCYtJw008607\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 08:34:55 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NCYt5v008605\n\tfor source@collab.sakaiproject.org; Tue, 23 Oct 2007 08:34:55 -0400\nDate: Tue, 23 Oct 2007 08:34:55 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37222 - memory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/memory/impl/test\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 23 08:37:36 2007\nX-DSPAM-Confidence: 0.8477\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37222\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-23 08:34:51 -0400 (Tue, 23 Oct 2007)\nNew Revision: 37222\n\nModified:\nmemory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/memory/impl/test/MemCacheTest.java\nLog:\nSAK-11913: All unit tests completed and running correctly\nInterfaces should be stable now\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Tue Oct 23 07:45:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 23 Oct 2007 07:45:30 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 23 Oct 2007 07:45:30 -0400\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby mission.mail.umich.edu () with ESMTP id l9NBjTkC024997;\n\tTue, 23 Oct 2007 07:45:29 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 471DDED4.2D314.9581 ; \n\t23 Oct 2007 07:45:27 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 7A4A459CD3;\n\tMon, 22 Oct 2007 20:49:44 +0100 (BST)\nMessage-ID: <200710231142.l9NBgvM2008548@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 567\n          for <source@collab.sakaiproject.org>;\n          Mon, 22 Oct 2007 20:49:27 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 2A049AF36\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 12:45:11 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NBgvOE008550\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 07:42:57 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NBgvM2008548\n\tfor source@collab.sakaiproject.org; Tue, 23 Oct 2007 07:42:57 -0400\nDate: Tue, 23 Oct 2007 07:42:57 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37221 - in memory/branches/SAK-11913/memory-impl/impl/src: java/org/sakaiproject/memory/impl test/org/sakaiproject/memory/impl/test\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 23 07:45:30 2007\nX-DSPAM-Confidence: 0.7558\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37221\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-23 07:42:48 -0400 (Tue, 23 Oct 2007)\nNew Revision: 37221\n\nModified:\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemCache.java\nmemory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/memory/impl/test/MemCacheTest.java\nLog:\nSAK-11913: Updates to make the package closer to JSR-107\nTests now mostly completed\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Tue Oct 23 07:44:39 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Tue, 23 Oct 2007 07:44:39 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Tue, 23 Oct 2007 07:44:39 -0400\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby sleepers.mail.umich.edu () with ESMTP id l9NBidkS010648;\n\tTue, 23 Oct 2007 07:44:39 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 471DDEA1.35E5A.8157 ; \n\t23 Oct 2007 07:44:36 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2017A52410;\n\tMon, 22 Oct 2007 20:48:21 +0100 (BST)\nMessage-ID: <200710231141.l9NBfpHD008536@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 342\n          for <source@collab.sakaiproject.org>;\n          Mon, 22 Oct 2007 20:47:57 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 364AE1C8B6\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 12:44:05 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9NBfpRU008538\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 07:41:51 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9NBfpHD008536\n\tfor source@collab.sakaiproject.org; Tue, 23 Oct 2007 07:41:51 -0400\nDate: Tue, 23 Oct 2007 07:41:51 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37220 - memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Tue Oct 23 07:44:39 2007\nX-DSPAM-Confidence: 0.9845\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37220\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-23 07:41:46 -0400 (Tue, 23 Oct 2007)\nNew Revision: 37220\n\nModified:\nmemory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/Cache.java\nmemory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/Cacher.java\nLog:\nMostly completed tests now, still need to work out the attach tests\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zach.thomas@txstate.edu Mon Oct 22 19:57:34 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 22 Oct 2007 19:57:34 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 22 Oct 2007 19:57:34 -0400\nReceived: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43])\n\tby godsend.mail.umich.edu () with ESMTP id l9MNvXP9013454;\n\tMon, 22 Oct 2007 19:57:33 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY serenity.mr.itd.umich.edu ID 471D38E8.6E665.15061 ; \n\t22 Oct 2007 19:57:31 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0FD5D6A8DD;\n\tMon, 22 Oct 2007 09:47:37 +0100 (BST)\nMessage-ID: <200710222354.l9MNsegh007551@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 76\n          for <source@collab.sakaiproject.org>;\n          Mon, 22 Oct 2007 09:47:01 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 171EE1AC79\n\tfor <source@collab.sakaiproject.org>; Tue, 23 Oct 2007 00:56:51 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9MNsenQ007553\n\tfor <source@collab.sakaiproject.org>; Mon, 22 Oct 2007 19:54:40 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9MNsegh007551\n\tfor source@collab.sakaiproject.org; Mon, 22 Oct 2007 19:54:40 -0400\nDate: Mon, 22 Oct 2007 19:54:40 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zach.thomas@txstate.edu\nSubject: [sakai] svn commit: r37219 - content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 22 19:57:34 2007\nX-DSPAM-Confidence: 0.9830\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37219\n\nAuthor: zach.thomas@txstate.edu\nDate: 2007-10-22 19:54:38 -0400 (Mon, 22 Oct 2007)\nNew Revision: 37219\n\nModified:\ncontent/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\nLog:\nadded the lookup of event data classes from the ConditionService\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Mon Oct 22 18:24:00 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 22 Oct 2007 18:24:00 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 22 Oct 2007 18:24:00 -0400\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby faithful.mail.umich.edu () with ESMTP id l9MMNxdm018695;\n\tMon, 22 Oct 2007 18:23:59 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 471D22F9.75E5.1365 ; \n\t22 Oct 2007 18:23:55 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 970946A86D;\n\tMon, 22 Oct 2007 08:14:01 +0100 (BST)\nMessage-ID: <200710222221.l9MMLJjQ006925@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 743\n          for <source@collab.sakaiproject.org>;\n          Mon, 22 Oct 2007 08:13:44 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8AA171629F\n\tfor <source@collab.sakaiproject.org>; Mon, 22 Oct 2007 23:23:30 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9MMLJS3006927\n\tfor <source@collab.sakaiproject.org>; Mon, 22 Oct 2007 18:21:19 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9MMLJjQ006925\n\tfor source@collab.sakaiproject.org; Mon, 22 Oct 2007 18:21:19 -0400\nDate: Mon, 22 Oct 2007 18:21:19 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37178 - reference/branches/sakai_2-5-x/docs/conversion\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 22 18:24:00 2007\nX-DSPAM-Confidence: 0.8510\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37178\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-22 18:21:16 -0400 (Mon, 22 Oct 2007)\nNew Revision: 37178\n\nModified:\nreference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql\nreference/branches/sakai_2-5-x/docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\nLog:\n\nsvn merge -c 37033 https://source.sakaiproject.org/svn/reference/trunk\nU    docs/conversion/sakai_2_4_0-2_5_0_mysql_conversion.sql\nU    docs/conversion/sakai_2_4_0-2_5_0_oracle_conversion.sql\nsvn log -r 37033 https://source.sakaiproject.org/svn/reference/trunk\n------------------------------------------------------------------------\nr37033 | jholtzman@berkeley.edu | 2007-10-15 18:29:26 -0400 (Mon, 15 Oct 2007) | 1 line\n\nSAK-11935 -- 2.4 to 2.5 Roster conversion script\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Mon Oct 22 16:41:38 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 22 Oct 2007 16:41:38 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 22 Oct 2007 16:41:38 -0400\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby mission.mail.umich.edu () with ESMTP id l9MKfcN8011660;\n\tMon, 22 Oct 2007 16:41:38 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 471D0AF6.E3145.27089 ; \n\t22 Oct 2007 16:41:34 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3DB4050A24;\n\tMon, 22 Oct 2007 06:33:38 +0100 (BST)\nMessage-ID: <200710222038.l9MKct2n006788@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 915\n          for <source@collab.sakaiproject.org>;\n          Mon, 22 Oct 2007 06:33:21 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 19F4B16296\n\tfor <source@collab.sakaiproject.org>; Mon, 22 Oct 2007 21:41:06 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9MKctkt006790\n\tfor <source@collab.sakaiproject.org>; Mon, 22 Oct 2007 16:38:56 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9MKct2n006788\n\tfor source@collab.sakaiproject.org; Mon, 22 Oct 2007 16:38:55 -0400\nDate: Mon, 22 Oct 2007 16:38:55 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37176 - in assignment/trunk: . assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 22 16:41:38 2007\nX-DSPAM-Confidence: 0.9869\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37176\n\nAuthor: zqian@umich.edu\nDate: 2007-10-22 16:38:53 -0400 (Mon, 22 Oct 2007)\nNew Revision: 37176\n\nAdded:\nassignment/trunk/runconversion-2.4.x.sh\nModified:\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionController.java\nassignment/trunk/runconversion.sh\nLog:\nmerge 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 \n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Mon Oct 22 15:48:14 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 22 Oct 2007 15:48:13 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 22 Oct 2007 15:48:13 -0400\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby brazil.mail.umich.edu () with ESMTP id l9MJmC49029376;\n\tMon, 22 Oct 2007 15:48:12 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 471CFE75.76CBF.16801 ; \n\t22 Oct 2007 15:48:08 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4605B5560E;\n\tMon, 22 Oct 2007 05:46:15 +0100 (BST)\nMessage-ID: <200710221945.l9MJjW0c006655@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 106\n          for <source@collab.sakaiproject.org>;\n          Mon, 22 Oct 2007 05:45:58 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 8FBBC1C046\n\tfor <source@collab.sakaiproject.org>; Mon, 22 Oct 2007 20:47:43 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9MJjWV3006657\n\tfor <source@collab.sakaiproject.org>; Mon, 22 Oct 2007 15:45:32 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9MJjW0c006655\n\tfor source@collab.sakaiproject.org; Mon, 22 Oct 2007 15:45:32 -0400\nDate: Mon, 22 Oct 2007 15:45:32 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37173 - in assignment/trunk: . assignment-impl/impl/src/sql/oracle\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 22 15:48:13 2007\nX-DSPAM-Confidence: 0.9875\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37173\n\nAuthor: zqian@umich.edu\nDate: 2007-10-22 15:45:29 -0400 (Mon, 22 Oct 2007)\nNew Revision: 37173\n\nModified:\nassignment/trunk/assignment-impl/impl/src/sql/oracle/sakai_assignment.sql\nassignment/trunk/upgradeschema_oracle.config\nLog:\nfix 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\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Mon Oct 22 15:23:49 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 22 Oct 2007 15:23:49 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 22 Oct 2007 15:23:49 -0400\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby mission.mail.umich.edu () with ESMTP id l9MJNmBq026223;\n\tMon, 22 Oct 2007 15:23:48 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 471CF8B9.DAD5.9839 ; \n\t22 Oct 2007 15:23:40 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 23E746A5B4;\n\tMon, 22 Oct 2007 05:21:56 +0100 (BST)\nMessage-ID: <200710221921.l9MJL9nm006587@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 152\n          for <source@collab.sakaiproject.org>;\n          Mon, 22 Oct 2007 05:21:36 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 9623D160B2\n\tfor <source@collab.sakaiproject.org>; Mon, 22 Oct 2007 20:23:20 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9MJL9Ca006589\n\tfor <source@collab.sakaiproject.org>; Mon, 22 Oct 2007 15:21:09 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9MJL9nm006587\n\tfor source@collab.sakaiproject.org; Mon, 22 Oct 2007 15:21:09 -0400\nDate: Mon, 22 Oct 2007 15:21:09 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37172 - in assignment/trunk: . assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 22 15:23:49 2007\nX-DSPAM-Confidence: 0.9882\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37172\n\nAuthor: zqian@umich.edu\nDate: 2007-10-22 15:21:06 -0400 (Mon, 22 Oct 2007)\nNew Revision: 37172\n\nAdded:\nassignment/trunk/upgradeschema_mysql.config\nassignment/trunk/upgradeschema_oracle.config\nModified:\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/SchemaConversionController.java\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/UpgradeSchema.java\nassignment/trunk/assignment-impl/impl/src/java/org/sakaiproject/assignment/impl/conversion/impl/upgradeschema.config\nassignment/trunk/runconversion.sh\nLog:\nadded two config file for Oracle and MySQL configuration. User will need to use the file name as the argumenet for running the conversion script\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gjthomas@iupui.edu Mon Oct 22 14:54:31 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 22 Oct 2007 14:54:31 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 22 Oct 2007 14:54:31 -0400\nReceived: from it.mr.itd.umich.edu (it.mr.itd.umich.edu [141.211.93.151])\n\tby chaos.mail.umich.edu () with ESMTP id l9MIsUhs031969;\n\tMon, 22 Oct 2007 14:54:30 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY it.mr.itd.umich.edu ID 471CF1DD.1DE14.21394 ; \n\t22 Oct 2007 14:54:23 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 4F22E5D06C;\n\tMon, 22 Oct 2007 04:52:41 +0100 (BST)\nMessage-ID: <200710221851.l9MIpsqC006553@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 524\n          for <source@collab.sakaiproject.org>;\n          Mon, 22 Oct 2007 04:52:25 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 49E0B1AAFD\n\tfor <source@collab.sakaiproject.org>; Mon, 22 Oct 2007 19:54:05 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9MIps6k006555\n\tfor <source@collab.sakaiproject.org>; Mon, 22 Oct 2007 14:51:54 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9MIpsqC006553\n\tfor source@collab.sakaiproject.org; Mon, 22 Oct 2007 14:51:54 -0400\nDate: Mon, 22 Oct 2007 14:51:54 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gjthomas@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gjthomas@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 22 14:54:31 2007\nX-DSPAM-Confidence: 0.9784\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37171\n\nAuthor: gjthomas@iupui.edu\nDate: 2007-10-22 14:51:53 -0400 (Mon, 22 Oct 2007)\nNew Revision: 37171\n\nAdded:\noncourse/trunk/src/reference/library/src/webapp/skin/default/images/presence-chat.png\nRemoved:\noncourse/trunk/src/reference/library/src/webapp/image/user_invisible_chat.png\noncourse/trunk/src/reference/library/src/webapp/image/user_visible_chat.png\nModified:\noncourse/trunk/src/presence/presence-tool/tool/src/java/org/sakaiproject/presence/tool/PresenceTool.java\noncourse/trunk/src/reference/library/src/webapp/skin/default/tool.css\nLog:\nONC-8 - Presence icon changes\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Mon Oct 22 14:44:14 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 22 Oct 2007 14:44:14 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 22 Oct 2007 14:44:14 -0400\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby flawless.mail.umich.edu () with ESMTP id l9MIiD9X008041;\n\tMon, 22 Oct 2007 14:44:13 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 471CEF6B.32129.4000 ; \n\t22 Oct 2007 14:43:58 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 74DA76A5EA;\n\tMon, 22 Oct 2007 04:42:13 +0100 (BST)\nMessage-ID: <200710221841.l9MIfQho006541@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 345\n          for <source@collab.sakaiproject.org>;\n          Mon, 22 Oct 2007 04:41:55 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id E8F141C3B5\n\tfor <source@collab.sakaiproject.org>; Mon, 22 Oct 2007 19:43:36 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9MIfQn1006543\n\tfor <source@collab.sakaiproject.org>; Mon, 22 Oct 2007 14:41:26 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9MIfQho006541\n\tfor source@collab.sakaiproject.org; Mon, 22 Oct 2007 14:41:26 -0400\nDate: Mon, 22 Oct 2007 14:41:26 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r37170 - gradebook/branches/oncourse_2-4-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 22 14:44:14 2007\nX-DSPAM-Confidence: 0.9883\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37170\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-10-22 14:41:25 -0400 (Mon, 22 Oct 2007)\nNew Revision: 37170\n\nModified:\ngradebook/branches/oncourse_2-4-x/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java\nLog:\nsvn merge -r 37168:37169 https://source.sakaiproject.org/svn/gradebook/trunk\nU    app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java\nsvn log -r 37169:37169 https://source.sakaiproject.org/svn/gradebook/trunk\n------------------------------------------------------------------------\nr37169 | rjlowe@iupui.edu | 2007-10-22 14:38:02 -0400 (Mon, 22 Oct 2007) | 3 lines\n\nSAK-11270\nhttp://bugs.sakaiproject.org/jira/browse/SAK-11270\ngb / assignment list in \"Roster/All Grades\" view\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Mon Oct 22 14:40:54 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 22 Oct 2007 14:40:54 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 22 Oct 2007 14:40:54 -0400\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby flawless.mail.umich.edu () with ESMTP id l9MIestO006242;\n\tMon, 22 Oct 2007 14:40:54 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 471CEEAB.D747E.28758 ; \n\t22 Oct 2007 14:40:47 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 07ED95D06C;\n\tMon, 22 Oct 2007 04:38:53 +0100 (BST)\nMessage-ID: <200710221838.l9MIc333006529@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 370\n          for <source@collab.sakaiproject.org>;\n          Mon, 22 Oct 2007 04:38:31 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A8A9F1C3B5\n\tfor <source@collab.sakaiproject.org>; Mon, 22 Oct 2007 19:40:14 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9MIc31F006531\n\tfor <source@collab.sakaiproject.org>; Mon, 22 Oct 2007 14:38:03 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9MIc333006529\n\tfor source@collab.sakaiproject.org; Mon, 22 Oct 2007 14:38:03 -0400\nDate: Mon, 22 Oct 2007 14:38:03 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r37169 - gradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 22 14:40:54 2007\nX-DSPAM-Confidence: 0.9782\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37169\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-10-22 14:38:02 -0400 (Mon, 22 Oct 2007)\nNew Revision: 37169\n\nModified:\ngradebook/trunk/app/ui/src/java/org/sakaiproject/tool/gradebook/ui/RosterBean.java\nLog:\nSAK-11270\nhttp://bugs.sakaiproject.org/jira/browse/SAK-11270\ngb / assignment list in \"Roster/All Grades\" view\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Mon Oct 22 14:18:25 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 22 Oct 2007 14:18:25 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 22 Oct 2007 14:18:25 -0400\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby panther.mail.umich.edu () with ESMTP id l9MIIOXr002665;\n\tMon, 22 Oct 2007 14:18:24 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 471CE961.96274.8849 ; \n\t22 Oct 2007 14:18:12 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id F332A6584E;\n\tMon, 22 Oct 2007 04:16:21 +0100 (BST)\nMessage-ID: <200710221815.l9MIFZru006501@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 258\n          for <source@collab.sakaiproject.org>;\n          Mon, 22 Oct 2007 04:15:58 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 740D113A3C\n\tfor <source@collab.sakaiproject.org>; Mon, 22 Oct 2007 19:17:46 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9MIFZFH006503\n\tfor <source@collab.sakaiproject.org>; Mon, 22 Oct 2007 14:15:35 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9MIFZru006501\n\tfor source@collab.sakaiproject.org; Mon, 22 Oct 2007 14:15:35 -0400\nDate: Mon, 22 Oct 2007 14:15:35 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37168 - ctools/trunk/builds/externals\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 22 14:18:25 2007\nX-DSPAM-Confidence: 0.7604\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37168\n\nAuthor: dlhaines@umich.edu\nDate: 2007-10-22 14:15:33 -0400 (Mon, 22 Oct 2007)\nNew Revision: 37168\n\nModified:\nctools/trunk/builds/externals/getFrozenExternals\nLog:\nCTools: update getFrozenExternals to take the new file format. Take out externals.max.  It is not useful.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Mon Oct 22 13:38:03 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 22 Oct 2007 13:38:03 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 22 Oct 2007 13:38:03 -0400\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby jacknife.mail.umich.edu () with ESMTP id l9MHc1iK021799;\n\tMon, 22 Oct 2007 13:38:01 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 471CDFF4.10B12.16989 ; \n\t22 Oct 2007 13:37:58 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D55BF5D915;\n\tMon, 22 Oct 2007 03:36:16 +0100 (BST)\nMessage-ID: <200710221735.l9MHZUBV006456@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 879\n          for <source@collab.sakaiproject.org>;\n          Mon, 22 Oct 2007 03:36:05 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 641F01C346\n\tfor <source@collab.sakaiproject.org>; Mon, 22 Oct 2007 18:37:41 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9MHZU7N006458\n\tfor <source@collab.sakaiproject.org>; Mon, 22 Oct 2007 13:35:30 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9MHZUBV006456\n\tfor source@collab.sakaiproject.org; Mon, 22 Oct 2007 13:35:30 -0400\nDate: Mon, 22 Oct 2007 13:35:30 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r37167 - gradebook/branches/oncourse_2-4-x/service/hibernate/src/java/org/sakaiproject/tool/gradebook\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 22 13:38:03 2007\nX-DSPAM-Confidence: 0.9904\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37167\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-10-22 13:35:29 -0400 (Mon, 22 Oct 2007)\nNew Revision: 37167\n\nModified:\ngradebook/branches/oncourse_2-4-x/service/hibernate/src/java/org/sakaiproject/tool/gradebook/CourseGradeRecord.java\nLog:\nONC-224 - Merging in fix from /trunk\n\nsvn merge -r 37165:37166 https://source.sakaiproject.org/svn/gradebook/trunk/  \nU    service/hibernate/src/java/org/sakaiproject/tool/gradebook/CourseGradeRecord.java\nsvn log -r 37166:37166 https://source.sakaiproject.org/svn/gradebook/trunk\n------------------------------------------------------------------------\nr37166 | rjlowe@iupui.edu | 2007-10-22 13:31:36 -0400 (Mon, 22 Oct 2007) | 3 lines\n\nSAK-12017\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12017\nGB / \"All Grades\" sort by course grade\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Mon Oct 22 13:34:10 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 22 Oct 2007 13:34:10 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 22 Oct 2007 13:34:10 -0400\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby sleepers.mail.umich.edu () with ESMTP id l9MHY93u006615;\n\tMon, 22 Oct 2007 13:34:09 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 471CDF0A.110F2.26219 ; \n\t22 Oct 2007 13:34:06 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2159160B48;\n\tMon, 22 Oct 2007 03:32:22 +0100 (BST)\nMessage-ID: <200710221731.l9MHVbh6006443@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1007\n          for <source@collab.sakaiproject.org>;\n          Mon, 22 Oct 2007 03:32:11 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D7F641C412\n\tfor <source@collab.sakaiproject.org>; Mon, 22 Oct 2007 18:33:47 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9MHVbwH006445\n\tfor <source@collab.sakaiproject.org>; Mon, 22 Oct 2007 13:31:37 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9MHVbh6006443\n\tfor source@collab.sakaiproject.org; Mon, 22 Oct 2007 13:31:37 -0400\nDate: Mon, 22 Oct 2007 13:31:37 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r37166 - gradebook/trunk/service/hibernate/src/java/org/sakaiproject/tool/gradebook\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 22 13:34:10 2007\nX-DSPAM-Confidence: 0.9818\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37166\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-10-22 13:31:36 -0400 (Mon, 22 Oct 2007)\nNew Revision: 37166\n\nModified:\ngradebook/trunk/service/hibernate/src/java/org/sakaiproject/tool/gradebook/CourseGradeRecord.java\nLog:\nSAK-12017\nhttp://bugs.sakaiproject.org/jira/browse/SAK-12017\nGB / \"All Grades\" sort by course grade\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Mon Oct 22 13:19:58 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 22 Oct 2007 13:19:58 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 22 Oct 2007 13:19:58 -0400\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby jacknife.mail.umich.edu () with ESMTP id l9MHJvhE010842;\n\tMon, 22 Oct 2007 13:19:57 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 471CDBA9.E80D.14552 ; \n\t22 Oct 2007 13:19:39 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id D0F6160B48;\n\tMon, 22 Oct 2007 03:17:58 +0100 (BST)\nMessage-ID: <200710221717.l9MHH6Ii006431@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 733\n          for <source@collab.sakaiproject.org>;\n          Mon, 22 Oct 2007 03:17:42 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5BFB2D6EC\n\tfor <source@collab.sakaiproject.org>; Mon, 22 Oct 2007 18:19:17 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9MHH6A8006433\n\tfor <source@collab.sakaiproject.org>; Mon, 22 Oct 2007 13:17:06 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9MHH6Ii006431\n\tfor source@collab.sakaiproject.org; Mon, 22 Oct 2007 13:17:06 -0400\nDate: Mon, 22 Oct 2007 13:17:06 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37165 - in memory/branches/SAK-11913/memory-impl/impl/src: java/org/sakaiproject/memory/impl test/org/sakaiproject/memory/impl/test\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 22 13:19:58 2007\nX-DSPAM-Confidence: 0.9805\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37165\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-22 13:16:57 -0400 (Mon, 22 Oct 2007)\nNew Revision: 37165\n\nModified:\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemCache.java\nmemory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/memory/impl/test/MemCacheTest.java\nLog:\nSAK-11913: Basic test scaffolding in place to test the MemCache\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Mon Oct 22 13:19:33 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Mon, 22 Oct 2007 13:19:33 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Mon, 22 Oct 2007 13:19:33 -0400\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby chaos.mail.umich.edu () with ESMTP id l9MHJWMb004164;\n\tMon, 22 Oct 2007 13:19:32 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 471CDB9E.7DD17.21137 ; \n\t22 Oct 2007 13:19:29 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E0FE363DEF;\n\tMon, 22 Oct 2007 03:17:45 +0100 (BST)\nMessage-ID: <200710221716.l9MHGsxX006419@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 217\n          for <source@collab.sakaiproject.org>;\n          Mon, 22 Oct 2007 03:17:28 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BCAE6D6EC\n\tfor <source@collab.sakaiproject.org>; Mon, 22 Oct 2007 18:19:04 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9MHGs97006421\n\tfor <source@collab.sakaiproject.org>; Mon, 22 Oct 2007 13:16:54 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9MHGsxX006419\n\tfor source@collab.sakaiproject.org; Mon, 22 Oct 2007 13:16:54 -0400\nDate: Mon, 22 Oct 2007 13:16:54 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37164 - memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Mon Oct 22 13:19:33 2007\nX-DSPAM-Confidence: 0.9788\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37164\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-22 13:16:50 -0400 (Mon, 22 Oct 2007)\nNew Revision: 37164\n\nModified:\nmemory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/Cache.java\nLog:\nSAK-11913: Basic test scaffolding in place to test the MemCache\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom cwen@iupui.edu Fri Oct 19 15:30:58 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 19 Oct 2007 15:30:58 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 19 Oct 2007 15:30:58 -0400\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby mission.mail.umich.edu () with ESMTP id l9JJUv79002099;\n\tFri, 19 Oct 2007 15:30:57 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 471905E3.F3ECD.20286 ; \n\t19 Oct 2007 15:30:49 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3929866DBE;\n\tFri, 19 Oct 2007 06:15:51 +0100 (BST)\nMessage-ID: <200710191927.l9JJRUNw023067@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 821\n          for <source@collab.sakaiproject.org>;\n          Fri, 19 Oct 2007 06:15:20 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4A2DA1997F\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 20:29:31 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JJRVjY023069\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 15:27:31 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JJRUNw023067\n\tfor source@collab.sakaiproject.org; Fri, 19 Oct 2007 15:27:30 -0400\nDate: Fri, 19 Oct 2007 15:27:30 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to cwen@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: cwen@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 19 15:30:58 2007\nX-DSPAM-Confidence: 0.7565\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37149\n\nAuthor: cwen@iupui.edu\nDate: 2007-10-19 15:27:28 -0400 (Fri, 19 Oct 2007)\nNew Revision: 37149\n\nModified:\ngradebook/trunk/app/business/src/java/org/sakaiproject/tool/gradebook/business/impl/GradebookManagerHibernateImpl.java\ngradebook/trunk/app/standalone-app/src/test/org/sakaiproject/tool/gradebook/test/GradebookTestSuite.java\ngradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/BaseHibernateManager.java\ngradebook/trunk/service/impl/src/java/org/sakaiproject/component/gradebook/GradebookExternalAssessmentServiceImpl.java\nLog:\nhttp://128.196.219.68/jira/browse/SAK-12005\n=>\nfix gradebook unit test for m2.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ktsao@stanford.edu Fri Oct 19 13:58:01 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 19 Oct 2007 13:58:01 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 19 Oct 2007 13:58:01 -0400\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby panther.mail.umich.edu () with ESMTP id l9JHw1vb014481;\n\tFri, 19 Oct 2007 13:58:01 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 4718F020.A73AA.5606 ; \n\t19 Oct 2007 13:57:55 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 5072B646F9;\n\tFri, 19 Oct 2007 04:55:24 +0100 (BST)\nMessage-ID: <200710191755.l9JHteu9022952@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 705\n          for <source@collab.sakaiproject.org>;\n          Fri, 19 Oct 2007 04:55:06 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 37B451099D\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 18:57:40 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JHteW0022954\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 13:55:40 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JHteu9022952\n\tfor source@collab.sakaiproject.org; Fri, 19 Oct 2007 13:55:40 -0400\nDate: Fri, 19 Oct 2007 13:55:40 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ktsao@stanford.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ktsao@stanford.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 19 13:58:01 2007\nX-DSPAM-Confidence: 0.9826\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37148\n\nAuthor: ktsao@stanford.edu\nDate: 2007-10-19 13:55:26 -0400 (Fri, 19 Oct 2007)\nNew Revision: 37148\n\nModified:\nsam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/servlet/delivery/ShowAttachmentMediaServlet.java\nsam/trunk/samigo-app/src/webapp/jsf/delivery/assessment_attachment.jsp\nsam/trunk/samigo-app/src/webapp/jsf/delivery/item/attachment.jsp\nsam/trunk/samigo-app/src/webapp/jsf/delivery/part_attachment.jsp\nsam/trunk/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueries.java\nsam/trunk/samigo-services/src/java/org/sakaiproject/tool/assessment/facade/PublishedAssessmentFacadeQueriesAPI.java\nsam/trunk/samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/AssessmentService.java\nsam/trunk/samigo-services/src/java/org/sakaiproject/tool/assessment/services/assessment/PublishedAssessmentService.java\nLog:\nSAK-11909\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Fri Oct 19 13:56:22 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 19 Oct 2007 13:56:22 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 19 Oct 2007 13:56:22 -0400\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby score.mail.umich.edu () with ESMTP id l9JHuLU6007696;\n\tFri, 19 Oct 2007 13:56:21 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 4718EFB4.335EC.16715 ; \n\t19 Oct 2007 13:56:07 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E9E86691B4;\n\tFri, 19 Oct 2007 04:53:50 +0100 (BST)\nMessage-ID: <200710191753.l9JHrnPO022940@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 614\n          for <source@collab.sakaiproject.org>;\n          Fri, 19 Oct 2007 04:53:38 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EA8801099D\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 18:55:48 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JHrnhZ022942\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 13:53:49 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JHrnPO022940\n\tfor source@collab.sakaiproject.org; Fri, 19 Oct 2007 13:53:49 -0400\nDate: Fri, 19 Oct 2007 13:53:49 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 19 13:56:22 2007\nX-DSPAM-Confidence: 0.9837\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37147\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-19 13:53:36 -0400 (Fri, 19 Oct 2007)\nNew Revision: 37147\n\nModified:\nmemory/branches/SAK-11913/memory-impl/impl/pom.xml\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/BasicMemoryService.java\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemCache.java\nmemory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/memory/impl/test/BasicMemoryServiceTest.java\nmemory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/memory/impl/test/MemCacheTest.java\nLog:\nSAK-11913: All tests for memoryService are now passing in eclipse and maven\nStill need to write tests for MemCache and need to write profiling tests \n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Fri Oct 19 13:55:57 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 19 Oct 2007 13:55:57 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 19 Oct 2007 13:55:57 -0400\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby jacknife.mail.umich.edu () with ESMTP id l9JHtu8S024712;\n\tFri, 19 Oct 2007 13:55:56 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 4718EFA5.96AB0.1673 ; \n\t19 Oct 2007 13:55:52 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1A2A1646F9;\n\tFri, 19 Oct 2007 04:53:35 +0100 (BST)\nMessage-ID: <200710191753.l9JHrXMJ022928@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 886\n          for <source@collab.sakaiproject.org>;\n          Fri, 19 Oct 2007 04:53:21 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A292F1099D\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 18:55:33 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JHrXa2022930\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 13:53:33 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JHrXMJ022928\n\tfor source@collab.sakaiproject.org; Fri, 19 Oct 2007 13:53:33 -0400\nDate: Fri, 19 Oct 2007 13:53:33 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37146 - memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 19 13:55:57 2007\nX-DSPAM-Confidence: 0.9843\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37146\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-19 13:53:28 -0400 (Fri, 19 Oct 2007)\nNew Revision: 37146\n\nModified:\nmemory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/Cache.java\nmemory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/MemoryService.java\nLog:\nSAK-11913: All tests for memoryService are now passing in eclipse and maven\nStill need to write tests for MemCache and need to write profiling tests \n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gsilver@umich.edu Fri Oct 19 13:36:28 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 19 Oct 2007 13:36:28 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 19 Oct 2007 13:36:28 -0400\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby jacknife.mail.umich.edu () with ESMTP id l9JHaRqc011373;\n\tFri, 19 Oct 2007 13:36:27 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 4718EB15.30A86.11990 ; \n\t19 Oct 2007 13:36:24 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C8F0568B43;\n\tFri, 19 Oct 2007 04:33:56 +0100 (BST)\nMessage-ID: <200710191733.l9JHXsrd022907@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 7\n          for <source@collab.sakaiproject.org>;\n          Fri, 19 Oct 2007 04:33:41 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CADFFDD3C\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 18:35:54 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JHXtn7022909\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 13:33:55 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JHXsrd022907\n\tfor source@collab.sakaiproject.org; Fri, 19 Oct 2007 13:33:54 -0400\nDate: Fri, 19 Oct 2007 13:33:54 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gsilver@umich.edu\nSubject: [sakai] svn commit: r37145 - site-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/webapp\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 19 13:36:28 2007\nX-DSPAM-Confidence: 0.9872\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37145\n\nAuthor: gsilver@umich.edu\nDate: 2007-10-19 13:33:53 -0400 (Fri, 19 Oct 2007)\nNew Revision: 37145\n\nModified:\nsite-manage/branches/sakai_2-4-x/site-manage-tool/tool/src/webapp/velocity.properties\nLog:\nSAK-12003\n- set the file.resource.loader.modificationCheckInterval = 0 for 2.4.x\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom gsilver@umich.edu Fri Oct 19 12:37:05 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 19 Oct 2007 12:37:05 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 19 Oct 2007 12:37:05 -0400\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby sleepers.mail.umich.edu () with ESMTP id l9JGb4rc029331;\n\tFri, 19 Oct 2007 12:37:04 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 4718DD0B.66196.13189 ; \n\t19 Oct 2007 12:36:31 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0FFCF69009;\n\tFri, 19 Oct 2007 03:34:07 +0100 (BST)\nMessage-ID: <200710191618.l9JGIE73022835@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 86\n          for <source@collab.sakaiproject.org>;\n          Fri, 19 Oct 2007 03:17:58 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BBF1B1B9F4\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 17:20:14 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JGIE5M022837\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 12:18:15 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JGIE73022835\n\tfor source@collab.sakaiproject.org; Fri, 19 Oct 2007 12:18:14 -0400\nDate: Fri, 19 Oct 2007 12:18:14 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to gsilver@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: gsilver@umich.edu\nSubject: [sakai] svn commit: r37144 - site-manage/trunk/site-manage-tool/tool/src/webapp\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 19 12:37:05 2007\nX-DSPAM-Confidence: 0.9812\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37144\n\nAuthor: gsilver@umich.edu\nDate: 2007-10-19 12:18:10 -0400 (Fri, 19 Oct 2007)\nNew Revision: 37144\n\nModified:\nsite-manage/trunk/site-manage-tool/tool/src/webapp/velocity.properties\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-12003\n- resetting file.resource.loader.modificationCheckInterval in velocity.properties to '0'\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Fri Oct 19 11:34:47 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.97])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 19 Oct 2007 11:34:47 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 19 Oct 2007 11:34:47 -0400\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby sleepers.mail.umich.edu () with ESMTP id l9JFYkGV026192;\n\tFri, 19 Oct 2007 11:34:46 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 4718CE89.BC06D.1471 ; \n\t19 Oct 2007 11:34:42 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A69605EC9E;\n\tFri, 19 Oct 2007 02:32:10 +0100 (BST)\nMessage-ID: <200710191532.l9JFWI76022727@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 689\n          for <source@collab.sakaiproject.org>;\n          Fri, 19 Oct 2007 02:31:57 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EAA201BA07\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 16:34:16 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JFWIVP022729\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 11:32:18 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JFWI76022727\n\tfor source@collab.sakaiproject.org; Fri, 19 Oct 2007 11:32:18 -0400\nDate: Fri, 19 Oct 2007 11:32:18 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37143 - assignment/trunk/assignment-impl/impl/src/sql/hsqldb\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 19 11:34:47 2007\nX-DSPAM-Confidence: 0.8490\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37143\n\nAuthor: zqian@umich.edu\nDate: 2007-10-19 11:32:15 -0400 (Fri, 19 Oct 2007)\nNew Revision: 37143\n\nModified:\nassignment/trunk/assignment-impl/impl/src/sql/hsqldb/sakai_assignment.sql\nLog:\nSAK-11821:AssignmentService allows creation of duplicate submission objects\n\nFix the hsql sql code for creating ASSIGNMENT_SUBMISSION table, missing a comma in the create statement.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jzaremba@unicon.net Fri Oct 19 11:15:27 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 19 Oct 2007 11:15:27 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 19 Oct 2007 11:15:27 -0400\nReceived: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43])\n\tby flawless.mail.umich.edu () with ESMTP id l9JFFQbq029492;\n\tFri, 19 Oct 2007 11:15:26 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY serenity.mr.itd.umich.edu ID 4718CA08.B7C8E.22265 ; \n\t19 Oct 2007 11:15:23 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 44B6F68FEF;\n\tFri, 19 Oct 2007 02:12:59 +0100 (BST)\nMessage-ID: <200710191513.l9JFD655022681@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 392\n          for <source@collab.sakaiproject.org>;\n          Fri, 19 Oct 2007 02:12:44 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id BCCBD1B98E\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 16:15:07 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JFD7Th022683\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 11:13:07 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JFD655022681\n\tfor source@collab.sakaiproject.org; Fri, 19 Oct 2007 11:13:06 -0400\nDate: Fri, 19 Oct 2007 11:13:06 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jzaremba@unicon.net using -f\nTo: source@collab.sakaiproject.org\nFrom: jzaremba@unicon.net\nSubject: [sakai] svn commit: r37142 - in content/branches/SAK-11543: content-bundles content-tool/tool/src/java/org/sakaiproject/content/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 19 11:15:27 2007\nX-DSPAM-Confidence: 0.9795\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37142\n\nAuthor: jzaremba@unicon.net\nDate: 2007-10-19 11:13:01 -0400 (Fri, 19 Oct 2007)\nNew Revision: 37142\n\nModified:\ncontent/branches/SAK-11543/content-bundles/content.properties\ncontent/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\nLog:\nTSQ-747 Initial code to remove condition if condition check box unchecked.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Fri Oct 19 10:23:52 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 19 Oct 2007 10:23:52 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 19 Oct 2007 10:23:52 -0400\nReceived: from eyewitness.mr.itd.umich.edu (eyewitness.mr.itd.umich.edu [141.211.93.142])\n\tby flawless.mail.umich.edu () with ESMTP id l9JENp2H027847;\n\tFri, 19 Oct 2007 10:23:51 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY eyewitness.mr.itd.umich.edu ID 4718BDF1.297E7.7049 ; \n\t19 Oct 2007 10:23:48 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id E5AD268F33;\n\tFri, 19 Oct 2007 01:21:16 +0100 (BST)\nMessage-ID: <200710191421.l9JELMTE022646@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 957\n          for <source@collab.sakaiproject.org>;\n          Fri, 19 Oct 2007 01:20:57 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B8F871B96C\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 15:23:18 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JELMlc022648\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 10:21:22 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JELMTE022646\n\tfor source@collab.sakaiproject.org; Fri, 19 Oct 2007 10:21:22 -0400\nDate: Fri, 19 Oct 2007 10:21:22 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 19 10:23:52 2007\nX-DSPAM-Confidence: 0.9850\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37141\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-19 10:21:05 -0400 (Fri, 19 Oct 2007)\nNew Revision: 37141\n\nModified:\nmemory/branches/SAK-11913/memory-impl/.classpath\nmemory/branches/SAK-11913/memory-impl/impl/pom.xml\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/BasicMemoryService.java\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MemCache.java\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/ObjectDependsOnOthersCache.java\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/ObjectIsDependedOnByOthersCache.java\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/util/DependentPayload.java\nmemory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/memory/impl/test/BasicMemoryServiceTest.java\nLog:\nSAK-11913: Updated all keys to be strings\nAdded in some tests\nFixed up Ian's code to also adhere to the string keys\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Fri Oct 19 10:23:30 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 19 Oct 2007 10:23:30 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 19 Oct 2007 10:23:30 -0400\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby jacknife.mail.umich.edu () with ESMTP id l9JENTIN030833;\n\tFri, 19 Oct 2007 10:23:29 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 4718BDD9.90178.8323 ; \n\t19 Oct 2007 10:23:24 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6FE8968E55;\n\tFri, 19 Oct 2007 01:20:55 +0100 (BST)\nMessage-ID: <200710191421.l9JEL2OE022634@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 211\n          for <source@collab.sakaiproject.org>;\n          Fri, 19 Oct 2007 01:20:38 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 697A1DCCA\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 15:22:59 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JEL2wn022636\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 10:21:02 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JEL2OE022634\n\tfor source@collab.sakaiproject.org; Fri, 19 Oct 2007 10:21:02 -0400\nDate: Fri, 19 Oct 2007 10:21:02 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37140 - memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 19 10:23:30 2007\nX-DSPAM-Confidence: 0.8476\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37140\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-19 10:20:58 -0400 (Fri, 19 Oct 2007)\nNew Revision: 37140\n\nModified:\nmemory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/MultipleReferenceCache.java\nLog:\nSAK-11913: Updated all keys to be strings\nAdded in some tests\nFixed up Ian's code to also adhere to the string keys\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Fri Oct 19 10:16:11 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 19 Oct 2007 10:16:11 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 19 Oct 2007 10:16:11 -0400\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby fan.mail.umich.edu () with ESMTP id l9JEGAdw022955;\n\tFri, 19 Oct 2007 10:16:10 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 4718BC24.B18FE.20224 ; \n\t19 Oct 2007 10:16:07 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 753EB68E55;\n\tFri, 19 Oct 2007 01:13:40 +0100 (BST)\nMessage-ID: <200710191413.l9JEDtV0022622@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 888\n          for <source@collab.sakaiproject.org>;\n          Fri, 19 Oct 2007 01:13:30 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A9DC9DCCA\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 15:15:51 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JEDt3f022624\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 10:13:55 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JEDtV0022622\n\tfor source@collab.sakaiproject.org; Fri, 19 Oct 2007 10:13:55 -0400\nDate: Fri, 19 Oct 2007 10:13:55 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37139 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 19 10:16:11 2007\nX-DSPAM-Confidence: 0.9859\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37139\n\nAuthor: dlhaines@umich.edu\nDate: 2007-10-19 10:13:53 -0400 (Fri, 19 Oct 2007)\nNew Revision: 37139\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xL.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xL.properties\nLog:\nCTools: update build revision for 2.4.xL\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Fri Oct 19 10:14:17 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 19 Oct 2007 10:14:17 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 19 Oct 2007 10:14:17 -0400\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby score.mail.umich.edu () with ESMTP id l9JEEGhm007809;\n\tFri, 19 Oct 2007 10:14:16 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 4718BBB3.345CA.24187 ; \n\t19 Oct 2007 10:14:14 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 16A2265604;\n\tFri, 19 Oct 2007 01:11:35 +0100 (BST)\nMessage-ID: <200710191411.l9JEBkHc022610@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 697\n          for <source@collab.sakaiproject.org>;\n          Fri, 19 Oct 2007 01:11:14 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 42555DCCA\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 15:13:43 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JEBlpL022612\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 10:11:47 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JEBkHc022610\n\tfor source@collab.sakaiproject.org; Fri, 19 Oct 2007 10:11:46 -0400\nDate: Fri, 19 Oct 2007 10:11:46 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37138 - in ctools/branches/ctools_2-4/ctools-reference/config: ctools testctools\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 19 10:14:17 2007\nX-DSPAM-Confidence: 0.9846\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37138\n\nAuthor: dlhaines@umich.edu\nDate: 2007-10-19 10:11:45 -0400 (Fri, 19 Oct 2007)\nNew Revision: 37138\n\nModified:\nctools/branches/ctools_2-4/ctools-reference/config/ctools/instance.properties\nctools/branches/ctools_2-4/ctools-reference/config/testctools/instance.properties\nLog:\nCTools: stealth linktool on 2.4 branch.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Fri Oct 19 10:08:50 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 19 Oct 2007 10:08:50 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 19 Oct 2007 10:08:50 -0400\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby jacknife.mail.umich.edu () with ESMTP id l9JE8m8L021039;\n\tFri, 19 Oct 2007 10:08:48 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 4718BA6A.F345F.26235 ; \n\t19 Oct 2007 10:08:45 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1EE9265604;\n\tFri, 19 Oct 2007 01:06:18 +0100 (BST)\nMessage-ID: <200710191406.l9JE6UTT022587@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 64\n          for <source@collab.sakaiproject.org>;\n          Fri, 19 Oct 2007 01:05:58 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DBEF4DCCA\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 15:08:26 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JE6Uv2022589\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 10:06:30 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JE6UTT022587\n\tfor source@collab.sakaiproject.org; Fri, 19 Oct 2007 10:06:30 -0400\nDate: Fri, 19 Oct 2007 10:06:30 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37137 - in ctools/trunk/ctools-reference/config: ctools testctools\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 19 10:08:49 2007\nX-DSPAM-Confidence: 0.9863\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37137\n\nAuthor: dlhaines@umich.edu\nDate: 2007-10-19 10:06:28 -0400 (Fri, 19 Oct 2007)\nNew Revision: 37137\n\nModified:\nctools/trunk/ctools-reference/config/ctools/instance.properties\nctools/trunk/ctools-reference/config/testctools/instance.properties\nLog:\nCTools: stealth link tool.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ajpoland@iupui.edu Fri Oct 19 09:24:52 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 19 Oct 2007 09:24:52 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 19 Oct 2007 09:24:52 -0400\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby awakenings.mail.umich.edu () with ESMTP id l9JDOqZA020305;\n\tFri, 19 Oct 2007 09:24:52 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 4718B01C.3994B.20355 ; \n\t19 Oct 2007 09:24:47 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2B47168EB8;\n\tFri, 19 Oct 2007 00:22:17 +0100 (BST)\nMessage-ID: <200710191322.l9JDMafD022523@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 793\n          for <source@collab.sakaiproject.org>;\n          Fri, 19 Oct 2007 00:22:00 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 4A1811038B\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 14:24:32 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JDMadJ022525\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 09:22:36 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JDMafD022523\n\tfor source@collab.sakaiproject.org; Fri, 19 Oct 2007 09:22:36 -0400\nDate: Fri, 19 Oct 2007 09:22:36 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ajpoland@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ajpoland@iupui.edu\nSubject: [sakai] svn commit: r37136 - oncourse/branches/sakai_2-4-x\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 19 09:24:52 2007\nX-DSPAM-Confidence: 0.9803\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37136\n\nAuthor: ajpoland@iupui.edu\nDate: 2007-10-19 09:22:35 -0400 (Fri, 19 Oct 2007)\nNew Revision: 37136\n\nModified:\noncourse/branches/sakai_2-4-x/\noncourse/branches/sakai_2-4-x/.externals\nLog:\nUpdated externals\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Fri Oct 19 09:23:36 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.98])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 19 Oct 2007 09:23:36 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 19 Oct 2007 09:23:36 -0400\nReceived: from holes.mr.itd.umich.edu (holes.mr.itd.umich.edu [141.211.14.79])\n\tby casino.mail.umich.edu () with ESMTP id l9JDNZ39010078;\n\tFri, 19 Oct 2007 09:23:35 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY holes.mr.itd.umich.edu ID 4718AFD1.2424E.15461 ; \n\t19 Oct 2007 09:23:32 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 0DF8A68EBB;\n\tFri, 19 Oct 2007 00:21:04 +0100 (BST)\nMessage-ID: <200710191321.l9JDLKOx022492@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 460\n          for <source@collab.sakaiproject.org>;\n          Fri, 19 Oct 2007 00:20:52 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B7AE71038B\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 14:23:16 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JDLK05022494\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 09:21:20 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JDLKOx022492\n\tfor source@collab.sakaiproject.org; Fri, 19 Oct 2007 09:21:20 -0400\nDate: Fri, 19 Oct 2007 09:21:20 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r37135 - msgcntr/branches/oncourse_2-4-x/messageforums-app/src/webapp/jsp\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 19 09:23:36 2007\nX-DSPAM-Confidence: 0.9912\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37135\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-10-19 09:21:19 -0400 (Fri, 19 Oct 2007)\nNew Revision: 37135\n\nModified:\nmsgcntr/branches/oncourse_2-4-x/messageforums-app/src/webapp/jsp/pvtMsgReply.jsp\nLog:\nsvn merge -r 37113:37114 https://source.sakaiproject.org/svn/msgcntr/trunk/\nU    messageforums-app/src/webapp/jsp/pvtMsgReply.jsp\nin-143-146:~/java/temp/msgcntr admin$ svn log -r 37114:37114 https://source.sakaiproject.org/svn/msgcntr/trunk/\n------------------------------------------------------------------------\nr37114 | wang58@iupui.edu | 2007-10-18 15:15:58 -0400 (Thu, 18 Oct 2007) | 2 lines\n\nSAK-11914 including body in replying message\n--removed replying to section.\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Fri Oct 19 09:22:52 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 19 Oct 2007 09:22:52 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 19 Oct 2007 09:22:52 -0400\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby flawless.mail.umich.edu () with ESMTP id l9JDMpYN023610;\n\tFri, 19 Oct 2007 09:22:51 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 4718AF9D.B8C8F.21998 ; \n\t19 Oct 2007 09:22:40 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B8E0E68E7E;\n\tFri, 19 Oct 2007 00:20:11 +0100 (BST)\nMessage-ID: <200710191320.l9JDKPds022480@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 515\n          for <source@collab.sakaiproject.org>;\n          Fri, 19 Oct 2007 00:19:50 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 370811B96C\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 14:22:21 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JDKPq2022482\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 09:20:25 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JDKPds022480\n\tfor source@collab.sakaiproject.org; Fri, 19 Oct 2007 09:20:25 -0400\nDate: Fri, 19 Oct 2007 09:20:25 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [sakai] svn commit: r37134 - msgcntr/branches/oncourse_2-4-x/messageforums-app/src/webapp/jsp\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 19 09:22:52 2007\nX-DSPAM-Confidence: 0.9896\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37134\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-10-19 09:20:24 -0400 (Fri, 19 Oct 2007)\nNew Revision: 37134\n\nModified:\nmsgcntr/branches/oncourse_2-4-x/messageforums-app/src/webapp/jsp/pvtMsgReply.jsp\nLog:\nsvn merge -r 36791:36792 https://source.sakaiproject.org/svn/msgcntr/trunk\nsvn log -r 36792:36792 https://source.sakaiproject.org/svn/msgcntr/trunk\n------------------------------------------------------------------------\nr36792 | wang58@iupui.edu | 2007-10-12 10:28:06 -0400 (Fri, 12 Oct 2007) | 2 lines\n\nSAK-11914 Including body in replying message\n--change the breadCrumb.\n------------------------------------------------------------------------\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom rjlowe@iupui.edu Fri Oct 19 09:19:00 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 19 Oct 2007 09:19:00 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 19 Oct 2007 09:19:00 -0400\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby fan.mail.umich.edu () with ESMTP id l9JDIxHm025271;\n\tFri, 19 Oct 2007 09:18:59 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4718AEB6.4403D.28688 ; \n\t19 Oct 2007 09:18:49 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2BADD68EA8;\n\tFri, 19 Oct 2007 00:16:22 +0100 (BST)\nMessage-ID: <200710191316.l9JDGcVi022463@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 131\n          for <source@collab.sakaiproject.org>;\n          Fri, 19 Oct 2007 00:16:11 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 76E131B963\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 14:18:34 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JDGcsS022465\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 09:16:38 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JDGcVi022463\n\tfor source@collab.sakaiproject.org; Fri, 19 Oct 2007 09:16:38 -0400\nDate: Fri, 19 Oct 2007 09:16:38 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to rjlowe@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: rjlowe@iupui.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 19 09:19:00 2007\nX-DSPAM-Confidence: 0.9907\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37133\n\nAuthor: rjlowe@iupui.edu\nDate: 2007-10-19 09:16:37 -0400 (Fri, 19 Oct 2007)\nNew Revision: 37133\n\nModified:\nmsgcntr/branches/oncourse_2-4-x/messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages.properties\nmsgcntr/branches/oncourse_2-4-x/messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java\nLog:\nsvn merge -r 36637:36638 https://source.sakaiproject.org/svn/msgcntr/trunk \nU    messageforums-api/src/bundle/org/sakaiproject/api/app/messagecenter/bundle/Messages.properties\nU    messageforums-app/src/java/org/sakaiproject/tool/messageforums/PrivateMessagesTool.java\nin-143-146:~/java/temp/msgcntr admin$ svn log -r 36638:36638 https://source.sakaiproject.org/svn/msgcntr/trunk\n------------------------------------------------------------------------\nr36638 | wang58@iupui.edu | 2007-10-10 11:32:30 -0400 (Wed, 10 Oct 2007) | 1 line\n\nMessages--including body in replying message.\n------------------------------------------------------------------------\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Fri Oct 19 09:17:36 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 19 Oct 2007 09:17:36 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 19 Oct 2007 09:17:36 -0400\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby godsend.mail.umich.edu () with ESMTP id l9JDHZvF002030;\n\tFri, 19 Oct 2007 09:17:35 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 4718AE6A.789FA.18119 ; \n\t19 Oct 2007 09:17:33 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A032B68E94;\n\tFri, 19 Oct 2007 00:15:04 +0100 (BST)\nMessage-ID: <200710191258.l9JCwEDY022414@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 508\n          for <source@collab.sakaiproject.org>;\n          Fri, 19 Oct 2007 00:14:53 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 994C11BAEF\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 14:00:10 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JCwEQ8022416\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 08:58:14 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JCwEDY022414\n\tfor source@collab.sakaiproject.org; Fri, 19 Oct 2007 08:58:14 -0400\nDate: Fri, 19 Oct 2007 08:58:14 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37132 - ctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 19 09:17:36 2007\nX-DSPAM-Confidence: 0.9860\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37132\n\nAuthor: dlhaines@umich.edu\nDate: 2007-10-19 08:58:13 -0400 (Fri, 19 Oct 2007)\nNew Revision: 37132\n\nModified:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xL.externals\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_CANDIDATE/ctools_2-4-xL.properties\nLog:\nCTools: update to latest msgcntr.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Fri Oct 19 06:54:53 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 19 Oct 2007 06:54:53 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 19 Oct 2007 06:54:53 -0400\nReceived: from tadpole.mr.itd.umich.edu (tadpole.mr.itd.umich.edu [141.211.14.72])\n\tby fan.mail.umich.edu () with ESMTP id l9JAs0co011479;\n\tFri, 19 Oct 2007 06:54:00 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY tadpole.mr.itd.umich.edu ID 47188CC1.D1C00.23111 ; \n\t19 Oct 2007 06:53:56 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 1C0D4580F3;\n\tThu, 18 Oct 2007 22:04:27 +0100 (BST)\nMessage-ID: <200710191051.l9JApjgp022273@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 307\n          for <source@collab.sakaiproject.org>;\n          Thu, 18 Oct 2007 22:04:15 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B299E1BA85\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 11:53:40 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JApjDY022275\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 06:51:45 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JApjgp022273\n\tfor source@collab.sakaiproject.org; Fri, 19 Oct 2007 06:51:45 -0400\nDate: Fri, 19 Oct 2007 06:51:45 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37131 - in memory/branches/SAK-11913/memory-impl: . impl\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 19 06:54:53 2007\nX-DSPAM-Confidence: 0.8476\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37131\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-19 06:51:39 -0400 (Fri, 19 Oct 2007)\nNew Revision: 37131\n\nModified:\nmemory/branches/SAK-11913/memory-impl/.classpath\nmemory/branches/SAK-11913/memory-impl/impl/pom.xml\nLog:\nSAK-11913: fixed up classpath and pom to support running tests in eclipse\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Fri Oct 19 06:52:08 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 19 Oct 2007 06:52:08 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 19 Oct 2007 06:52:08 -0400\nReceived: from jeffrey.mr.itd.umich.edu (jeffrey.mr.itd.umich.edu [141.211.14.71])\n\tby panther.mail.umich.edu () with ESMTP id l9JAq7DI010066;\n\tFri, 19 Oct 2007 06:52:08 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY jeffrey.mr.itd.umich.edu ID 47188C4E.B7572.11301 ; \n\t19 Oct 2007 06:52:01 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 3C7D268D9A;\n\tThu, 18 Oct 2007 22:02:33 +0100 (BST)\nMessage-ID: <200710191049.l9JAng2f022261@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 502\n          for <source@collab.sakaiproject.org>;\n          Thu, 18 Oct 2007 22:02:14 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 022C51BA85\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 11:51:37 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JAngQ7022263\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 06:49:42 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JAng2f022261\n\tfor source@collab.sakaiproject.org; Fri, 19 Oct 2007 06:49:42 -0400\nDate: Fri, 19 Oct 2007 06:49:42 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 19 06:52:08 2007\nX-DSPAM-Confidence: 0.8473\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37130\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-19 06:49:28 -0400 (Fri, 19 Oct 2007)\nNew Revision: 37130\n\nAdded:\nmemory/branches/SAK-11913/memory-impl/pack/src/webapp/WEB-INF/ehcache-beans.xml\nModified:\nmemory/branches/SAK-11913/memory-impl/.classpath\nmemory/branches/SAK-11913/memory-impl/impl/pom.xml\nmemory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/memory/impl/test/BasicMemoryServiceTest.java\nmemory/branches/SAK-11913/memory-impl/pack/src/webapp/WEB-INF/components.xml\nLog:\nSAK-11913: added in spring testing framework\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Fri Oct 19 06:51:45 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.96])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 19 Oct 2007 06:51:45 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 19 Oct 2007 06:51:45 -0400\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby awakenings.mail.umich.edu () with ESMTP id l9JApjPr000411;\n\tFri, 19 Oct 2007 06:51:45 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 47188C3A.71D2.28266 ; \n\t19 Oct 2007 06:51:40 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C9877572C8;\n\tThu, 18 Oct 2007 22:02:09 +0100 (BST)\nMessage-ID: <200710191049.l9JAnQT9022249@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 749\n          for <source@collab.sakaiproject.org>;\n          Thu, 18 Oct 2007 22:01:55 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id A16221BA85\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 11:51:21 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JAnQ4A022251\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 06:49:26 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JAnQT9022249\n\tfor source@collab.sakaiproject.org; Fri, 19 Oct 2007 06:49:26 -0400\nDate: Fri, 19 Oct 2007 06:49:26 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37129 - in memory/branches/SAK-11913/memory-api/api/src/java: . org/sakaiproject/memory\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 19 06:51:45 2007\nX-DSPAM-Confidence: 0.8474\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37129\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-19 06:49:19 -0400 (Fri, 19 Oct 2007)\nNew Revision: 37129\n\nAdded:\nmemory/branches/SAK-11913/memory-api/api/src/java/ehcache.xml\nRemoved:\nmemory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/config/\nLog:\nSAK-11913: added in spring testing framework\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Fri Oct 19 06:18:11 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.34])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 19 Oct 2007 06:18:11 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 19 Oct 2007 06:18:11 -0400\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby chaos.mail.umich.edu () with ESMTP id l9JAIAZp028511;\n\tFri, 19 Oct 2007 06:18:10 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 4718845D.FF10.11370 ; \n\t19 Oct 2007 06:18:07 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 417CB52099;\n\tThu, 18 Oct 2007 21:28:39 +0100 (BST)\nMessage-ID: <200710191015.l9JAFqBv022142@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 909\n          for <source@collab.sakaiproject.org>;\n          Thu, 18 Oct 2007 21:28:24 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D25D511B7D\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 11:17:48 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JAFrJn022144\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 06:15:53 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JAFqBv022142\n\tfor source@collab.sakaiproject.org; Fri, 19 Oct 2007 06:15:52 -0400\nDate: Fri, 19 Oct 2007 06:15:52 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37128 - memory/branches/SAK-11913/memory-impl/pack/src/webapp/WEB-INF\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 19 06:18:11 2007\nX-DSPAM-Confidence: 0.7599\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37128\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-19 06:15:48 -0400 (Fri, 19 Oct 2007)\nNew Revision: 37128\n\nModified:\nmemory/branches/SAK-11913/memory-impl/pack/src/webapp/WEB-INF/components.xml\nLog:\nSAK-11913: fixed up the config path location\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Fri Oct 19 06:16:33 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 19 Oct 2007 06:16:33 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 19 Oct 2007 06:16:33 -0400\nReceived: from creepshow.mr.itd.umich.edu (creepshow.mr.itd.umich.edu [141.211.14.84])\n\tby score.mail.umich.edu () with ESMTP id l9JAGXsY014698;\n\tFri, 19 Oct 2007 06:16:33 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY creepshow.mr.itd.umich.edu ID 471883FC.19103.11758 ; \n\t19 Oct 2007 06:16:30 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 10EF468D0E;\n\tThu, 18 Oct 2007 21:27:02 +0100 (BST)\nMessage-ID: <200710191014.l9JAEHZC022130@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 895\n          for <source@collab.sakaiproject.org>;\n          Thu, 18 Oct 2007 21:26:49 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7EFC411B7D\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 11:16:13 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JAEInw022132\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 06:14:18 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JAEHZC022130\n\tfor source@collab.sakaiproject.org; Fri, 19 Oct 2007 06:14:17 -0400\nDate: Fri, 19 Oct 2007 06:14:17 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37127 - in memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory: . exception\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 19 06:16:33 2007\nX-DSPAM-Confidence: 0.8476\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37127\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-19 06:14:10 -0400 (Fri, 19 Oct 2007)\nNew Revision: 37127\n\nAdded:\nmemory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/exception/\nmemory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/exception/CacheException.java\nmemory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/exception/MemoryPermissionException.java\nmemory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/exception/ObjectNotCachedException.java\nLog:\nSAK-11913: Created package for memory exceptions and fixed the SVN confusion\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Fri Oct 19 06:16:22 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 19 Oct 2007 06:16:22 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 19 Oct 2007 06:16:22 -0400\nReceived: from guys.mr.itd.umich.edu (guys.mr.itd.umich.edu [141.211.14.76])\n\tby jacknife.mail.umich.edu () with ESMTP id l9JAGLYh004058;\n\tFri, 19 Oct 2007 06:16:21 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY guys.mr.itd.umich.edu ID 471883F0.B23E.2259 ; \n\t19 Oct 2007 06:16:18 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A2F7952099;\n\tThu, 18 Oct 2007 21:26:48 +0100 (BST)\nMessage-ID: <200710191014.l9JAE7ZC022118@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 292\n          for <source@collab.sakaiproject.org>;\n          Thu, 18 Oct 2007 21:26:36 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EA04C11B7D\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 11:16:02 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JAE7SQ022120\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 06:14:07 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JAE7ZC022118\n\tfor source@collab.sakaiproject.org; Fri, 19 Oct 2007 06:14:07 -0400\nDate: Fri, 19 Oct 2007 06:14:07 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37126 - memory/branches/SAK-11913/memory-tool/tool/src/java/org/sakaiproject/memory/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 19 06:16:22 2007\nX-DSPAM-Confidence: 0.8477\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37126\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-19 06:14:02 -0400 (Fri, 19 Oct 2007)\nNew Revision: 37126\n\nModified:\nmemory/branches/SAK-11913/memory-tool/tool/src/java/org/sakaiproject/memory/tool/MemoryAction.java\nLog:\nSAK-11913: Created package for memory exceptions and fixed the SVN confusion\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Fri Oct 19 06:12:08 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.90])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 19 Oct 2007 06:12:08 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 19 Oct 2007 06:12:08 -0400\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby flawless.mail.umich.edu () with ESMTP id l9JAC71x025597;\n\tFri, 19 Oct 2007 06:12:07 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 471882F1.58F31.4092 ; \n\t19 Oct 2007 06:12:04 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B764E52099;\n\tThu, 18 Oct 2007 21:22:21 +0100 (BST)\nMessage-ID: <200710191009.l9JA9cWo022100@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 650\n          for <source@collab.sakaiproject.org>;\n          Thu, 18 Oct 2007 21:22:09 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id DEAB4102D2\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 11:11:33 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9JA9cIN022102\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 06:09:38 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9JA9cWo022100\n\tfor source@collab.sakaiproject.org; Fri, 19 Oct 2007 06:09:38 -0400\nDate: Fri, 19 Oct 2007 06:09:38 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 19 06:12:08 2007\nX-DSPAM-Confidence: 0.7565\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37125\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-10-19 06:09:16 -0400 (Fri, 19 Oct 2007)\nNew Revision: 37125\n\nAdded:\nportal/trunk/portal-render-engine-impl/impl/src/test/org/sakaiproject/portal/charon/test/MockHttpServletRequest.java\nportal/trunk/portal-render-engine-impl/impl/src/test/org/sakaiproject/portal/charon/test/MockSession.java\nportal/trunk/portal-render-engine-impl/impl/src/test/org/sakaiproject/portal/charon/test/MockToolSession.java\nportal/trunk/portal-render-engine-impl/impl/src/test/org/sakaiproject/portal/charon/test/PortalTestFileUtils.java\nModified:\nportal/trunk/portal-render-engine-impl/impl/src/test/org/sakaiproject/portal/charon/test/MockCharonPortal.java\nportal/trunk/portal-render-engine-impl/impl/src/test/org/sakaiproject/portal/charon/test/MockResourceLoader.java\nportal/trunk/portal-render-engine-impl/impl/src/test/org/sakaiproject/portal/charon/test/PortalRenderTest.java\nportal/trunk/portal-render-engine-impl/impl/src/testBundle/log4j.properties\nportal/trunk/portal-render-engine-impl/impl/src/testBundle/testportalvelocity.config\nportal/trunk/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/error.vm\nportal/trunk/portal-render-engine-impl/pack/src/webapp/vm/defaultskin/macros.vm\nLog:\nhttp://jira.sakaiproject.org/jira/browse/SAK-11924\n\nFixed error templates\nand upgraded unit tests \n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Fri Oct 19 06:01:00 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 19 Oct 2007 06:01:00 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 19 Oct 2007 06:01:00 -0400\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby brazil.mail.umich.edu () with ESMTP id l9JA0xYH032272;\n\tFri, 19 Oct 2007 06:00:59 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 47188056.2F4E3.3772 ; \n\t19 Oct 2007 06:00:57 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id ADBFB68CBE;\n\tThu, 18 Oct 2007 21:11:27 +0100 (BST)\nMessage-ID: <200710190958.l9J9wf9v022061@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 854\n          for <source@collab.sakaiproject.org>;\n          Thu, 18 Oct 2007 21:11:13 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 5E2A9102D2\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 11:00:37 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9J9wg6C022063\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 05:58:42 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9J9wf9v022061\n\tfor source@collab.sakaiproject.org; Fri, 19 Oct 2007 05:58:41 -0400\nDate: Fri, 19 Oct 2007 05:58:41 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37124 - in memory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory: . api config cover\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 19 06:01:00 2007\nX-DSPAM-Confidence: 0.8467\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37124\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-19 05:58:29 -0400 (Fri, 19 Oct 2007)\nNew Revision: 37124\n\nAdded:\nmemory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/config/\nmemory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/config/ehcache.xml\nRemoved:\nmemory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/CacheException.java\nmemory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/MemoryPermissionException.java\nmemory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/ObjectNotCachedException.java\nmemory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/ehcache.xml\nModified:\nmemory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/MemoryService.java\nmemory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/MultipleReferenceCache.java\nmemory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/cover/MemoryServiceLocator.java\nLog:\nSAK-11913: Adjusted the structure to make use of packages better\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Fri Oct 19 06:00:45 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 19 Oct 2007 06:00:45 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 19 Oct 2007 06:00:45 -0400\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby mission.mail.umich.edu () with ESMTP id l9JA0iAa003535;\n\tFri, 19 Oct 2007 06:00:44 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 47188046.BFE3A.27887 ; \n\t19 Oct 2007 06:00:41 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id DC83362EF2;\n\tThu, 18 Oct 2007 21:11:09 +0100 (BST)\nMessage-ID: <200710190958.l9J9wQjO022049@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 685\n          for <source@collab.sakaiproject.org>;\n          Thu, 18 Oct 2007 21:10:54 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 11880102D2\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 11:00:21 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9J9wQX8022051\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 05:58:26 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9J9wQjO022049\n\tfor source@collab.sakaiproject.org; Fri, 19 Oct 2007 05:58:26 -0400\nDate: Fri, 19 Oct 2007 05:58:26 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37123 - in memory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl: . util\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 19 06:00:45 2007\nX-DSPAM-Confidence: 0.9799\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37123\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-19 05:58:16 -0400 (Fri, 19 Oct 2007)\nNew Revision: 37123\n\nAdded:\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/util/\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/util/DependentPayload.java\nRemoved:\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/DependentPayload.java\nModified:\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/BasicMemoryService.java\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/MultiRefCacheImpl.java\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/ObjectDependsOnOthersCache.java\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/ObjectIsDependedOnByOthersCache.java\nLog:\nSAK-11913: Adjusted the structure to make use of packages better\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ktsao@stanford.edu Fri Oct 19 02:00:02 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Fri, 19 Oct 2007 02:00:02 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Fri, 19 Oct 2007 02:00:02 -0400\nReceived: from cujo.mr.itd.umich.edu (cujo.mr.itd.umich.edu [141.211.93.157])\n\tby score.mail.umich.edu () with ESMTP id l9J602nj030488;\n\tFri, 19 Oct 2007 02:00:02 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY cujo.mr.itd.umich.edu ID 471847DB.BE898.27569 ; \n\t19 Oct 2007 02:00:00 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C2E3F60F9D;\n\tThu, 18 Oct 2007 17:14:26 +0100 (BST)\nMessage-ID: <200710190557.l9J5vdHf021469@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 927\n          for <source@collab.sakaiproject.org>;\n          Thu, 18 Oct 2007 17:14:03 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 0021E1BA65\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 06:59:33 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9J5vdiN021471\n\tfor <source@collab.sakaiproject.org>; Fri, 19 Oct 2007 01:57:39 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9J5vdHf021469\n\tfor source@collab.sakaiproject.org; Fri, 19 Oct 2007 01:57:39 -0400\nDate: Fri, 19 Oct 2007 01:57:39 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ktsao@stanford.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: ktsao@stanford.edu\nSubject: [sakai] svn commit: r37122 - in sam/trunk/samigo-app/src/java: com/corejsf org/sakaiproject/tool/assessment/ui/bean/delivery\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Fri Oct 19 02:00:02 2007\nX-DSPAM-Confidence: 0.9807\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37122\n\nAuthor: ktsao@stanford.edu\nDate: 2007-10-19 01:57:33 -0400 (Fri, 19 Oct 2007)\nNew Revision: 37122\n\nModified:\nsam/trunk/samigo-app/src/java/com/corejsf/UploadRenderer.java\nsam/trunk/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/bean/delivery/DeliveryBean.java\nLog:\nSAK-11955\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom ian@caret.cam.ac.uk Thu Oct 18 18:43:47 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 18 Oct 2007 18:43:47 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 18 Oct 2007 18:43:47 -0400\nReceived: from madman.mr.itd.umich.edu (madman.mr.itd.umich.edu [141.211.14.75])\n\tby panther.mail.umich.edu () with ESMTP id l9IMhkfo008589;\n\tThu, 18 Oct 2007 18:43:46 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY madman.mr.itd.umich.edu ID 4717E19C.6EDB8.12714 ; \n\t18 Oct 2007 18:43:43 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id C2F8A6885C;\n\tThu, 18 Oct 2007 10:00:47 +0100 (BST)\nMessage-ID: <200710182241.l9IMfCva008686@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 540\n          for <source@collab.sakaiproject.org>;\n          Thu, 18 Oct 2007 10:00:24 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 41F3E1B9CB\n\tfor <source@collab.sakaiproject.org>; Thu, 18 Oct 2007 23:43:06 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9IMfCvs008688\n\tfor <source@collab.sakaiproject.org>; Thu, 18 Oct 2007 18:41:12 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9IMfCva008686\n\tfor source@collab.sakaiproject.org; Thu, 18 Oct 2007 18:41:12 -0400\nDate: Thu, 18 Oct 2007 18:41:12 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to ian@caret.cam.ac.uk using -f\nTo: source@collab.sakaiproject.org\nFrom: ian@caret.cam.ac.uk\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 18 18:43:47 2007\nX-DSPAM-Confidence: 0.9837\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37121\n\nAuthor: ian@caret.cam.ac.uk\nDate: 2007-10-18 18:40:38 -0400 (Thu, 18 Oct 2007)\nNew Revision: 37121\n\nAdded:\nmemory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/CacheException.java\nmemory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/MultipleReferenceCache.java\nmemory/branches/SAK-11913/memory-api/api/src/java/org/sakaiproject/memory/api/ObjectNotCachedException.java\nmemory/branches/SAK-11913/memory-impl/impl/src/java/net/\nmemory/branches/SAK-11913/memory-impl/impl/src/java/net/sf/\nmemory/branches/SAK-11913/memory-impl/impl/src/java/net/sf/ehcache/\nmemory/branches/SAK-11913/memory-impl/impl/src/java/net/sf/ehcache/distribution/\nmemory/branches/SAK-11913/memory-impl/impl/src/java/net/sf/ehcache/distribution/RMISakaiAsynchronousCacheReplicator.java\nmemory/branches/SAK-11913/memory-impl/impl/src/java/net/sf/ehcache/distribution/RMISakaiCacheReplicatorFactory.java\nmemory/branches/SAK-11913/memory-impl/impl/src/java/net/sf/ehcache/distribution/ReplicationControl.java\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/DependentPayload.java\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/ObjectDependsOnOthersCache.java\nmemory/branches/SAK-11913/memory-impl/impl/src/java/org/sakaiproject/memory/impl/ObjectIsDependedOnByOthersCache.java\nLog:\nTreeCache and Reverse Tree cache implementations that use a local reference store and a \nehcache storage Cache.\n\nHasnt been tested, but compiles and I think its all Ok.\n\n\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Oct 18 16:42:05 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 18 Oct 2007 16:42:05 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 18 Oct 2007 16:42:05 -0400\nReceived: from icestorm.mr.itd.umich.edu (icestorm.mr.itd.umich.edu [141.211.93.149])\n\tby panther.mail.umich.edu () with ESMTP id l9IKg4gV007639;\n\tThu, 18 Oct 2007 16:42:04 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY icestorm.mr.itd.umich.edu ID 4717C509.DA79C.11387 ; \n\t18 Oct 2007 16:42:00 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6EAC6687BF;\n\tThu, 18 Oct 2007 08:06:59 +0100 (BST)\nMessage-ID: <200710182039.l9IKdaI2008253@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1011\n          for <source@collab.sakaiproject.org>;\n          Thu, 18 Oct 2007 08:06:46 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 912491B968\n\tfor <source@collab.sakaiproject.org>; Thu, 18 Oct 2007 21:41:29 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9IKdaFv008255\n\tfor <source@collab.sakaiproject.org>; Thu, 18 Oct 2007 16:39:36 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9IKdaI2008253\n\tfor source@collab.sakaiproject.org; Thu, 18 Oct 2007 16:39:36 -0400\nDate: Thu, 18 Oct 2007 16:39:36 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37120 - assignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 18 16:42:05 2007\nX-DSPAM-Confidence: 0.8489\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37120\n\nAuthor: zqian@umich.edu\nDate: 2007-10-18 16:39:33 -0400 (Thu, 18 Oct 2007)\nNew Revision: 37120\n\nModified:\nassignment/branches/post-2-4/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nfix to SAK-11944: NPE when accessing sort order\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Oct 18 16:41:19 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 18 Oct 2007 16:41:19 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 18 Oct 2007 16:41:19 -0400\nReceived: from anniehall.mr.itd.umich.edu (anniehall.mr.itd.umich.edu [141.211.93.141])\n\tby jacknife.mail.umich.edu () with ESMTP id l9IKfI2l019933;\n\tThu, 18 Oct 2007 16:41:18 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY anniehall.mr.itd.umich.edu ID 4717C4E7.D7234.9453 ; \n\t18 Oct 2007 16:41:15 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 6F529687B3;\n\tThu, 18 Oct 2007 08:06:26 +0100 (BST)\nMessage-ID: <200710182039.l9IKd26b008241@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 190\n          for <source@collab.sakaiproject.org>;\n          Thu, 18 Oct 2007 08:06:13 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 511CD1B966\n\tfor <source@collab.sakaiproject.org>; Thu, 18 Oct 2007 21:40:56 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9IKd2Pj008243\n\tfor <source@collab.sakaiproject.org>; Thu, 18 Oct 2007 16:39:03 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9IKd26b008241\n\tfor source@collab.sakaiproject.org; Thu, 18 Oct 2007 16:39:02 -0400\nDate: Thu, 18 Oct 2007 16:39:02 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37119 - assignment/branches/sakai_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 18 16:41:19 2007\nX-DSPAM-Confidence: 0.8481\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37119\n\nAuthor: zqian@umich.edu\nDate: 2007-10-18 16:39:00 -0400 (Thu, 18 Oct 2007)\nNew Revision: 37119\n\nModified:\nassignment/branches/sakai_2-4-x/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nfix to SAK-11944: NPE when accessing sort order\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Oct 18 16:29:46 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 18 Oct 2007 16:29:46 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 18 Oct 2007 16:29:46 -0400\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby panther.mail.umich.edu () with ESMTP id l9IKTjOo030113;\n\tThu, 18 Oct 2007 16:29:45 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4717C234.958E0.7591 ; \n\t18 Oct 2007 16:29:43 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 27B3E68798;\n\tThu, 18 Oct 2007 07:54:52 +0100 (BST)\nMessage-ID: <200710182027.l9IKRW3l008194@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 557\n          for <source@collab.sakaiproject.org>;\n          Thu, 18 Oct 2007 07:54:32 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 32EF81B781\n\tfor <source@collab.sakaiproject.org>; Thu, 18 Oct 2007 21:29:26 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9IKRW8S008196\n\tfor <source@collab.sakaiproject.org>; Thu, 18 Oct 2007 16:27:32 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9IKRW3l008194\n\tfor source@collab.sakaiproject.org; Thu, 18 Oct 2007 16:27:32 -0400\nDate: Thu, 18 Oct 2007 16:27:32 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37118 - assignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 18 16:29:46 2007\nX-DSPAM-Confidence: 0.8473\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37118\n\nAuthor: zqian@umich.edu\nDate: 2007-10-18 16:27:30 -0400 (Thu, 18 Oct 2007)\nNew Revision: 37118\n\nModified:\nassignment/trunk/assignment-tool/tool/src/java/org/sakaiproject/assignment/tool/AssignmentAction.java\nLog:\nFix to SAK-11944: NPE when accessing sort order\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Oct 18 16:10:39 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 18 Oct 2007 16:10:39 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 18 Oct 2007 16:10:39 -0400\nReceived: from shining.mr.itd.umich.edu (shining.mr.itd.umich.edu [141.211.93.153])\n\tby fan.mail.umich.edu () with ESMTP id l9IKAc5s030501;\n\tThu, 18 Oct 2007 16:10:38 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY shining.mr.itd.umich.edu ID 4717BD6D.D3CBA.7237 ; \n\t18 Oct 2007 16:09:20 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 2BE81546DF;\n\tThu, 18 Oct 2007 07:34:23 +0100 (BST)\nMessage-ID: <200710182006.l9IK6xi0008112@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 286\n          for <source@collab.sakaiproject.org>;\n          Thu, 18 Oct 2007 07:34:09 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id EE9051B952\n\tfor <source@collab.sakaiproject.org>; Thu, 18 Oct 2007 21:08:52 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9IK6x1d008114\n\tfor <source@collab.sakaiproject.org>; Thu, 18 Oct 2007 16:06:59 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9IK6xi0008112\n\tfor source@collab.sakaiproject.org; Thu, 18 Oct 2007 16:06:59 -0400\nDate: Thu, 18 Oct 2007 16:06:59 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37117 - authz/trunk/authz-tool/tool/src/java/org/sakaiproject/authz/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 18 16:10:39 2007\nX-DSPAM-Confidence: 0.9862\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37117\n\nAuthor: zqian@umich.edu\nDate: 2007-10-18 16:06:57 -0400 (Thu, 18 Oct 2007)\nNew Revision: 37117\n\nModified:\nauthz/trunk/authz-tool/tool/src/java/org/sakaiproject/authz/tool/RealmsAction.java\nLog:\nfix to SAK-9996:Cannot save realm and no warning to user if invalid provider id is entered\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zqian@umich.edu Thu Oct 18 16:02:03 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.39])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 18 Oct 2007 16:02:03 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 18 Oct 2007 16:02:03 -0400\nReceived: from dave.mr.itd.umich.edu (dave.mr.itd.umich.edu [141.211.14.70])\n\tby faithful.mail.umich.edu () with ESMTP id l9IK20GN025479;\n\tThu, 18 Oct 2007 16:02:00 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY dave.mr.itd.umich.edu ID 4717BB7E.CE4EF.1865 ; \n\t18 Oct 2007 16:01:05 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 22B5568782;\n\tThu, 18 Oct 2007 07:26:14 +0100 (BST)\nMessage-ID: <200710181958.l9IJwpY0008097@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 254\n          for <source@collab.sakaiproject.org>;\n          Thu, 18 Oct 2007 07:25:58 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 3B3001B66A\n\tfor <source@collab.sakaiproject.org>; Thu, 18 Oct 2007 21:00:45 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9IJwptS008099\n\tfor <source@collab.sakaiproject.org>; Thu, 18 Oct 2007 15:58:51 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9IJwpY0008097\n\tfor source@collab.sakaiproject.org; Thu, 18 Oct 2007 15:58:51 -0400\nDate: Thu, 18 Oct 2007 15:58:51 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zqian@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zqian@umich.edu\nSubject: [sakai] svn commit: r37116 - in site-manage/trunk/site-manage-tool/tool/src: java/org/sakaiproject/site/tool webapp/vm/sitesetup\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 18 16:02:03 2007\nX-DSPAM-Confidence: 0.9872\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37116\n\nAuthor: zqian@umich.edu\nDate: 2007-10-18 15:58:44 -0400 (Thu, 18 Oct 2007)\nNew Revision: 37116\n\nModified:\nsite-manage/trunk/site-manage-tool/tool/src/java/org/sakaiproject/site/tool/SiteAction.java\nsite-manage/trunk/site-manage-tool/tool/src/webapp/vm/sitesetup/chef_site-siteInfo-list.vm\nLog:\nFix to SAK-9996: Cannot save realm and no warning to user if invalid provider id is entered\n\nOnly log the exception message when the section id is fake.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Thu Oct 18 13:30:28 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.91])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 18 Oct 2007 13:30:28 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 18 Oct 2007 13:30:28 -0400\nReceived: from firestarter.mr.itd.umich.edu (firestarter.mr.itd.umich.edu [141.211.14.83])\n\tby jacknife.mail.umich.edu () with ESMTP id l9IHURNL027112;\n\tThu, 18 Oct 2007 13:30:27 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY firestarter.mr.itd.umich.edu ID 4717982D.B291E.9060 ; \n\t18 Oct 2007 13:30:24 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id AC79055D1D;\n\tThu, 18 Oct 2007 05:07:33 +0100 (BST)\nMessage-ID: <200710181728.l9IHSCUh007603@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 807\n          for <source@collab.sakaiproject.org>;\n          Thu, 18 Oct 2007 05:07:21 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id B616D1B768\n\tfor <source@collab.sakaiproject.org>; Thu, 18 Oct 2007 18:30:05 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9IHSCJ1007605\n\tfor <source@collab.sakaiproject.org>; Thu, 18 Oct 2007 13:28:12 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9IHSCUh007603\n\tfor source@collab.sakaiproject.org; Thu, 18 Oct 2007 13:28:12 -0400\nDate: Thu, 18 Oct 2007 13:28:12 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [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\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 18 13:30:28 2007\nX-DSPAM-Confidence: 0.8484\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37113\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-18 13:28:02 -0400 (Thu, 18 Oct 2007)\nNew Revision: 37113\n\nAdded:\nmemory/branches/SAK-11913/memory-impl/impl/src/test/\nmemory/branches/SAK-11913/memory-impl/impl/src/test/org/\nmemory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/\nmemory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/memory/\nmemory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/memory/impl/\nmemory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/memory/impl/test/\nmemory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/memory/impl/test/BasicMemoryServiceTest.java\nmemory/branches/SAK-11913/memory-impl/impl/src/test/org/sakaiproject/memory/impl/test/MemCacheTest.java\nModified:\nmemory/branches/SAK-11913/memory-impl/.classpath\nLog:\nSAK-11913: Committed the non-working test stubs since I had to abandon the old tests\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom aaronz@vt.edu Thu Oct 18 13:14:54 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.36])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 18 Oct 2007 13:14:54 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 18 Oct 2007 13:14:54 -0400\nReceived: from workinggirl.mr.itd.umich.edu (workinggirl.mr.itd.umich.edu [141.211.93.143])\n\tby godsend.mail.umich.edu () with ESMTP id l9IHEqan017760;\n\tThu, 18 Oct 2007 13:14:52 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY workinggirl.mr.itd.umich.edu ID 47179481.2EBC6.32204 ; \n\t18 Oct 2007 13:14:47 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 17BD9596E0;\n\tThu, 18 Oct 2007 04:51:53 +0100 (BST)\nMessage-ID: <200710181712.l9IHCSB4007532@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 157\n          for <source@collab.sakaiproject.org>;\n          Thu, 18 Oct 2007 04:51:36 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 6601A1B792\n\tfor <source@collab.sakaiproject.org>; Thu, 18 Oct 2007 18:14:21 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9IHCSUP007534\n\tfor <source@collab.sakaiproject.org>; Thu, 18 Oct 2007 13:12:28 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9IHCSB4007532\n\tfor source@collab.sakaiproject.org; Thu, 18 Oct 2007 13:12:28 -0400\nDate: Thu, 18 Oct 2007 13:12:28 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to aaronz@vt.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: aaronz@vt.edu\nSubject: [sakai] svn commit: r37112 - memory/branches/SAK-11913/memory-impl/pack/src/webapp/WEB-INF\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 18 13:14:54 2007\nX-DSPAM-Confidence: 0.9830\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37112\n\nAuthor: aaronz@vt.edu\nDate: 2007-10-18 13:12:23 -0400 (Thu, 18 Oct 2007)\nNew Revision: 37112\n\nModified:\nmemory/branches/SAK-11913/memory-impl/pack/src/webapp/WEB-INF/components.xml\nLog:\nSAK-11913: fixed up the circular dependency\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom jzaremba@unicon.net Thu Oct 18 12:17:38 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.92])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 18 Oct 2007 12:17:38 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 18 Oct 2007 12:17:38 -0400\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby score.mail.umich.edu () with ESMTP id l9IGHb1c028241;\n\tThu, 18 Oct 2007 12:17:37 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 4717871B.19A74.7527 ; \n\t18 Oct 2007 12:17:34 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id A55A256012;\n\tThu, 18 Oct 2007 04:12:48 +0100 (BST)\nMessage-ID: <200710181615.l9IGFJUn007405@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 1010\n          for <source@collab.sakaiproject.org>;\n          Thu, 18 Oct 2007 04:12:33 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 7E7FD1B781\n\tfor <source@collab.sakaiproject.org>; Thu, 18 Oct 2007 17:17:13 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9IGFK2l007407\n\tfor <source@collab.sakaiproject.org>; Thu, 18 Oct 2007 12:15:20 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9IGFJUn007405\n\tfor source@collab.sakaiproject.org; Thu, 18 Oct 2007 12:15:19 -0400\nDate: Thu, 18 Oct 2007 12:15:19 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to jzaremba@unicon.net using -f\nTo: source@collab.sakaiproject.org\nFrom: jzaremba@unicon.net\nSubject: [sakai] svn commit: r37111 - content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 18 12:17:38 2007\nX-DSPAM-Confidence: 0.9769\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37111\n\nAuthor: jzaremba@unicon.net\nDate: 2007-10-18 12:15:15 -0400 (Thu, 18 Oct 2007)\nNew Revision: 37111\n\nModified:\ncontent/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\nLog:\nTSQ-737 Now passing operator value from UI.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Thu Oct 18 12:08:06 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.95])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 18 Oct 2007 12:08:06 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 18 Oct 2007 12:08:06 -0400\nReceived: from serenity.mr.itd.umich.edu (serenity.mr.itd.umich.edu [141.211.14.43])\n\tby brazil.mail.umich.edu () with ESMTP id l9IG84OT023831;\n\tThu, 18 Oct 2007 12:08:04 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY serenity.mr.itd.umich.edu ID 471784DE.928DD.1090 ; \n\t18 Oct 2007 12:08:01 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 24D1B5347C;\n\tThu, 18 Oct 2007 04:03:13 +0100 (BST)\nMessage-ID: <200710181605.l9IG5mWZ007379@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 828\n          for <source@collab.sakaiproject.org>;\n          Thu, 18 Oct 2007 04:02:57 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id 519A4D910\n\tfor <source@collab.sakaiproject.org>; Thu, 18 Oct 2007 17:07:41 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9IG5mvL007381\n\tfor <source@collab.sakaiproject.org>; Thu, 18 Oct 2007 12:05:48 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9IG5mWZ007379\n\tfor source@collab.sakaiproject.org; Thu, 18 Oct 2007 12:05:48 -0400\nDate: Thu, 18 Oct 2007 12:05:48 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37110 - ctools/trunk/builds/ctools_2-4/configs\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 18 12:08:06 2007\nX-DSPAM-Confidence: 0.9826\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37110\n\nAuthor: dlhaines@umich.edu\nDate: 2007-10-18 12:05:46 -0400 (Thu, 18 Oct 2007)\nNew Revision: 37110\n\nRemoved:\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-0_RELEASE/\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-0_daily/\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_DAILY/\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4-x_LOADTEST/\nctools/trunk/builds/ctools_2-4/configs/ctools_2-4_QA_TAG/\nLog:\nCTools: remove obsolete builds.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom chmaurer@iupui.edu Thu Oct 18 11:51:45 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.46])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 18 Oct 2007 11:51:45 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 18 Oct 2007 11:51:45 -0400\nReceived: from ghostbusters.mr.itd.umich.edu (ghostbusters.mr.itd.umich.edu [141.211.93.144])\n\tby fan.mail.umich.edu () with ESMTP id l9IFpjMR020636;\n\tThu, 18 Oct 2007 11:51:45 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY ghostbusters.mr.itd.umich.edu ID 4717810A.B71AE.5207 ; \n\t18 Oct 2007 11:51:41 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id B99AA66E96;\n\tThu, 18 Oct 2007 03:46:55 +0100 (BST)\nMessage-ID: <200710181549.l9IFnUJj007340@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 555\n          for <source@collab.sakaiproject.org>;\n          Thu, 18 Oct 2007 03:46:43 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CAFD1179F5\n\tfor <source@collab.sakaiproject.org>; Thu, 18 Oct 2007 16:51:23 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9IFnVFY007342\n\tfor <source@collab.sakaiproject.org>; Thu, 18 Oct 2007 11:49:31 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9IFnUJj007340\n\tfor source@collab.sakaiproject.org; Thu, 18 Oct 2007 11:49:30 -0400\nDate: Thu, 18 Oct 2007 11:49:30 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to chmaurer@iupui.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: chmaurer@iupui.edu\nSubject: [sakai] svn commit: r37109 - osp/trunk/matrix/tool/src/webapp/WEB-INF/jsp/evaluation\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 18 11:51:45 2007\nX-DSPAM-Confidence: 0.9861\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37109\n\nAuthor: chmaurer@iupui.edu\nDate: 2007-10-18 11:49:29 -0400 (Thu, 18 Oct 2007)\nNew Revision: 37109\n\nModified:\nosp/trunk/matrix/tool/src/webapp/WEB-INF/jsp/evaluation/listEvaluationItems.jsp\nLog:\nhttp://bugs.sakaiproject.org/jira/browse/SAK-11984\nRemoved 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.\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom zach.thomas@txstate.edu Thu Oct 18 11:34:11 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.25])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 18 Oct 2007 11:34:11 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 18 Oct 2007 11:34:11 -0400\nReceived: from galaxyquest.mr.itd.umich.edu (galaxyquest.mr.itd.umich.edu [141.211.93.145])\n\tby panther.mail.umich.edu () with ESMTP id l9IFYAEH025992;\n\tThu, 18 Oct 2007 11:34:10 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY galaxyquest.mr.itd.umich.edu ID 47177CEC.91C46.21260 ; \n\t18 Oct 2007 11:34:07 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 09F1B682EC;\n\tThu, 18 Oct 2007 03:29:21 +0100 (BST)\nMessage-ID: <200710181531.l9IFVnHH007248@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 738\n          for <source@collab.sakaiproject.org>;\n          Thu, 18 Oct 2007 03:29:02 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id CBA611B6AA\n\tfor <source@collab.sakaiproject.org>; Thu, 18 Oct 2007 16:33:41 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9IFVnPZ007250\n\tfor <source@collab.sakaiproject.org>; Thu, 18 Oct 2007 11:31:49 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9IFVnHH007248\n\tfor source@collab.sakaiproject.org; Thu, 18 Oct 2007 11:31:49 -0400\nDate: Thu, 18 Oct 2007 11:31:49 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to zach.thomas@txstate.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: zach.thomas@txstate.edu\nSubject: [sakai] svn commit: r37108 - content/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 18 11:34:11 2007\nX-DSPAM-Confidence: 0.9810\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37108\n\nAuthor: zach.thomas@txstate.edu\nDate: 2007-10-18 11:31:46 -0400 (Thu, 18 Oct 2007)\nNew Revision: 37108\n\nModified:\ncontent/branches/SAK-11543/content-tool/tool/src/java/org/sakaiproject/content/tool/ResourcesAction.java\nLog:\nadded proper function names and query names for conditions\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\nFrom dlhaines@umich.edu Thu Oct 18 10:56:16 2007\nReturn-Path: <postmaster@collab.sakaiproject.org>\nReceived: from murder (mail.umich.edu [141.211.14.93])\n\t by thisboyslife.mail.umich.edu (Cyrus v2.3.8) with LMTPA;\n\t Thu, 18 Oct 2007 10:56:16 -0400\nX-Sieve: CMU Sieve 2.3\nReceived: from murder ([unix socket])\n\t by mail.umich.edu (Cyrus v2.2.12) with LMTPA;\n\t Thu, 18 Oct 2007 10:56:16 -0400\nReceived: from salemslot.mr.itd.umich.edu (salemslot.mr.itd.umich.edu [141.211.14.58])\n\tby mission.mail.umich.edu () with ESMTP id l9IEuFrS014699;\n\tThu, 18 Oct 2007 10:56:15 -0400\nReceived: FROM paploo.uhi.ac.uk (app1.prod.collab.uhi.ac.uk [194.35.219.184])\n\tBY salemslot.mr.itd.umich.edu ID 47177409.BBEE4.28758 ; \n\t18 Oct 2007 10:56:12 -0400\nReceived: from paploo.uhi.ac.uk (localhost [127.0.0.1])\n\tby paploo.uhi.ac.uk (Postfix) with ESMTP id 446D968515;\n\tThu, 18 Oct 2007 02:51:20 +0100 (BST)\nMessage-ID: <200710181453.l9IErsL6007196@nakamura.uits.iupui.edu>\nMime-Version: 1.0\nContent-Transfer-Encoding: 7bit\nReceived: from prod.collab.uhi.ac.uk ([194.35.219.182])\n          by paploo.uhi.ac.uk (JAMES SMTP Server 2.1.3) with SMTP ID 541\n          for <source@collab.sakaiproject.org>;\n          Thu, 18 Oct 2007 02:51:05 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (nakamura.uits.iupui.edu [134.68.220.122])\n\tby shmi.uhi.ac.uk (Postfix) with ESMTP id D29ACD8FB\n\tfor <source@collab.sakaiproject.org>; Thu, 18 Oct 2007 15:55:46 +0100 (BST)\nReceived: from nakamura.uits.iupui.edu (localhost [127.0.0.1])\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11) with ESMTP id l9IErsHG007198\n\tfor <source@collab.sakaiproject.org>; Thu, 18 Oct 2007 10:53:54 -0400\nReceived: (from apache@localhost)\n\tby nakamura.uits.iupui.edu (8.12.11.20060308/8.12.11/Submit) id l9IErsL6007196\n\tfor source@collab.sakaiproject.org; Thu, 18 Oct 2007 10:53:54 -0400\nDate: Thu, 18 Oct 2007 10:53:54 -0400\nX-Authentication-Warning: nakamura.uits.iupui.edu: apache set sender to dlhaines@umich.edu using -f\nTo: source@collab.sakaiproject.org\nFrom: dlhaines@umich.edu\nSubject: [sakai] svn commit: r37107 - ctools/trunk/builds/ctools_2-4/tools\nX-Content-Type-Outer-Envelope: text/plain; charset=UTF-8\nX-Content-Type-Message-Body: text/plain; charset=UTF-8\nContent-Type: text/plain; charset=UTF-8\nX-DSPAM-Result: Innocent\nX-DSPAM-Processed: Thu Oct 18 10:56:16 2007\nX-DSPAM-Confidence: 0.9836\nX-DSPAM-Probability: 0.0000\n\nDetails: http://source.sakaiproject.org/viewsvn/?view=rev&rev=37107\n\nAuthor: dlhaines@umich.edu\nDate: 2007-10-18 10:53:52 -0400 (Thu, 18 Oct 2007)\nNew Revision: 37107\n\nModified:\nctools/trunk/builds/ctools_2-4/tools/applyPatches.pl\nLog:\nCTools: clean up applyPatches.pl\n\n----------------------\nThis automatic notification message was sent by Sakai Collab (https://collab.sakaiproject.org/portal) from the Source site.\nYou can modify how you receive notifications at My Workspace > Preferences.\n\n\n\n"
  },
  {
    "path": "Course-4/Week-3/Assignment/tracks/Library.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple Computer//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>Major Version</key><integer>1</integer>\n\t<key>Minor Version</key><integer>1</integer>\n\t<key>Date</key><date>2015-11-24T11:12:10Z</date>\n\t<key>Application Version</key><string>12.3.1.23</string>\n\t<key>Features</key><integer>5</integer>\n\t<key>Show Content Ratings</key><true/>\n\t<key>Music Folder</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/</string>\n\t<key>Library Persistent ID</key><string>B7006C9E9799282E</string>\n\t<key>Tracks</key>\n\t<dict>\n\t\t<key>369</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>369</integer>\n\t\t\t<key>Name</key><string>Another One Bites The Dust</string>\n\t\t\t<key>Artist</key><string>Queen</string>\n\t\t\t<key>Composer</key><string>John Deacon</string>\n\t\t\t<key>Album</key><string>Greatest Hits</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4344295</integer>\n\t\t\t<key>Total Time</key><integer>217103</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>3</integer>\n\t\t\t<key>Track Count</key><integer>17</integer>\n\t\t\t<key>Year</key><integer>1980</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:13:02Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:12:53Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>55</integer>\n\t\t\t<key>Play Date</key><integer>3518868190</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-07-04T19:23:10Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2015-10-14T23:31:47Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>1511</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8845</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits/03%20Another%20One%20Bites%20The%20Dust.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>371</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>371</integer>\n\t\t\t<key>Name</key><string>Asche Zu Asche</string>\n\t\t\t<key>Artist</key><string>Rammstein</string>\n\t\t\t<key>Composer</key><string>Christoph Doom Schneider, Doktor Christian Lorenz, Oliver Riedel, Paul Landers, Richard Z. Kruspe-Bernstein &#38; Till Lindemann</string>\n\t\t\t<key>Album</key><string>Herzeleid</string>\n\t\t\t<key>Genre</key><string>Industrial</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4638526</integer>\n\t\t\t<key>Total Time</key><integer>231810</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>4</integer>\n\t\t\t<key>Track Count</key><integer>11</integer>\n\t\t\t<key>Year</key><integer>1995</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-22T04:38:17Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:13:04Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>79</integer>\n\t\t\t<key>Play Date</key><integer>3518869000</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-07-04T19:36:40Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>4576</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8846</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Rammstein/Herzeleid/04%20Asche%20Zu%20Asche.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>373</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>373</integer>\n\t\t\t<key>Name</key><string>Beauty School Dropout</string>\n\t\t\t<key>Artist</key><string>Various</string>\n\t\t\t<key>Album</key><string>Grease</string>\n\t\t\t<key>Genre</key><string>Soundtrack</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4801377</integer>\n\t\t\t<key>Total Time</key><integer>239960</integer>\n\t\t\t<key>Track Number</key><integer>6</integer>\n\t\t\t<key>Track Count</key><integer>24</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:13:26Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:13:15Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>48</integer>\n\t\t\t<key>Play Date</key><integer>3516380131</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-06-06T00:15:31Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2010-04-07T15:38:14Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>1401</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8847</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Various/Grease/06%20Beauty%20School%20Dropout.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>375</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>375</integer>\n\t\t\t<key>Name</key><string>Black Dog</string>\n\t\t\t<key>Artist</key><string>Led Zeppelin</string>\n\t\t\t<key>Composer</key><string>Jimmy Page, Robert Plant, John Paul Jones</string>\n\t\t\t<key>Album</key><string>IV</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5934629</integer>\n\t\t\t<key>Total Time</key><integer>296620</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>1</integer>\n\t\t\t<key>Track Count</key><integer>8</integer>\n\t\t\t<key>Year</key><integer>1971</integer>\n\t\t\t<key>Date Modified</key><date>2014-11-05T23:44:14Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:13:27Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>109</integer>\n\t\t\t<key>Play Date</key><integer>3516392326</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-06-06T03:38:46Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2012-11-19T14:17:56Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>1364</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8848</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Led%20Zeppelin/IV/01%20Black%20Dog.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>377</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>377</integer>\n\t\t\t<key>Name</key><string>Bring The Boys Back Home</string>\n\t\t\t<key>Artist</key><string>Pink Floyd</string>\n\t\t\t<key>Composer</key><string>Roger Waters</string>\n\t\t\t<key>Album</key><string>The Wall [Disc 2]</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>1744588</integer>\n\t\t\t<key>Total Time</key><integer>87118</integer>\n\t\t\t<key>Disc Number</key><integer>2</integer>\n\t\t\t<key>Disc Count</key><integer>2</integer>\n\t\t\t<key>Track Number</key><integer>5</integer>\n\t\t\t<key>Track Count</key><integer>13</integer>\n\t\t\t<key>Year</key><integer>1979</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:13:53Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:13:50Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>33</integer>\n\t\t\t<key>Play Date</key><integer>3514729354</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-05-17T21:42:34Z</date>\n\t\t\t<key>Skip Count</key><integer>11</integer>\n\t\t\t<key>Skip Date</key><date>2013-10-20T10:35:02Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>1445</integer>\n\t\t\t<key>Sort Album</key><string>Wall [Disc 2]</string>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8849</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-05%20Bring%20The%20Boys%20Back%20Home.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>379</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>379</integer>\n\t\t\t<key>Name</key><string>Circles</string>\n\t\t\t<key>Artist</key><string>Bryan Lee</string>\n\t\t\t<key>Album</key><string>Blues Is</string>\n\t\t\t<key>Genre</key><string>Funk</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>7109552</integer>\n\t\t\t<key>Total Time</key><integer>355369</integer>\n\t\t\t<key>Track Number</key><integer>1</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Date Modified</key><date>2009-03-31T14:14:37Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:13:54Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>54</integer>\n\t\t\t<key>Play Date</key><integer>3493169662</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-09-10T08:54:22Z</date>\n\t\t\t<key>Skip Count</key><integer>4</integer>\n\t\t\t<key>Skip Date</key><date>2013-07-01T12:06:02Z</date>\n\t\t\t<key>Rating</key><integer>60</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>1592</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B884A</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Bryan%20Lee/Blues%20Is/01%20Circles.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>381</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>381</integer>\n\t\t\t<key>Name</key><string>Comfortably Numb</string>\n\t\t\t<key>Artist</key><string>Pink Floyd</string>\n\t\t\t<key>Composer</key><string>David Gilmour</string>\n\t\t\t<key>Album</key><string>The Wall [Disc 2]</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>7684826</integer>\n\t\t\t<key>Total Time</key><integer>384130</integer>\n\t\t\t<key>Disc Number</key><integer>2</integer>\n\t\t\t<key>Disc Count</key><integer>2</integer>\n\t\t\t<key>Track Number</key><integer>6</integer>\n\t\t\t<key>Track Count</key><integer>13</integer>\n\t\t\t<key>Year</key><integer>1979</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:14:28Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:14:11Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>36</integer>\n\t\t\t<key>Play Date</key><integer>3514729795</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-05-17T21:49:55Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2013-10-21T00:07:39Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>1595</integer>\n\t\t\t<key>Sort Album</key><string>Wall [Disc 2]</string>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B884B</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-06%20Comfortably%20Numb.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>383</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>383</integer>\n\t\t\t<key>Name</key><string>Crazy Little Thing Called Love</string>\n\t\t\t<key>Artist</key><string>Queen</string>\n\t\t\t<key>Composer</key><string>Freddie Mercury</string>\n\t\t\t<key>Album</key><string>Greatest Hits</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3274850</integer>\n\t\t\t<key>Total Time</key><integer>163631</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>9</integer>\n\t\t\t<key>Track Count</key><integer>17</integer>\n\t\t\t<key>Year</key><integer>1979</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:14:37Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:14:30Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>38</integer>\n\t\t\t<key>Play Date</key><integer>3465751592</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-10-28T00:46:32Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>1258</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B884C</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits/09%20Crazy%20Little%20Thing%20Called%20Love.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>385</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>385</integer>\n\t\t\t<key>Name</key><string>Electric Funeral</string>\n\t\t\t<key>Artist</key><string>Black Sabbath</string>\n\t\t\t<key>Composer</key><string>Tony Iommi, Ozzy Osbourne, Geezer Butler, Bill Ward</string>\n\t\t\t<key>Album</key><string>Paranoid</string>\n\t\t\t<key>Genre</key><string>Metal</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5862554</integer>\n\t\t\t<key>Total Time</key><integer>293015</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>5</integer>\n\t\t\t<key>Track Count</key><integer>8</integer>\n\t\t\t<key>Year</key><integer>1970</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-21T22:50:24Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:14:38Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>44</integer>\n\t\t\t<key>Play Date</key><integer>3502701857</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-12-29T17:44:17Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>1188</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B884D</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Black%20Sabbath/Paranoid/05%20Electric%20Funeral.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>387</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>387</integer>\n\t\t\t<key>Name</key><string>Fat Bottomed Girls</string>\n\t\t\t<key>Artist</key><string>Queen</string>\n\t\t\t<key>Composer</key><string>Brian May</string>\n\t\t\t<key>Album</key><string>Greatest Hits</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5152514</integer>\n\t\t\t<key>Total Time</key><integer>257515</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>6</integer>\n\t\t\t<key>Track Count</key><integer>17</integer>\n\t\t\t<key>Year</key><integer>1978</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:15:04Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:14:53Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>38</integer>\n\t\t\t<key>Play Date</key><integer>3465671648</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-10-27T02:34:08Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>3631</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B884E</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits/06%20Fat%20Bottomed%20Girls.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>389</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>389</integer>\n\t\t\t<key>Name</key><string>For Those About To Rock (We Salute You)</string>\n\t\t\t<key>Artist</key><string>AC/DC</string>\n\t\t\t<key>Album</key><string>Who Made Who</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>7077218</integer>\n\t\t\t<key>Total Time</key><integer>353750</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>9</integer>\n\t\t\t<key>Track Count</key><integer>9</integer>\n\t\t\t<key>Year</key><integer>1981</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-22T04:16:01Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:15:06Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>84</integer>\n\t\t\t<key>Play Date</key><integer>3489336536</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-07-28T00:08:56Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>11774</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B884F</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Who%20Made%20Who/09%20For%20Those%20About%20To%20Rock%20(We%20Salute%20You).mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>391</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>391</integer>\n\t\t\t<key>Name</key><string>Four Sticks</string>\n\t\t\t<key>Artist</key><string>Led Zeppelin</string>\n\t\t\t<key>Composer</key><string>Jimmy Page, Robert Plant</string>\n\t\t\t<key>Album</key><string>IV</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5690630</integer>\n\t\t\t<key>Total Time</key><integer>284421</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>6</integer>\n\t\t\t<key>Track Count</key><integer>8</integer>\n\t\t\t<key>Year</key><integer>1971</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:15:38Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:15:24Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>84</integer>\n\t\t\t<key>Play Date</key><integer>3503057548</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-01-02T20:32:28Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>897</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8850</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Led%20Zeppelin/IV/06%20Four%20Sticks.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>393</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>393</integer>\n\t\t\t<key>Name</key><string>Furious Angels</string>\n\t\t\t<key>Artist</key><string>Rob Dougan</string>\n\t\t\t<key>Composer</key><string>Rob Dougan</string>\n\t\t\t<key>Album</key><string>The Matrix Reloaded</string>\n\t\t\t<key>Genre</key><string>Soundtrack</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>6602318</integer>\n\t\t\t<key>Total Time</key><integer>330004</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>2</integer>\n\t\t\t<key>Track Number</key><integer>4</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2003</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:15:54Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:15:40Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>54</integer>\n\t\t\t<key>Play Date</key><integer>3501131153</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-12-11T13:25:53Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2012-06-30T17:09:49Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>3425</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Sort Album</key><string>Matrix Reloaded</string>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8851</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/The%20Matrix%20Reloaded/1-04%20Furious%20Angels.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>395</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>395</integer>\n\t\t\t<key>Name</key><string>Gelle</string>\n\t\t\t<key>Artist</key><string>Bryan Lee</string>\n\t\t\t<key>Album</key><string>Blues Is</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3998889</integer>\n\t\t\t<key>Total Time</key><integer>199836</integer>\n\t\t\t<key>Track Number</key><integer>6</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:16:04Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:15:55Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>45</integer>\n\t\t\t<key>Play Date</key><integer>3493171048</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-09-10T09:17:28Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2013-10-28T20:48:05Z</date>\n\t\t\t<key>Rating</key><integer>60</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>1203</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8852</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Bryan%20Lee/Blues%20Is/06%20Gelle.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>397</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>397</integer>\n\t\t\t<key>Name</key><string>Going To California</string>\n\t\t\t<key>Artist</key><string>Led Zeppelin</string>\n\t\t\t<key>Composer</key><string>Jimmy Page, Robert Plant</string>\n\t\t\t<key>Album</key><string>IV</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4315553</integer>\n\t\t\t<key>Total Time</key><integer>215666</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>7</integer>\n\t\t\t<key>Track Count</key><integer>8</integer>\n\t\t\t<key>Year</key><integer>1971</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:16:15Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:16:06Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>100</integer>\n\t\t\t<key>Play Date</key><integer>3502891530</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-12-31T22:25:30Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2010-04-07T15:38:46Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>506</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8853</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Led%20Zeppelin/IV/07%20Going%20To%20California.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>399</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>399</integer>\n\t\t\t<key>Name</key><string>Gotta Move Fast</string>\n\t\t\t<key>Artist</key><string>Michael Loceff</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5752732</integer>\n\t\t\t<key>Total Time</key><integer>287529</integer>\n\t\t\t<key>Track Number</key><integer>9</integer>\n\t\t\t<key>Track Count</key><integer>13</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T13:16:30Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:16:17Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>19</integer>\n\t\t\t<key>Play Date</key><integer>3462615302</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-09-21T17:35:02Z</date>\n\t\t\t<key>Skip Count</key><integer>2</integer>\n\t\t\t<key>Skip Date</key><date>2007-03-26T12:20:03Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>945</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8854</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Michael%20Loceff/Unknown%20Album/09%20Gotta%20Move%20Fast.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>401</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>401</integer>\n\t\t\t<key>Name</key><string>Grease</string>\n\t\t\t<key>Artist</key><string>Various</string>\n\t\t\t<key>Album</key><string>Grease</string>\n\t\t\t<key>Genre</key><string>Soundtrack</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4117999</integer>\n\t\t\t<key>Total Time</key><integer>205792</integer>\n\t\t\t<key>Track Number</key><integer>1</integer>\n\t\t\t<key>Track Count</key><integer>24</integer>\n\t\t\t<key>Date Modified</key><date>2013-11-13T14:41:09Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:16:31Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>42</integer>\n\t\t\t<key>Play Date</key><integer>3516436529</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-06-06T15:55:29Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2014-02-02T16:42:49Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>1537</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8855</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Various/Grease/01%20Grease.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>403</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>403</integer>\n\t\t\t<key>Name</key><string>Hand of Doom</string>\n\t\t\t<key>Artist</key><string>Black Sabbath</string>\n\t\t\t<key>Composer</key><string>Tony Iommi, Ozzy Osbourne, Geezer Butler, Bill Ward</string>\n\t\t\t<key>Album</key><string>Paranoid</string>\n\t\t\t<key>Genre</key><string>Metal</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>8594436</integer>\n\t\t\t<key>Total Time</key><integer>429609</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>6</integer>\n\t\t\t<key>Track Count</key><integer>8</integer>\n\t\t\t<key>Year</key><integer>1970</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-21T22:51:16Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:16:41Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>36</integer>\n\t\t\t<key>Play Date</key><integer>3472741986</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-01-16T23:33:06Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>1462</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8856</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Black%20Sabbath/Paranoid/06%20Hand%20of%20Doom.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>405</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>405</integer>\n\t\t\t<key>Name</key><string>Hells Bells</string>\n\t\t\t<key>Artist</key><string>AC/DC</string>\n\t\t\t<key>Album</key><string>Who Made Who</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>6261125</integer>\n\t\t\t<key>Total Time</key><integer>312946</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>6</integer>\n\t\t\t<key>Track Count</key><integer>9</integer>\n\t\t\t<key>Year</key><integer>1980</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-22T04:15:10Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:17:07Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>82</integer>\n\t\t\t<key>Play Date</key><integer>3473354932</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-01-24T01:48:52Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2014-11-15T01:09:30Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>11733</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8857</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Who%20Made%20Who/06%20Hells%20Bells.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>407</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>407</integer>\n\t\t\t<key>Name</key><string>Hey You</string>\n\t\t\t<key>Artist</key><string>Pink Floyd</string>\n\t\t\t<key>Composer</key><string>Roger Waters</string>\n\t\t\t<key>Album</key><string>The Wall [Disc 2]</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5648310</integer>\n\t\t\t<key>Total Time</key><integer>282305</integer>\n\t\t\t<key>Disc Number</key><integer>2</integer>\n\t\t\t<key>Disc Count</key><integer>2</integer>\n\t\t\t<key>Track Number</key><integer>1</integer>\n\t\t\t<key>Track Count</key><integer>13</integer>\n\t\t\t<key>Year</key><integer>1979</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:17:37Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:17:24Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>23</integer>\n\t\t\t<key>Play Date</key><integer>3514729106</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-05-17T21:38:26Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>1309</integer>\n\t\t\t<key>Sort Album</key><string>Wall [Disc 2]</string>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8858</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-01%20Hey%20You.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>409</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>409</integer>\n\t\t\t<key>Name</key><string>I Worry</string>\n\t\t\t<key>Artist</key><string>Bryan Lee</string>\n\t\t\t<key>Album</key><string>Blues Is</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>6828475</integer>\n\t\t\t<key>Total Time</key><integer>341315</integer>\n\t\t\t<key>Track Number</key><integer>11</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:17:56Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:17:39Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>33</integer>\n\t\t\t<key>Play Date</key><integer>3493172455</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-09-10T09:40:55Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>1135</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8859</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Bryan%20Lee/Blues%20Is/11%20I%20Worry.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>411</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>411</integer>\n\t\t\t<key>Name</key><string>Iron Man</string>\n\t\t\t<key>Artist</key><string>Black Sabbath</string>\n\t\t\t<key>Composer</key><string>Tony Iommi, Ozzy Osbourne, Geezer Butler, Bill Ward</string>\n\t\t\t<key>Album</key><string>Paranoid</string>\n\t\t\t<key>Genre</key><string>Metal</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>7172848</integer>\n\t\t\t<key>Total Time</key><integer>358530</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>4</integer>\n\t\t\t<key>Track Count</key><integer>8</integer>\n\t\t\t<key>Year</key><integer>1970</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-22T01:49:48Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:17:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>39</integer>\n\t\t\t<key>Play Date</key><integer>3503420143</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-01-07T01:15:43Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>1981</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B885A</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Black%20Sabbath/Paranoid/04%20Iron%20Man.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>413</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>413</integer>\n\t\t\t<key>Name</key><string>Is There Anybody Out There?</string>\n\t\t\t<key>Artist</key><string>Pink Floyd</string>\n\t\t\t<key>Composer</key><string>Roger Waters</string>\n\t\t\t<key>Album</key><string>The Wall [Disc 2]</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3215808</integer>\n\t\t\t<key>Total Time</key><integer>160679</integer>\n\t\t\t<key>Disc Number</key><integer>2</integer>\n\t\t\t<key>Disc Count</key><integer>2</integer>\n\t\t\t<key>Track Number</key><integer>2</integer>\n\t\t\t<key>Track Count</key><integer>13</integer>\n\t\t\t<key>Year</key><integer>1979</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:18:24Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:18:17Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>26</integer>\n\t\t\t<key>Play Date</key><integer>3514729267</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-05-17T21:41:07Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2013-10-22T01:05:01Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>693</integer>\n\t\t\t<key>Sort Album</key><string>Wall [Disc 2]</string>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B885B</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-02%20Is%20There%20Anybody%20Out%20There_.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>415</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>415</integer>\n\t\t\t<key>Name</key><string>It was a Very Good Year</string>\n\t\t\t<key>Artist</key><string>Frank Sinatra</string>\n\t\t\t<key>Album</key><string>Greatest Hits</string>\n\t\t\t<key>Genre</key><string>Easy Listening</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5379221</integer>\n\t\t\t<key>Total Time</key><integer>268852</integer>\n\t\t\t<key>Track Number</key><integer>3</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:18:40Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:18:26Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>39</integer>\n\t\t\t<key>Play Date</key><integer>3468268859</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-11-26T05:00:59Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2007-03-26T12:20:03Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>696</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B885C</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Frank%20Sinatra/Greatest%20Hits/03%20It%20was%20a%20Very%20Good%20Year.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>417</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>417</integer>\n\t\t\t<key>Name</key><string>Its Your Move</string>\n\t\t\t<key>Artist</key><string>Bryan Lee</string>\n\t\t\t<key>Album</key><string>Blues Is</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4902211</integer>\n\t\t\t<key>Total Time</key><integer>245002</integer>\n\t\t\t<key>Track Number</key><integer>5</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:18:53Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:18:41Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>40</integer>\n\t\t\t<key>Play Date</key><integer>3493170848</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-09-10T09:14:08Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2007-03-26T12:20:03Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>2614</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B885D</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Bryan%20Lee/Blues%20Is/05%20Its%20Your%20Move.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>419</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>419</integer>\n\t\t\t<key>Name</key><string>Jack the Stripper/Fairies Wear Boots</string>\n\t\t\t<key>Artist</key><string>Black Sabbath</string>\n\t\t\t<key>Composer</key><string>Tony Iommi, Ozzy Osbourne, Geezer Butler, Bill Ward</string>\n\t\t\t<key>Album</key><string>Paranoid</string>\n\t\t\t<key>Genre</key><string>Metal</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>7482166</integer>\n\t\t\t<key>Total Time</key><integer>373995</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>8</integer>\n\t\t\t<key>Track Count</key><integer>8</integer>\n\t\t\t<key>Year</key><integer>1970</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-22T01:52:11Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:18:54Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>35</integer>\n\t\t\t<key>Play Date</key><integer>3472742511</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-01-16T23:41:51Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2007-03-26T12:20:03Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>1752</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B885E</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Black%20Sabbath/Paranoid/08%20Jack%20the%20Stripper_Fairies%20Wear%20Boots.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>421</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>421</integer>\n\t\t\t<key>Name</key><string>Killer Queen</string>\n\t\t\t<key>Artist</key><string>Queen</string>\n\t\t\t<key>Composer</key><string>Freddie Mercury</string>\n\t\t\t<key>Album</key><string>Greatest Hits</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3629575</integer>\n\t\t\t<key>Total Time</key><integer>181368</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>4</integer>\n\t\t\t<key>Track Count</key><integer>17</integer>\n\t\t\t<key>Year</key><integer>1974</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:19:21Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:19:13Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>34</integer>\n\t\t\t<key>Play Date</key><integer>3462508015</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-09-20T11:46:55Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2008-08-18T21:28:59Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>3266</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B885F</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits/04%20Killer%20Queen.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>423</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>423</integer>\n\t\t\t<key>Name</key><string>Laichzeit</string>\n\t\t\t<key>Artist</key><string>Rammstein</string>\n\t\t\t<key>Composer</key><string>Christoph Doom Schneider, Doktor Christian Lorenz, Oliver Riedel, Paul Landers, Richard Z. Kruspe-Bernstein &#38; Till Lindemann</string>\n\t\t\t<key>Album</key><string>Herzeleid</string>\n\t\t\t<key>Genre</key><string>Industrial</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5259192</integer>\n\t\t\t<key>Total Time</key><integer>262844</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>10</integer>\n\t\t\t<key>Track Count</key><integer>11</integer>\n\t\t\t<key>Year</key><integer>1995</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-22T04:41:32Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:19:23Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>41</integer>\n\t\t\t<key>Play Date</key><integer>3483455112</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-05-20T22:25:12Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2013-09-20T23:58:48Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>3721</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8860</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Rammstein/Herzeleid/10%20Laichzeit.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>425</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>425</integer>\n\t\t\t<key>Name</key><string>Let me Down Easy</string>\n\t\t\t<key>Artist</key><string>Bryan Lee</string>\n\t\t\t<key>Album</key><string>Blues Is</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>6630998</integer>\n\t\t\t<key>Total Time</key><integer>331441</integer>\n\t\t\t<key>Track Number</key><integer>4</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:19:50Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:19:36Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>43</integer>\n\t\t\t<key>Play Date</key><integer>3508728504</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-03-09T10:48:24Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>1929</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8861</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Bryan%20Lee/Blues%20Is/04%20Let%20me%20Down%20Easy.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>427</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>427</integer>\n\t\t\t<key>Name</key><string>Misty Mountain Hop</string>\n\t\t\t<key>Artist</key><string>Led Zeppelin</string>\n\t\t\t<key>Composer</key><string>Jimmy Page, Robert Plant, John Paul Jones</string>\n\t\t\t<key>Album</key><string>IV</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5578850</integer>\n\t\t\t<key>Total Time</key><integer>278831</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>5</integer>\n\t\t\t<key>Track Count</key><integer>8</integer>\n\t\t\t<key>Year</key><integer>1971</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:20:13Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:19:59Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>88</integer>\n\t\t\t<key>Play Date</key><integer>3492855896</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-09-06T17:44:56Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>1314</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8863</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Led%20Zeppelin/IV/05%20Misty%20Mountain%20Hop.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>429</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>429</integer>\n\t\t\t<key>Name</key><string>No Low Down</string>\n\t\t\t<key>Artist</key><string>Bryan Lee</string>\n\t\t\t<key>Album</key><string>Blues Is</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4917360</integer>\n\t\t\t<key>Total Time</key><integer>245760</integer>\n\t\t\t<key>Track Number</key><integer>9</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:20:34Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:20:24Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>39</integer>\n\t\t\t<key>Play Date</key><integer>3493171889</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-09-10T09:31:29Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>2768</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8865</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Bryan%20Lee/Blues%20Is/09%20No%20Low%20Down.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>431</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>431</integer>\n\t\t\t<key>Name</key><string>Now You Are Gone</string>\n\t\t\t<key>Artist</key><string>America</string>\n\t\t\t<key>Album</key><string>Greatest Hits</string>\n\t\t\t<key>Genre</key><string>Easy Listening</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3753347</integer>\n\t\t\t<key>Total Time</key><integer>187559</integer>\n\t\t\t<key>Track Number</key><integer>2</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:20:44Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:20:36Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>52</integer>\n\t\t\t<key>Play Date</key><integer>3528446011</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-10-23T15:53:31Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2010-04-26T22:57:59Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>656</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8866</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/America/Greatest%20Hits/02%20Now%20You%20Are%20Gone.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>433</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>433</integer>\n\t\t\t<key>Name</key><string>Outside The Wall</string>\n\t\t\t<key>Artist</key><string>Pink Floyd</string>\n\t\t\t<key>Composer</key><string>Roger Waters</string>\n\t\t\t<key>Album</key><string>The Wall [Disc 2]</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>2090965</integer>\n\t\t\t<key>Total Time</key><integer>104437</integer>\n\t\t\t<key>Disc Number</key><integer>2</integer>\n\t\t\t<key>Disc Count</key><integer>2</integer>\n\t\t\t<key>Track Number</key><integer>13</integer>\n\t\t\t<key>Track Count</key><integer>13</integer>\n\t\t\t<key>Year</key><integer>1979</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:20:59Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:20:55Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>16</integer>\n\t\t\t<key>Play Date</key><integer>3514729899</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-05-17T21:51:39Z</date>\n\t\t\t<key>Skip Count</key><integer>3</integer>\n\t\t\t<key>Skip Date</key><date>2008-08-18T21:29:02Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>35</integer>\n\t\t\t<key>Sort Album</key><string>Wall [Disc 2]</string>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8868</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Pink%20Floyd/The%20Wall%20%5BDisc%202%5D/2-13%20Outside%20The%20Wall.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>435</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>435</integer>\n\t\t\t<key>Name</key><string>Paranoid</string>\n\t\t\t<key>Artist</key><string>Black Sabbath</string>\n\t\t\t<key>Composer</key><string>Tony Iommi, Ozzy Osbourne, Geezer Butler, Bill Ward</string>\n\t\t\t<key>Album</key><string>Paranoid</string>\n\t\t\t<key>Genre</key><string>Metal</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3460848</integer>\n\t\t\t<key>Total Time</key><integer>172930</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>2</integer>\n\t\t\t<key>Track Count</key><integer>8</integer>\n\t\t\t<key>Year</key><integer>1970</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-22T01:48:18Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:21:00Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>36</integer>\n\t\t\t<key>Play Date</key><integer>3503420316</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-01-07T01:18:36Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>922</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8869</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Black%20Sabbath/Paranoid/02%20Paranoid.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>437</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>437</integer>\n\t\t\t<key>Name</key><string>Planet Caravan</string>\n\t\t\t<key>Artist</key><string>Black Sabbath</string>\n\t\t\t<key>Composer</key><string>Tony Iommi, Ozzy Osbourne, Geezer Butler, Bill Ward</string>\n\t\t\t<key>Album</key><string>Paranoid</string>\n\t\t\t<key>Genre</key><string>Metal</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5501017</integer>\n\t\t\t<key>Total Time</key><integer>274938</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>3</integer>\n\t\t\t<key>Track Count</key><integer>8</integer>\n\t\t\t<key>Year</key><integer>1970</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-22T01:48:59Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:21:09Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>38</integer>\n\t\t\t<key>Play Date</key><integer>3503420591</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-01-07T01:23:11Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2007-03-26T12:20:03Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>461</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B886A</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Black%20Sabbath/Paranoid/03%20Planet%20Caravan.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>439</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>439</integer>\n\t\t\t<key>Name</key><string>Pretty Jeanie</string>\n\t\t\t<key>Artist</key><string>Bryan Lee</string>\n\t\t\t<key>Album</key><string>Blues Is</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4505673</integer>\n\t\t\t<key>Total Time</key><integer>225175</integer>\n\t\t\t<key>Track Number</key><integer>10</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:21:32Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:21:23Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>34</integer>\n\t\t\t<key>Play Date</key><integer>3502812757</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-12-31T00:32:37Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2013-10-21T00:07:34Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>4946</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B886B</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Bryan%20Lee/Blues%20Is/10%20Pretty%20Jeanie.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>441</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>441</integer>\n\t\t\t<key>Name</key><string>Rammstein</string>\n\t\t\t<key>Artist</key><string>Rammstein</string>\n\t\t\t<key>Composer</key><string>Christoph Doom Schneider, Doktor Christian Lorenz, Oliver Riedel, Paul Landers, Richard Z. Kruspe-Bernstein &#38; Till Lindemann</string>\n\t\t\t<key>Album</key><string>Herzeleid</string>\n\t\t\t<key>Genre</key><string>Industrial</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5304122</integer>\n\t\t\t<key>Total Time</key><integer>265090</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>11</integer>\n\t\t\t<key>Track Count</key><integer>11</integer>\n\t\t\t<key>Year</key><integer>1995</integer>\n\t\t\t<key>Date Modified</key><date>2011-11-18T19:28:29Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:21:34Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>45</integer>\n\t\t\t<key>Play Date</key><integer>3489331767</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-07-27T22:49:27Z</date>\n\t\t\t<key>Skip Count</key><integer>3</integer>\n\t\t\t<key>Skip Date</key><date>2013-09-21T01:55:34Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>4060</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B886C</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Rammstein/Herzeleid/11%20Rammstein.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>443</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>443</integer>\n\t\t\t<key>Name</key><string>Rat Salad</string>\n\t\t\t<key>Artist</key><string>Black Sabbath</string>\n\t\t\t<key>Composer</key><string>Tony Iommi, Ozzy Osbourne, Geezer Butler, Bill Ward</string>\n\t\t\t<key>Album</key><string>Paranoid</string>\n\t\t\t<key>Genre</key><string>Metal</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3006841</integer>\n\t\t\t<key>Total Time</key><integer>150230</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>7</integer>\n\t\t\t<key>Track Count</key><integer>8</integer>\n\t\t\t<key>Year</key><integer>1970</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-22T01:51:32Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:21:47Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>46</integer>\n\t\t\t<key>Play Date</key><integer>3472742136</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-01-16T23:35:36Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>451</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B886F</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Black%20Sabbath/Paranoid/07%20Rat%20Salad.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>445</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>445</integer>\n\t\t\t<key>Name</key><string>Rock &#38; Roll</string>\n\t\t\t<key>Artist</key><string>Led Zeppelin</string>\n\t\t\t<key>Composer</key><string>Jimmy Page, Robert Plant, John Paul Jones, John Bonham</string>\n\t\t\t<key>Album</key><string>IV</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4420064</integer>\n\t\t\t<key>Total Time</key><integer>220891</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>2</integer>\n\t\t\t<key>Track Count</key><integer>8</integer>\n\t\t\t<key>Year</key><integer>1971</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:24:40Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:24:31Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>109</integer>\n\t\t\t<key>Play Date</key><integer>3503062355</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-01-02T21:52:35Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>1425</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8871</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Led%20Zeppelin/IV/02%20Rock%20&#38;%20Roll.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>447</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>447</integer>\n\t\t\t<key>Name</key><string>Rode Across the Desert</string>\n\t\t\t<key>Artist</key><string>America</string>\n\t\t\t<key>Album</key><string>Greatest Hits</string>\n\t\t\t<key>Genre</key><string>Easy Listening</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4999916</integer>\n\t\t\t<key>Total Time</key><integer>249887</integer>\n\t\t\t<key>Track Number</key><integer>1</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:24:53Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:24:42Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>60</integer>\n\t\t\t<key>Play Date</key><integer>3528445823</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-10-23T15:50:23Z</date>\n\t\t\t<key>Skip Count</key><integer>2</integer>\n\t\t\t<key>Skip Date</key><date>2014-02-26T14:21:42Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>964</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8872</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/America/Greatest%20Hits/01%20Rode%20Across%20the%20Desert.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>449</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>449</integer>\n\t\t\t<key>Name</key><string>Sandy</string>\n\t\t\t<key>Artist</key><string>Various</string>\n\t\t\t<key>Album</key><string>Grease</string>\n\t\t\t<key>Genre</key><string>Soundtrack</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3116986</integer>\n\t\t\t<key>Total Time</key><integer>155742</integer>\n\t\t\t<key>Track Number</key><integer>5</integer>\n\t\t\t<key>Track Count</key><integer>24</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:25:01Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:24:54Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>36</integer>\n\t\t\t<key>Play Date</key><integer>3478190630</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-03-21T00:03:50Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>1739</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8873</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Various/Grease/05%20Sandy.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>451</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>451</integer>\n\t\t\t<key>Name</key><string>Shake Your Foundations</string>\n\t\t\t<key>Artist</key><string>AC/DC</string>\n\t\t\t<key>Album</key><string>Who Made Who</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4677593</integer>\n\t\t\t<key>Total Time</key><integer>233769</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>7</integer>\n\t\t\t<key>Track Count</key><integer>9</integer>\n\t\t\t<key>Year</key><integer>1985</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-22T04:15:26Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:25:02Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>85</integer>\n\t\t\t<key>Play Date</key><integer>3396883263</integer>\n\t\t\t<key>Play Date UTC</key><date>2011-08-22T22:41:03Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2007-09-22T13:56:48Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>13346</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8874</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Who%20Made%20Who/07%20Shake%20Your%20Foundations.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>453</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>453</integer>\n\t\t\t<key>Name</key><string>Sister Golden Hair</string>\n\t\t\t<key>Artist</key><string>America</string>\n\t\t\t<key>Album</key><string>Greatest Hits</string>\n\t\t\t<key>Genre</key><string>Easy Listening</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4043309</integer>\n\t\t\t<key>Total Time</key><integer>202057</integer>\n\t\t\t<key>Track Number</key><integer>10</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:25:26Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:25:15Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>60</integer>\n\t\t\t<key>Play Date</key><integer>3528445364</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-10-23T15:42:44Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2010-04-26T22:58:16Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>1246</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8875</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/America/Greatest%20Hits/10%20Sister%20Golden%20Hair.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>455</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>455</integer>\n\t\t\t<key>Name</key><string>Somebody To Love</string>\n\t\t\t<key>Artist</key><string>Queen</string>\n\t\t\t<key>Composer</key><string>Freddie Mercury</string>\n\t\t\t<key>Album</key><string>Greatest Hits</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5953955</integer>\n\t\t\t<key>Total Time</key><integer>297586</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>5</integer>\n\t\t\t<key>Track Count</key><integer>17</integer>\n\t\t\t<key>Year</key><integer>1976</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:25:45Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:25:27Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>17</integer>\n\t\t\t<key>Play Date</key><integer>3460721056</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-08-30T19:24:16Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2012-04-06T18:23:11Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>3193</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8876</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits/05%20Somebody%20To%20Love.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>457</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>457</integer>\n\t\t\t<key>Name</key><string>Stairway To Heaven</string>\n\t\t\t<key>Artist</key><string>Led Zeppelin</string>\n\t\t\t<key>Composer</key><string>Jimmy Page, Robert Plant</string>\n\t\t\t<key>Album</key><string>IV</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>9633560</integer>\n\t\t\t<key>Total Time</key><integer>481567</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>4</integer>\n\t\t\t<key>Track Count</key><integer>8</integer>\n\t\t\t<key>Year</key><integer>1971</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:26:12Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:25:46Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>93</integer>\n\t\t\t<key>Play Date</key><integer>3502890835</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-12-31T22:13:55Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2007-09-22T11:57:58Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>754</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8877</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Led%20Zeppelin/IV/04%20Stairway%20To%20Heaven.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>459</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>459</integer>\n\t\t\t<key>Name</key><string>Strangers in the Night</string>\n\t\t\t<key>Artist</key><string>Frank Sinatra</string>\n\t\t\t<key>Album</key><string>Greatest Hits</string>\n\t\t\t<key>Genre</key><string>Easy Listening</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3171873</integer>\n\t\t\t<key>Total Time</key><integer>158484</integer>\n\t\t\t<key>Track Number</key><integer>1</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:26:23Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:26:14Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>42</integer>\n\t\t\t<key>Play Date</key><integer>3468267921</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-11-26T04:45:21Z</date>\n\t\t\t<key>Skip Count</key><integer>3</integer>\n\t\t\t<key>Skip Date</key><date>2013-11-20T17:32:22Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>694</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8878</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Frank%20Sinatra/Greatest%20Hits/01%20Strangers%20in%20the%20Night.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>461</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>461</integer>\n\t\t\t<key>Name</key><string>Summer Nights</string>\n\t\t\t<key>Artist</key><string>Various</string>\n\t\t\t<key>Album</key><string>Grease</string>\n\t\t\t<key>Genre</key><string>Soundtrack</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4341614</integer>\n\t\t\t<key>Total Time</key><integer>216973</integer>\n\t\t\t<key>Track Number</key><integer>2</integer>\n\t\t\t<key>Track Count</key><integer>24</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:26:37Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:26:24Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>35</integer>\n\t\t\t<key>Play Date</key><integer>3516437260</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-06-06T16:07:40Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2014-02-02T16:42:54Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>3063</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8879</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Various/Grease/02%20Summer%20Nights.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>463</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>463</integer>\n\t\t\t<key>Name</key><string>Summer Wind</string>\n\t\t\t<key>Artist</key><string>Frank Sinatra</string>\n\t\t\t<key>Album</key><string>Greatest Hits</string>\n\t\t\t<key>Genre</key><string>Easy Listening</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3553250</integer>\n\t\t\t<key>Total Time</key><integer>177554</integer>\n\t\t\t<key>Track Number</key><integer>2</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:26:49Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:26:39Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>46</integer>\n\t\t\t<key>Play Date</key><integer>3468268099</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-11-26T04:48:19Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2014-02-02T16:26:41Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>707</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B887A</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Frank%20Sinatra/Greatest%20Hits/02%20Summer%20Wind.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>465</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>465</integer>\n\t\t\t<key>Name</key><string>Thats Life</string>\n\t\t\t<key>Artist</key><string>Frank Sinatra</string>\n\t\t\t<key>Album</key><string>Greatest Hits</string>\n\t\t\t<key>Genre</key><string>Easy Listening</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3801934</integer>\n\t\t\t<key>Total Time</key><integer>189988</integer>\n\t\t\t<key>Track Number</key><integer>7</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:27:13Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:27:00Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>43</integer>\n\t\t\t<key>Play Date</key><integer>3468268288</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-11-26T04:51:28Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>1643</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B887C</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Frank%20Sinatra/Greatest%20Hits/07%20Thats%20Life.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>467</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>467</integer>\n\t\t\t<key>Name</key><string>The Battle Of Evermore</string>\n\t\t\t<key>Artist</key><string>Led Zeppelin</string>\n\t\t\t<key>Composer</key><string>Jimmy Page, Robert Plant</string>\n\t\t\t<key>Album</key><string>IV</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>7032813</integer>\n\t\t\t<key>Total Time</key><integer>351529</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>3</integer>\n\t\t\t<key>Track Count</key><integer>8</integer>\n\t\t\t<key>Year</key><integer>1971</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:27:33Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:27:14Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>110</integer>\n\t\t\t<key>Play Date</key><integer>3516379891</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-06-06T00:11:31Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2014-07-08T09:42:34Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>998</integer>\n\t\t\t<key>Sort Name</key><string>Battle Of Evermore</string>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B887D</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Led%20Zeppelin/IV/03%20The%20Battle%20Of%20Evermore.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>469</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>469</integer>\n\t\t\t<key>Name</key><string>The Blues \"Is\"</string>\n\t\t\t<key>Artist</key><string>Bryan Lee</string>\n\t\t\t<key>Album</key><string>Blues Is</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5046931</integer>\n\t\t\t<key>Total Time</key><integer>252238</integer>\n\t\t\t<key>Track Number</key><integer>12</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:27:46Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:27:35Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>45</integer>\n\t\t\t<key>Play Date</key><integer>3493172718</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-09-10T09:45:18Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>2631</integer>\n\t\t\t<key>Sort Name</key><string>Blues \"Is\"</string>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B887E</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Bryan%20Lee/Blues%20Is/12%20The%20Blues%20_Is_.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>471</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>471</integer>\n\t\t\t<key>Name</key><string>There it Is</string>\n\t\t\t<key>Artist</key><string>Bryan Lee</string>\n\t\t\t<key>Album</key><string>Blues Is</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>7910993</integer>\n\t\t\t<key>Total Time</key><integer>395441</integer>\n\t\t\t<key>Track Number</key><integer>7</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:28:06Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:27:47Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>35</integer>\n\t\t\t<key>Play Date</key><integer>3493171443</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-09-10T09:24:03Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2007-06-24T15:29:57Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>1684</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B887F</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Bryan%20Lee/Blues%20Is/07%20There%20it%20Is.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>473</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>473</integer>\n\t\t\t<key>Name</key><string>Think</string>\n\t\t\t<key>Artist</key><string>Bryan Lee</string>\n\t\t\t<key>Album</key><string>Blues Is</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>6408946</integer>\n\t\t\t<key>Total Time</key><integer>320339</integer>\n\t\t\t<key>Track Number</key><integer>2</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:28:22Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:28:08Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>41</integer>\n\t\t\t<key>Play Date</key><integer>3494419882</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-09-24T20:11:22Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>1944</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8880</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Bryan%20Lee/Blues%20Is/02%20Think.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>475</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>475</integer>\n\t\t\t<key>Name</key><string>This Town</string>\n\t\t\t<key>Artist</key><string>Frank Sinatra</string>\n\t\t\t<key>Album</key><string>Greatest Hits</string>\n\t\t\t<key>Genre</key><string>Easy Listening</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3703191</integer>\n\t\t\t<key>Total Time</key><integer>185051</integer>\n\t\t\t<key>Track Number</key><integer>11</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:28:32Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:28:23Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>44</integer>\n\t\t\t<key>Play Date</key><integer>3468268474</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-11-26T04:54:34Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>3122</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8881</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Frank%20Sinatra/Greatest%20Hits/11%20This%20Town.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>477</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>477</integer>\n\t\t\t<key>Name</key><string>Tin Man</string>\n\t\t\t<key>Artist</key><string>America</string>\n\t\t\t<key>Album</key><string>Greatest Hits</string>\n\t\t\t<key>Genre</key><string>Easy Listening</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4203689</integer>\n\t\t\t<key>Total Time</key><integer>210076</integer>\n\t\t\t<key>Track Number</key><integer>8</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:28:43Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:28:34Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>50</integer>\n\t\t\t<key>Play Date</key><integer>3528445574</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-10-23T15:46:14Z</date>\n\t\t\t<key>Skip Count</key><integer>2</integer>\n\t\t\t<key>Skip Date</key><date>2010-04-26T22:58:08Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>591</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8884</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/America/Greatest%20Hits/08%20Tin%20Man.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>479</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>479</integer>\n\t\t\t<key>Name</key><string>Track 01</string>\n\t\t\t<key>Artist</key><string>Billy Price</string>\n\t\t\t<key>Album</key><string>Danger Zone</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5238668</integer>\n\t\t\t<key>Total Time</key><integer>261825</integer>\n\t\t\t<key>Track Number</key><integer>1</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Date Modified</key><date>2013-11-15T19:10:20Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:28:45Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>47</integer>\n\t\t\t<key>Play Date</key><integer>3498845410</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-11-15T02:30:10Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2008-01-22T14:57:28Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>1000</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8885</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Billy%20Price/Danger%20Zone/01%20Track%2001.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>481</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>481</integer>\n\t\t\t<key>Name</key><string>Track 02</string>\n\t\t\t<key>Artist</key><string>Billy Price</string>\n\t\t\t<key>Album</key><string>Danger Zone</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3311354</integer>\n\t\t\t<key>Total Time</key><integer>165459</integer>\n\t\t\t<key>Track Number</key><integer>2</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:29:19Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:29:12Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>42</integer>\n\t\t\t<key>Play Date</key><integer>3498846039</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-11-15T02:40:39Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>562</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8887</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Billy%20Price/Danger%20Zone/02%20Track%2002.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>483</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>483</integer>\n\t\t\t<key>Name</key><string>Track 03</string>\n\t\t\t<key>Artist</key><string>Billy Price</string>\n\t\t\t<key>Album</key><string>Danger Zone</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4131599</integer>\n\t\t\t<key>Total Time</key><integer>206471</integer>\n\t\t\t<key>Track Number</key><integer>3</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:29:43Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:29:34Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>41</integer>\n\t\t\t<key>Play Date</key><integer>3498845616</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-11-15T02:33:36Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>393</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8889</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Billy%20Price/Danger%20Zone/03%20Track%2003.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>485</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>485</integer>\n\t\t\t<key>Name</key><string>Messin with the Kid</string>\n\t\t\t<key>Artist</key><string>The Canettes Blues Band</string>\n\t\t\t<key>Album</key><string>Self Titled</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4529707</integer>\n\t\t\t<key>Total Time</key><integer>226377</integer>\n\t\t\t<key>Track Number</key><integer>3</integer>\n\t\t\t<key>Track Count</key><integer>11</integer>\n\t\t\t<key>Date Modified</key><date>2008-01-11T02:25:56Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:29:44Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>23</integer>\n\t\t\t<key>Play Date</key><integer>3494418842</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-09-24T19:54:02Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2007-03-26T12:20:03Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>3677</integer>\n\t\t\t<key>Sort Artist</key><string>Canettes Blues Band</string>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B888C</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/Self%20Titled/03%20Messin%20with%20the%20Kid.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>487</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>487</integer>\n\t\t\t<key>Name</key><string>Track 04</string>\n\t\t\t<key>Artist</key><string>Billy Price</string>\n\t\t\t<key>Album</key><string>Danger Zone</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5145672</integer>\n\t\t\t<key>Total Time</key><integer>257175</integer>\n\t\t\t<key>Track Number</key><integer>4</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:30:37Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:30:23Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>37</integer>\n\t\t\t<key>Play Date</key><integer>3498845873</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-11-15T02:37:53Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2007-04-17T15:10:19Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>568</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B888E</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Billy%20Price/Danger%20Zone/04%20Track%2004.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>489</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>489</integer>\n\t\t\t<key>Name</key><string>Stormy Monday</string>\n\t\t\t<key>Artist</key><string>The Canettes Blues Band</string>\n\t\t\t<key>Album</key><string>Self Titled</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>9285037</integer>\n\t\t\t<key>Total Time</key><integer>464143</integer>\n\t\t\t<key>Track Number</key><integer>4</integer>\n\t\t\t<key>Track Count</key><integer>11</integer>\n\t\t\t<key>Date Modified</key><date>2011-04-06T22:33:27Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:30:38Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>29</integer>\n\t\t\t<key>Play Date</key><integer>3489327568</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-07-27T21:39:28Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>3571</integer>\n\t\t\t<key>Sort Artist</key><string>Canettes Blues Band</string>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B888F</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/Self%20Titled/04%20Stormy%20Monday.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>491</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>491</integer>\n\t\t\t<key>Name</key><string>Track 05</string>\n\t\t\t<key>Artist</key><string>Billy Price</string>\n\t\t\t<key>Album</key><string>Danger Zone</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4608072</integer>\n\t\t\t<key>Total Time</key><integer>230295</integer>\n\t\t\t<key>Track Number</key><integer>5</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:31:22Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:31:12Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>42</integer>\n\t\t\t<key>Play Date</key><integer>3503062585</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-01-02T21:56:25Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>299</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8891</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Billy%20Price/Danger%20Zone/05%20Track%2005.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>493</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>493</integer>\n\t\t\t<key>Name</key><string>Twenty Two Second Man</string>\n\t\t\t<key>Artist</key><string>Michael Loceff</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5029146</integer>\n\t\t\t<key>Total Time</key><integer>251350</integer>\n\t\t\t<key>Track Number</key><integer>8</integer>\n\t\t\t<key>Track Count</key><integer>13</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:31:50Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:31:38Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>18</integer>\n\t\t\t<key>Play Date</key><integer>3460785422</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-08-31T13:17:02Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2015-01-04T18:49:26Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>1523</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8893</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Michael%20Loceff/Unknown%20Album/08%20Twenty%20Two%20Second%20Man.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>495</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>495</integer>\n\t\t\t<key>Name</key><string>Waiting on Ice</string>\n\t\t\t<key>Artist</key><string>Bryan Lee</string>\n\t\t\t<key>Album</key><string>Blues Is</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5789853</integer>\n\t\t\t<key>Total Time</key><integer>289384</integer>\n\t\t\t<key>Track Number</key><integer>3</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T13:32:04Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:31:51Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>37</integer>\n\t\t\t<key>Play Date</key><integer>3493170271</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-09-10T09:04:31Z</date>\n\t\t\t<key>Skip Count</key><integer>2</integer>\n\t\t\t<key>Skip Date</key><date>2007-06-24T15:29:57Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>2655</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8894</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Bryan%20Lee/Blues%20Is/03%20Waiting%20on%20Ice.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>497</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>497</integer>\n\t\t\t<key>Name</key><string>War Pigs/Luke's Wall</string>\n\t\t\t<key>Artist</key><string>Black Sabbath</string>\n\t\t\t<key>Composer</key><string>Tony Iommi, Ozzy Osbourne, Geezer Butler, Bill Ward</string>\n\t\t\t<key>Album</key><string>Paranoid</string>\n\t\t\t<key>Genre</key><string>Metal</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>9566199</integer>\n\t\t\t<key>Total Time</key><integer>478197</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>1</integer>\n\t\t\t<key>Track Count</key><integer>8</integer>\n\t\t\t<key>Year</key><integer>1970</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-22T01:47:52Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:32:16Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>38</integer>\n\t\t\t<key>Play Date</key><integer>3503421069</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-01-07T01:31:09Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>1342</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8896</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Black%20Sabbath/Paranoid/01%20War%20Pigs_Luke's%20Wall.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>499</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>499</integer>\n\t\t\t<key>Name</key><string>We Are The Champions</string>\n\t\t\t<key>Artist</key><string>Queen</string>\n\t\t\t<key>Composer</key><string>Freddie Mercury</string>\n\t\t\t<key>Album</key><string>Greatest Hits</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3639510</integer>\n\t\t\t<key>Total Time</key><integer>181864</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>2</integer>\n\t\t\t<key>Track Count</key><integer>17</integer>\n\t\t\t<key>Year</key><integer>1977</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:32:46Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:32:39Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>24</integer>\n\t\t\t<key>Play Date</key><integer>3462548624</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-09-20T23:03:44Z</date>\n\t\t\t<key>Skip Count</key><integer>2</integer>\n\t\t\t<key>Skip Date</key><date>2007-11-06T14:11:40Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>4860</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B8899</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits/02%20We%20Are%20The%20Champions.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>501</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>501</integer>\n\t\t\t<key>Name</key><string>We Will Rock You</string>\n\t\t\t<key>Artist</key><string>Queen</string>\n\t\t\t<key>Composer</key><string>Brian May</string>\n\t\t\t<key>Album</key><string>Greatest Hits</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>2473394</integer>\n\t\t\t<key>Total Time</key><integer>123559</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>1</integer>\n\t\t\t<key>Track Count</key><integer>17</integer>\n\t\t\t<key>Year</key><integer>1977</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:32:52Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:32:48Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>33</integer>\n\t\t\t<key>Play Date</key><integer>3465234431</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-10-22T01:07:11Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>5248</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B889A</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits/01%20We%20Will%20Rock%20You.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>503</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>503</integer>\n\t\t\t<key>Name</key><string>When Somebody Loves You</string>\n\t\t\t<key>Artist</key><string>Frank Sinatra</string>\n\t\t\t<key>Album</key><string>Greatest Hits</string>\n\t\t\t<key>Genre</key><string>Easy Listening</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>2347450</integer>\n\t\t\t<key>Total Time</key><integer>117263</integer>\n\t\t\t<key>Track Number</key><integer>10</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:32:59Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:32:53Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>43</integer>\n\t\t\t<key>Play Date</key><integer>3516013813</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-06-01T18:30:13Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>3183</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B889B</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Frank%20Sinatra/Greatest%20Hits/10%20When%20Somebody%20Loves%20You.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>505</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>505</integer>\n\t\t\t<key>Name</key><string>When The Levee Breaks</string>\n\t\t\t<key>Artist</key><string>Led Zeppelin</string>\n\t\t\t<key>Composer</key><string>Jimmy Page, Robert Plant, John Paul Jones, John Bonham, Memphis Minnie</string>\n\t\t\t<key>Album</key><string>IV</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>8554752</integer>\n\t\t\t<key>Total Time</key><integer>427624</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>8</integer>\n\t\t\t<key>Track Count</key><integer>8</integer>\n\t\t\t<key>Year</key><integer>1971</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:33:25Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:33:01Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>83</integer>\n\t\t\t<key>Play Date</key><integer>3492859638</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-09-06T18:47:18Z</date>\n\t\t\t<key>Skip Count</key><integer>7</integer>\n\t\t\t<key>Skip Date</key><date>2014-04-23T00:19:53Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>1676</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B889C</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Led%20Zeppelin/IV/08%20When%20The%20Levee%20Breaks.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>507</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>507</integer>\n\t\t\t<key>Name</key><string>You are the One that I Want</string>\n\t\t\t<key>Artist</key><string>Various</string>\n\t\t\t<key>Album</key><string>Grease</string>\n\t\t\t<key>Genre</key><string>Soundtrack</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3400175</integer>\n\t\t\t<key>Total Time</key><integer>169900</integer>\n\t\t\t<key>Track Number</key><integer>4</integer>\n\t\t\t<key>Track Count</key><integer>24</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:33:42Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:33:35Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>31</integer>\n\t\t\t<key>Play Date</key><integer>3516437429</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-06-06T16:10:29Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>2038</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B88A0</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Various/Grease/04%20You%20are%20the%20One%20that%20I%20Want.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>509</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>509</integer>\n\t\t\t<key>Name</key><string>You Done Me Wrong</string>\n\t\t\t<key>Artist</key><string>Bryan Lee</string>\n\t\t\t<key>Album</key><string>Blues Is</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4004125</integer>\n\t\t\t<key>Total Time</key><integer>200097</integer>\n\t\t\t<key>Track Number</key><integer>8</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:33:52Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:33:44Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>35</integer>\n\t\t\t<key>Play Date</key><integer>3493171643</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-09-10T09:27:23Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>1667</integer>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B88A1</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Bryan%20Lee/Blues%20Is/08%20You%20Done%20Me%20Wrong.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>511</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>511</integer>\n\t\t\t<key>Name</key><string>You Shook Me All Night Long</string>\n\t\t\t<key>Artist</key><string>AC/DC</string>\n\t\t\t<key>Album</key><string>Who Made Who</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4220977</integer>\n\t\t\t<key>Total Time</key><integer>210938</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>2</integer>\n\t\t\t<key>Track Count</key><integer>9</integer>\n\t\t\t<key>Year</key><integer>1980</integer>\n\t\t\t<key>Date Modified</key><date>2008-11-19T19:04:59Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:33:53Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>92</integer>\n\t\t\t<key>Play Date</key><integer>3473353841</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-01-24T01:30:41Z</date>\n\t\t\t<key>Skip Count</key><integer>3</integer>\n\t\t\t<key>Skip Date</key><date>2012-06-11T21:42:20Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>11387</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B88A2</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Who%20Made%20Who/02%20You%20Shook%20Me%20All%20Night%20Long.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>513</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>513</integer>\n\t\t\t<key>Name</key><string>You're My Best Friend</string>\n\t\t\t<key>Artist</key><string>Queen</string>\n\t\t\t<key>Composer</key><string>John Deacon</string>\n\t\t\t<key>Album</key><string>Greatest Hits</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3455082</integer>\n\t\t\t<key>Total Time</key><integer>172643</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>8</integer>\n\t\t\t<key>Track Count</key><integer>17</integer>\n\t\t\t<key>Year</key><integer>1975</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:34:12Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:34:05Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>31</integer>\n\t\t\t<key>Play Date</key><integer>3502814214</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-12-31T00:56:54Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2007-03-26T12:20:03Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>3647</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B88A3</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Greatest%20Hits/08%20You're%20My%20Best%20Friend.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>515</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>515</integer>\n\t\t\t<key>Name</key><string>Zion</string>\n\t\t\t<key>Artist</key><string>Fluke</string>\n\t\t\t<key>Composer</key><string>Fluke</string>\n\t\t\t<key>Album</key><string>The Matrix Reloaded</string>\n\t\t\t<key>Genre</key><string>Soundtrack</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5472764</integer>\n\t\t\t<key>Total Time</key><integer>273528</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>2</integer>\n\t\t\t<key>Track Number</key><integer>11</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2003</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-14T16:34:26Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-14T16:34:14Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>47</integer>\n\t\t\t<key>Play Date</key><integer>3485865319</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-06-17T19:55:19Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>5005</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Sort Album</key><string>Matrix Reloaded</string>\n\t\t\t<key>Persistent ID</key><string>21130E105F3B88A4</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/The%20Matrix%20Reloaded/1-11%20Zion.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>517</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>517</integer>\n\t\t\t<key>Name</key><string>Who Made Who</string>\n\t\t\t<key>Artist</key><string>AC/DC</string>\n\t\t\t<key>Album</key><string>Who Made Who</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4146252</integer>\n\t\t\t<key>Total Time</key><integer>207203</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>1</integer>\n\t\t\t<key>Track Count</key><integer>9</integer>\n\t\t\t<key>Year</key><integer>1986</integer>\n\t\t\t<key>Date Modified</key><date>2015-11-19T00:22:38Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-22T04:12:56Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>110</integer>\n\t\t\t<key>Play Date</key><integer>3465066281</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-10-20T02:24:41Z</date>\n\t\t\t<key>Skip Count</key><integer>2</integer>\n\t\t\t<key>Skip Date</key><date>2014-11-15T01:09:23Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>13054</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Persistent ID</key><string>0ADE6EBFF9C07306</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Who%20Made%20Who/01%20Who%20Made%20Who.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>519</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>519</integer>\n\t\t\t<key>Name</key><string>D.T.</string>\n\t\t\t<key>Artist</key><string>AC/DC</string>\n\t\t\t<key>Composer</key><string>Angus Young/Malcolm Young</string>\n\t\t\t<key>Album</key><string>Who Made Who</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3476498</integer>\n\t\t\t<key>Total Time</key><integer>173714</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>3</integer>\n\t\t\t<key>Track Count</key><integer>9</integer>\n\t\t\t<key>Year</key><integer>1986</integer>\n\t\t\t<key>Date Modified</key><date>2014-11-07T19:09:50Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-22T04:13:40Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>90</integer>\n\t\t\t<key>Play Date</key><integer>3489327974</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-07-27T21:46:14Z</date>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>5526</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Persistent ID</key><string>0ADE6EBFF9C07307</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Who%20Made%20Who/03%20D.T..mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>521</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>521</integer>\n\t\t\t<key>Name</key><string>Sink the Pink</string>\n\t\t\t<key>Artist</key><string>AC/DC</string>\n\t\t\t<key>Album</key><string>Who Made Who</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5071510</integer>\n\t\t\t<key>Total Time</key><integer>253466</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>4</integer>\n\t\t\t<key>Track Count</key><integer>9</integer>\n\t\t\t<key>Year</key><integer>1985</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-22T04:14:16Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-22T04:13:56Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>83</integer>\n\t\t\t<key>Play Date</key><integer>3473354268</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-01-24T01:37:48Z</date>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>12760</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Persistent ID</key><string>0ADE6EBFF9C07308</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Who%20Made%20Who/04%20Sink%20the%20Pink.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>523</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>523</integer>\n\t\t\t<key>Name</key><string>Ride On</string>\n\t\t\t<key>Artist</key><string>AC/DC</string>\n\t\t\t<key>Album</key><string>Who Made Who</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>7027553</integer>\n\t\t\t<key>Total Time</key><integer>351268</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>5</integer>\n\t\t\t<key>Track Count</key><integer>9</integer>\n\t\t\t<key>Year</key><integer>1976</integer>\n\t\t\t<key>Date Modified</key><date>2009-11-20T14:48:27Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-22T04:14:21Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>75</integer>\n\t\t\t<key>Play Date</key><integer>3473354619</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-01-24T01:43:39Z</date>\n\t\t\t<key>Skip Count</key><integer>2</integer>\n\t\t\t<key>Skip Date</key><date>2014-11-15T01:09:33Z</date>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>4409</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Persistent ID</key><string>0ADE6EBFF9C07309</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Who%20Made%20Who/05%20Ride%20On.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>525</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>525</integer>\n\t\t\t<key>Name</key><string>Chase the Ace</string>\n\t\t\t<key>Artist</key><string>AC/DC</string>\n\t\t\t<key>Composer</key><string>Angus Young/Malcolm Young</string>\n\t\t\t<key>Album</key><string>Who Made Who</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3630629</integer>\n\t\t\t<key>Total Time</key><integer>181420</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>8</integer>\n\t\t\t<key>Track Count</key><integer>9</integer>\n\t\t\t<key>Year</key><integer>1986</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-22T04:15:38Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-22T04:15:28Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>93</integer>\n\t\t\t<key>Play Date</key><integer>3505752153</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-02-03T01:02:33Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2007-09-22T13:56:49Z</date>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>9759</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Persistent ID</key><string>0ADE6EBFF9C0730A</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Who%20Made%20Who/08%20Chase%20the%20Ace.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>527</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>527</integer>\n\t\t\t<key>Name</key><string>Wollt Ihr Das Bett In Flammen Sehen</string>\n\t\t\t<key>Artist</key><string>Rammstein</string>\n\t\t\t<key>Composer</key><string>Christoph Doom Schneider, Doktor Christian Lorenz, Oliver Riedel, Paul Landers, Richard Z. Kruspe-Bernstein &#38; Till Lindemann</string>\n\t\t\t<key>Album</key><string>Herzeleid</string>\n\t\t\t<key>Genre</key><string>Industrial</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>6350090</integer>\n\t\t\t<key>Total Time</key><integer>317387</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>1</integer>\n\t\t\t<key>Track Count</key><integer>11</integer>\n\t\t\t<key>Year</key><integer>1995</integer>\n\t\t\t<key>Date Modified</key><date>2010-04-07T22:17:41Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-22T04:35:34Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>50</integer>\n\t\t\t<key>Play Date</key><integer>3514730586</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-05-17T22:03:06Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2007-10-12T00:53:42Z</date>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>5418</integer>\n\t\t\t<key>Persistent ID</key><string>0ADE6EBFF9C07318</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Rammstein/Herzeleid/01%20Wollt%20Ihr%20Das%20Bett%20In%20Flammen%20Sehen.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>529</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>529</integer>\n\t\t\t<key>Name</key><string>Der Meister</string>\n\t\t\t<key>Artist</key><string>Rammstein</string>\n\t\t\t<key>Composer</key><string>Christoph Doom Schneider, Doktor Christian Lorenz, Oliver Riedel, Paul Landers, Richard Z. Kruspe-Bernstein &#38; Till Lindemann</string>\n\t\t\t<key>Album</key><string>Herzeleid</string>\n\t\t\t<key>Genre</key><string>Industrial</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5018344</integer>\n\t\t\t<key>Total Time</key><integer>250801</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>2</integer>\n\t\t\t<key>Track Count</key><integer>11</integer>\n\t\t\t<key>Year</key><integer>1995</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-22T04:37:12Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-22T04:36:34Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>46</integer>\n\t\t\t<key>Play Date</key><integer>3514730849</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-05-17T22:07:29Z</date>\n\t\t\t<key>Skip Count</key><integer>4</integer>\n\t\t\t<key>Skip Date</key><date>2013-09-21T15:35:00Z</date>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>4358</integer>\n\t\t\t<key>Persistent ID</key><string>0ADE6EBFF9C07319</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Rammstein/Herzeleid/02%20Der%20Meister.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>531</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>531</integer>\n\t\t\t<key>Name</key><string>Weisses Fleisch</string>\n\t\t\t<key>Artist</key><string>Rammstein</string>\n\t\t\t<key>Composer</key><string>Christoph Doom Schneider, Doktor Christian Lorenz, Oliver Riedel, Paul Landers, Richard Z. Kruspe-Bernstein &#38; Till Lindemann</string>\n\t\t\t<key>Album</key><string>Herzeleid</string>\n\t\t\t<key>Genre</key><string>Industrial</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4320356</integer>\n\t\t\t<key>Total Time</key><integer>215902</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>3</integer>\n\t\t\t<key>Track Count</key><integer>11</integer>\n\t\t\t<key>Year</key><integer>1995</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-22T04:37:45Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-22T04:37:14Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>52</integer>\n\t\t\t<key>Play Date</key><integer>3514731106</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-05-17T22:11:46Z</date>\n\t\t\t<key>Skip Count</key><integer>2</integer>\n\t\t\t<key>Skip Date</key><date>2013-10-22T01:05:06Z</date>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>4760</integer>\n\t\t\t<key>Persistent ID</key><string>0ADE6EBFF9C0731A</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Rammstein/Herzeleid/03%20Weisses%20Fleisch.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>533</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>533</integer>\n\t\t\t<key>Name</key><string>Seemann</string>\n\t\t\t<key>Artist</key><string>Rammstein</string>\n\t\t\t<key>Composer</key><string>Christoph Doom Schneider, Doktor Christian Lorenz, Oliver Riedel, Paul Landers, Richard Z. Kruspe-Bernstein &#38; Till Lindemann</string>\n\t\t\t<key>Album</key><string>Herzeleid</string>\n\t\t\t<key>Genre</key><string>Industrial</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5767009</integer>\n\t\t\t<key>Total Time</key><integer>288235</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>5</integer>\n\t\t\t<key>Track Count</key><integer>11</integer>\n\t\t\t<key>Year</key><integer>1995</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-22T01:38:55Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-22T04:38:20Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>34</integer>\n\t\t\t<key>Play Date</key><integer>3514731626</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-05-17T22:20:26Z</date>\n\t\t\t<key>Skip Count</key><integer>4</integer>\n\t\t\t<key>Skip Date</key><date>2013-11-20T18:05:55Z</date>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>4105</integer>\n\t\t\t<key>Persistent ID</key><string>0ADE6EBFF9C0731B</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Rammstein/Herzeleid/05%20Seemann.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>535</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>535</integer>\n\t\t\t<key>Name</key><string>Du Riechst So Gut</string>\n\t\t\t<key>Artist</key><string>Rammstein</string>\n\t\t\t<key>Composer</key><string>Christoph Doom Schneider, Doktor Christian Lorenz, Oliver Riedel, Paul Landers, Richard Z. Kruspe-Bernstein &#38; Till Lindemann</string>\n\t\t\t<key>Album</key><string>Herzeleid</string>\n\t\t\t<key>Genre</key><string>Industrial</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5788962</integer>\n\t\t\t<key>Total Time</key><integer>289332</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>6</integer>\n\t\t\t<key>Track Count</key><integer>11</integer>\n\t\t\t<key>Year</key><integer>1995</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-22T01:39:31Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-22T04:38:57Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>50</integer>\n\t\t\t<key>Play Date</key><integer>3514731915</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-05-17T22:25:15Z</date>\n\t\t\t<key>Skip Count</key><integer>2</integer>\n\t\t\t<key>Skip Date</key><date>2013-01-26T04:25:07Z</date>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>5072</integer>\n\t\t\t<key>Persistent ID</key><string>0ADE6EBFF9C0731C</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Rammstein/Herzeleid/06%20Du%20Riechst%20So%20Gut.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>537</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>537</integer>\n\t\t\t<key>Name</key><string>Das Alte Leid</string>\n\t\t\t<key>Artist</key><string>Rammstein</string>\n\t\t\t<key>Composer</key><string>Christoph Doom Schneider, Doktor Christian Lorenz, Oliver Riedel, Paul Landers, Richard Z. Kruspe-Bernstein &#38; Till Lindemann</string>\n\t\t\t<key>Album</key><string>Herzeleid</string>\n\t\t\t<key>Genre</key><string>Industrial</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>6893937</integer>\n\t\t\t<key>Total Time</key><integer>344581</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>7</integer>\n\t\t\t<key>Track Count</key><integer>11</integer>\n\t\t\t<key>Year</key><integer>1995</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-22T04:40:11Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-22T04:39:33Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>46</integer>\n\t\t\t<key>Play Date</key><integer>3483455746</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-05-20T22:35:46Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2012-11-19T23:45:09Z</date>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>4354</integer>\n\t\t\t<key>Persistent ID</key><string>0ADE6EBFF9C0731D</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Rammstein/Herzeleid/07%20Das%20Alte%20Leid.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>539</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>539</integer>\n\t\t\t<key>Name</key><string>Heirate Mich</string>\n\t\t\t<key>Artist</key><string>Rammstein</string>\n\t\t\t<key>Composer</key><string>Christoph Doom Schneider, Doktor Christian Lorenz, Oliver Riedel, Paul Landers, Richard Z. Kruspe-Bernstein &#38; Till Lindemann</string>\n\t\t\t<key>Album</key><string>Herzeleid</string>\n\t\t\t<key>Genre</key><string>Industrial</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5697006</integer>\n\t\t\t<key>Total Time</key><integer>284734</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>8</integer>\n\t\t\t<key>Track Count</key><integer>11</integer>\n\t\t\t<key>Year</key><integer>1995</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-22T04:40:42Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-22T04:40:13Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>39</integer>\n\t\t\t<key>Play Date</key><integer>3494418241</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-09-24T19:44:01Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2013-10-20T15:36:01Z</date>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>3449</integer>\n\t\t\t<key>Persistent ID</key><string>0ADE6EBFF9C0731E</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Rammstein/Herzeleid/08%20Heirate%20Mich.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>541</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>541</integer>\n\t\t\t<key>Name</key><string>Herzeleid</string>\n\t\t\t<key>Artist</key><string>Rammstein</string>\n\t\t\t<key>Composer</key><string>Christoph Doom Schneider, Doktor Christian Lorenz, Oliver Riedel, Paul Landers, Richard Z. Kruspe-Bernstein &#38; Till Lindemann</string>\n\t\t\t<key>Album</key><string>Herzeleid</string>\n\t\t\t<key>Genre</key><string>Industrial</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4470815</integer>\n\t\t\t<key>Total Time</key><integer>223425</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>9</integer>\n\t\t\t<key>Track Count</key><integer>11</integer>\n\t\t\t<key>Year</key><integer>1995</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-22T04:41:05Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-22T04:40:44Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>42</integer>\n\t\t\t<key>Play Date</key><integer>3501133343</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-12-11T14:02:23Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2007-03-26T12:20:03Z</date>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>4572</integer>\n\t\t\t<key>Persistent ID</key><string>0ADE6EBFF9C0731F</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Rammstein/Herzeleid/09%20Herzeleid.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>543</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>543</integer>\n\t\t\t<key>Name</key><string>Baba O'Riley</string>\n\t\t\t<key>Artist</key><string>The Who</string>\n\t\t\t<key>Composer</key><string>Pete Townshend</string>\n\t\t\t<key>Album</key><string>Who's Next</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5971179</integer>\n\t\t\t<key>Total Time</key><integer>298448</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>1</integer>\n\t\t\t<key>Track Count</key><integer>9</integer>\n\t\t\t<key>Year</key><integer>1971</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-22T11:29:27Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-22T11:28:56Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>45</integer>\n\t\t\t<key>Play Date</key><integer>3516367502</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-06-05T20:45:02Z</date>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>2287</integer>\n\t\t\t<key>Sort Artist</key><string>Who</string>\n\t\t\t<key>Persistent ID</key><string>0ADE6EBFF9C07345</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/The%20Who/Who's%20Next/01%20Baba%20O'Riley.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>545</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>545</integer>\n\t\t\t<key>Name</key><string>Bargain</string>\n\t\t\t<key>Artist</key><string>The Who</string>\n\t\t\t<key>Composer</key><string>Pete Townshend</string>\n\t\t\t<key>Album</key><string>Who's Next</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>6635730</integer>\n\t\t\t<key>Total Time</key><integer>331676</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>2</integer>\n\t\t\t<key>Track Count</key><integer>9</integer>\n\t\t\t<key>Year</key><integer>1971</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-22T11:29:58Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-22T11:29:29Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>37</integer>\n\t\t\t<key>Play Date</key><integer>3516377987</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-06-05T23:39:47Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2007-03-26T12:20:03Z</date>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>2534</integer>\n\t\t\t<key>Sort Artist</key><string>Who</string>\n\t\t\t<key>Persistent ID</key><string>0ADE6EBFF9C07346</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/The%20Who/Who's%20Next/02%20Bargain.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>547</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>547</integer>\n\t\t\t<key>Name</key><string>Love Ain't for Keeping</string>\n\t\t\t<key>Artist</key><string>The Who</string>\n\t\t\t<key>Composer</key><string>Pete Townshend</string>\n\t\t\t<key>Album</key><string>Who's Next</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>2613410</integer>\n\t\t\t<key>Total Time</key><integer>130560</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>3</integer>\n\t\t\t<key>Track Count</key><integer>9</integer>\n\t\t\t<key>Year</key><integer>1971</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-22T11:30:09Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-22T11:30:00Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>24</integer>\n\t\t\t<key>Play Date</key><integer>3468350819</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-11-27T03:46:59Z</date>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>2465</integer>\n\t\t\t<key>Sort Artist</key><string>Who</string>\n\t\t\t<key>Persistent ID</key><string>0ADE6EBFF9C07347</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/The%20Who/Who's%20Next/03%20Love%20Ain't%20for%20Keeping.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>549</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>549</integer>\n\t\t\t<key>Name</key><string>My Wife</string>\n\t\t\t<key>Artist</key><string>The Who</string>\n\t\t\t<key>Composer</key><string>John Entwistle</string>\n\t\t\t<key>Album</key><string>Who's Next</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4277917</integer>\n\t\t\t<key>Total Time</key><integer>213786</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>4</integer>\n\t\t\t<key>Track Count</key><integer>9</integer>\n\t\t\t<key>Year</key><integer>1971</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-22T11:30:27Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-22T11:30:11Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>17</integer>\n\t\t\t<key>Play Date</key><integer>3462550796</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-09-20T23:39:56Z</date>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>3053</integer>\n\t\t\t<key>Sort Artist</key><string>Who</string>\n\t\t\t<key>Persistent ID</key><string>0ADE6EBFF9C07348</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/The%20Who/Who's%20Next/04%20My%20Wife.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>551</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>551</integer>\n\t\t\t<key>Name</key><string>The Song Is Over</string>\n\t\t\t<key>Artist</key><string>The Who</string>\n\t\t\t<key>Composer</key><string>Pete Townshend</string>\n\t\t\t<key>Album</key><string>Who's Next</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>7518155</integer>\n\t\t\t<key>Total Time</key><integer>375797</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>5</integer>\n\t\t\t<key>Track Count</key><integer>9</integer>\n\t\t\t<key>Year</key><integer>1971</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-22T11:30:56Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-22T11:30:28Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>14</integer>\n\t\t\t<key>Play Date</key><integer>3416571659</integer>\n\t\t\t<key>Play Date UTC</key><date>2012-04-06T19:40:59Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2012-04-06T18:23:33Z</date>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>1521</integer>\n\t\t\t<key>Sort Artist</key><string>Who</string>\n\t\t\t<key>Sort Name</key><string>Song Is Over</string>\n\t\t\t<key>Persistent ID</key><string>0ADE6EBFF9C07349</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/The%20Who/Who's%20Next/05%20The%20Song%20Is%20Over.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>553</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>553</integer>\n\t\t\t<key>Name</key><string>Getting In Tune</string>\n\t\t\t<key>Artist</key><string>The Who</string>\n\t\t\t<key>Composer</key><string>Pete Townshend</string>\n\t\t\t<key>Album</key><string>Who's Next</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5778399</integer>\n\t\t\t<key>Total Time</key><integer>288809</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>6</integer>\n\t\t\t<key>Track Count</key><integer>9</integer>\n\t\t\t<key>Year</key><integer>1971</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-22T08:31:17Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-22T11:30:57Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>27</integer>\n\t\t\t<key>Play Date</key><integer>3462613748</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-09-21T17:09:08Z</date>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>1671</integer>\n\t\t\t<key>Sort Artist</key><string>Who</string>\n\t\t\t<key>Persistent ID</key><string>0ADE6EBFF9C0734A</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/The%20Who/Who's%20Next/06%20Getting%20In%20Tune.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>555</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>555</integer>\n\t\t\t<key>Name</key><string>Going Mobile</string>\n\t\t\t<key>Artist</key><string>The Who</string>\n\t\t\t<key>Composer</key><string>Pete Townshend</string>\n\t\t\t<key>Album</key><string>Who's Next</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4440404</integer>\n\t\t\t<key>Total Time</key><integer>221910</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>7</integer>\n\t\t\t<key>Track Count</key><integer>9</integer>\n\t\t\t<key>Year</key><integer>1971</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-22T11:31:32Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-22T11:31:18Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>28</integer>\n\t\t\t<key>Play Date</key><integer>3465205919</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-10-21T17:11:59Z</date>\n\t\t\t<key>Skip Count</key><integer>3</integer>\n\t\t\t<key>Skip Date</key><date>2013-07-01T19:39:07Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>2078</integer>\n\t\t\t<key>Sort Artist</key><string>Who</string>\n\t\t\t<key>Persistent ID</key><string>0ADE6EBFF9C0734B</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/The%20Who/Who's%20Next/07%20Going%20Mobile.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>557</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>557</integer>\n\t\t\t<key>Name</key><string>Behind Blue Eyes</string>\n\t\t\t<key>Artist</key><string>The Who</string>\n\t\t\t<key>Composer</key><string>Pete Townshend</string>\n\t\t\t<key>Album</key><string>Who's Next</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4433616</integer>\n\t\t\t<key>Total Time</key><integer>221570</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>8</integer>\n\t\t\t<key>Track Count</key><integer>9</integer>\n\t\t\t<key>Year</key><integer>1971</integer>\n\t\t\t<key>Date Modified</key><date>2006-02-22T11:31:47Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-22T11:31:34Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>43</integer>\n\t\t\t<key>Play Date</key><integer>3516380353</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-06-06T00:19:13Z</date>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>2095</integer>\n\t\t\t<key>Sort Artist</key><string>Who</string>\n\t\t\t<key>Persistent ID</key><string>0ADE6EBFF9C0734C</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/The%20Who/Who's%20Next/08%20Behind%20Blue%20Eyes.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>559</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>559</integer>\n\t\t\t<key>Name</key><string>Won't Get Fooled Again</string>\n\t\t\t<key>Artist</key><string>The Who</string>\n\t\t\t<key>Composer</key><string>Pete Townshend</string>\n\t\t\t<key>Album</key><string>Who's Next</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>10224447</integer>\n\t\t\t<key>Total Time</key><integer>511111</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>9</integer>\n\t\t\t<key>Track Count</key><integer>9</integer>\n\t\t\t<key>Year</key><integer>1971</integer>\n\t\t\t<key>Date Modified</key><date>2011-11-18T19:25:17Z</date>\n\t\t\t<key>Date Added</key><date>2006-02-22T11:31:48Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>21</integer>\n\t\t\t<key>Play Date</key><integer>3465751427</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-10-28T00:43:47Z</date>\n\t\t\t<key>Skip Count</key><integer>2</integer>\n\t\t\t<key>Skip Date</key><date>2013-10-21T00:07:27Z</date>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>2413</integer>\n\t\t\t<key>Sort Artist</key><string>Who</string>\n\t\t\t<key>Persistent ID</key><string>0ADE6EBFF9C0734D</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/The%20Who/Who's%20Next/09%20Won't%20Get%20Fooled%20Again.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>561</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>561</integer>\n\t\t\t<key>Name</key><string>Folsom Prison Blues</string>\n\t\t\t<key>Artist</key><string>Johnny Cash</string>\n\t\t\t<key>Composer</key><string>Johnny Cash</string>\n\t\t\t<key>Album</key><string>The Legend Of Johnny Cash</string>\n\t\t\t<key>Genre</key><string>Country</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3402330</integer>\n\t\t\t<key>Total Time</key><integer>170004</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>3</integer>\n\t\t\t<key>Track Count</key><integer>21</integer>\n\t\t\t<key>Year</key><integer>1956</integer>\n\t\t\t<key>Date Modified</key><date>2006-04-10T05:07:56Z</date>\n\t\t\t<key>Date Added</key><date>2006-04-10T05:07:41Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>47</integer>\n\t\t\t<key>Play Date</key><integer>3494613442</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-09-27T01:57:22Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>3572</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Sort Album</key><string>Legend Of Johnny Cash</string>\n\t\t\t<key>Persistent ID</key><string>9E95A5DBB5FB10B1</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/The%20Legend%20Of%20Johnny%20Cash/03%20Folsom%20Prison%20Blues.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>563</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>563</integer>\n\t\t\t<key>Name</key><string>I Walk The Line</string>\n\t\t\t<key>Artist</key><string>Johnny Cash</string>\n\t\t\t<key>Composer</key><string>Johnny Cash</string>\n\t\t\t<key>Album</key><string>The Legend Of Johnny Cash</string>\n\t\t\t<key>Genre</key><string>Country</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3316644</integer>\n\t\t\t<key>Total Time</key><integer>165720</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>4</integer>\n\t\t\t<key>Track Count</key><integer>21</integer>\n\t\t\t<key>Year</key><integer>1956</integer>\n\t\t\t<key>Date Modified</key><date>2006-04-10T05:08:11Z</date>\n\t\t\t<key>Date Added</key><date>2006-04-10T05:07:57Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>33</integer>\n\t\t\t<key>Play Date</key><integer>3494614411</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-09-27T02:13:31Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2014-03-21T00:21:18Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>4191</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Sort Album</key><string>Legend Of Johnny Cash</string>\n\t\t\t<key>Persistent ID</key><string>9E95A5DBB5FB10B2</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/The%20Legend%20Of%20Johnny%20Cash/04%20I%20Walk%20The%20Line.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>565</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>565</integer>\n\t\t\t<key>Name</key><string>Get Rhythm</string>\n\t\t\t<key>Artist</key><string>Johnny Cash</string>\n\t\t\t<key>Composer</key><string>Johnny Cash</string>\n\t\t\t<key>Album</key><string>The Legend Of Johnny Cash</string>\n\t\t\t<key>Genre</key><string>Country</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>2692835</integer>\n\t\t\t<key>Total Time</key><integer>134530</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>5</integer>\n\t\t\t<key>Track Count</key><integer>21</integer>\n\t\t\t<key>Year</key><integer>1956</integer>\n\t\t\t<key>Date Modified</key><date>2006-04-10T05:08:23Z</date>\n\t\t\t<key>Date Added</key><date>2006-04-10T05:08:12Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>35</integer>\n\t\t\t<key>Play Date</key><integer>3494614164</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-09-27T02:09:24Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>5483</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Sort Album</key><string>Legend Of Johnny Cash</string>\n\t\t\t<key>Persistent ID</key><string>9E95A5DBB5FB10B3</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/The%20Legend%20Of%20Johnny%20Cash/05%20Get%20Rhythm.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>567</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>567</integer>\n\t\t\t<key>Name</key><string>Big River</string>\n\t\t\t<key>Artist</key><string>Johnny Cash</string>\n\t\t\t<key>Composer</key><string>Johnny Cash</string>\n\t\t\t<key>Album</key><string>The Legend Of Johnny Cash</string>\n\t\t\t<key>Genre</key><string>Country</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3056459</integer>\n\t\t\t<key>Total Time</key><integer>152711</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>6</integer>\n\t\t\t<key>Track Count</key><integer>21</integer>\n\t\t\t<key>Year</key><integer>1958</integer>\n\t\t\t<key>Date Modified</key><date>2006-04-10T05:08:42Z</date>\n\t\t\t<key>Date Added</key><date>2006-04-10T05:08:25Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>51</integer>\n\t\t\t<key>Play Date</key><integer>3516392025</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-06-06T03:33:45Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2014-03-21T00:18:06Z</date>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>4384</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Sort Album</key><string>Legend Of Johnny Cash</string>\n\t\t\t<key>Persistent ID</key><string>9E95A5DBB5FB10B4</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/The%20Legend%20Of%20Johnny%20Cash/06%20Big%20River.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>569</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>569</integer>\n\t\t\t<key>Name</key><string>Guess Things Happen That Way</string>\n\t\t\t<key>Artist</key><string>Johnny Cash</string>\n\t\t\t<key>Composer</key><string>Jack Clement</string>\n\t\t\t<key>Album</key><string>The Legend Of Johnny Cash</string>\n\t\t\t<key>Genre</key><string>Country</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>2229964</integer>\n\t\t\t<key>Total Time</key><integer>111386</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>7</integer>\n\t\t\t<key>Track Count</key><integer>21</integer>\n\t\t\t<key>Year</key><integer>1958</integer>\n\t\t\t<key>Date Modified</key><date>2006-04-10T05:08:51Z</date>\n\t\t\t<key>Date Added</key><date>2006-04-10T05:08:43Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>35</integer>\n\t\t\t<key>Play Date</key><integer>3494614029</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-09-27T02:07:09Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2014-03-21T00:18:10Z</date>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>4968</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Sort Album</key><string>Legend Of Johnny Cash</string>\n\t\t\t<key>Persistent ID</key><string>9E95A5DBB5FB10B5</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/The%20Legend%20Of%20Johnny%20Cash/07%20Guess%20Things%20Happen%20That%20Way.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>571</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>571</integer>\n\t\t\t<key>Name</key><string>Ring Of Fire</string>\n\t\t\t<key>Artist</key><string>Johnny Cash</string>\n\t\t\t<key>Composer</key><string>June Carter, Merle Kilgore</string>\n\t\t\t<key>Album</key><string>The Legend Of Johnny Cash</string>\n\t\t\t<key>Genre</key><string>Country</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3144248</integer>\n\t\t\t<key>Total Time</key><integer>157100</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>8</integer>\n\t\t\t<key>Track Count</key><integer>21</integer>\n\t\t\t<key>Year</key><integer>1963</integer>\n\t\t\t<key>Date Modified</key><date>2006-04-10T05:09:03Z</date>\n\t\t\t<key>Date Added</key><date>2006-04-10T05:08:52Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>30</integer>\n\t\t\t<key>Play Date</key><integer>3503057987</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-01-02T20:39:47Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2014-03-21T00:20:55Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>4266</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Sort Album</key><string>Legend Of Johnny Cash</string>\n\t\t\t<key>Persistent ID</key><string>9E95A5DBB5FB10B6</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/The%20Legend%20Of%20Johnny%20Cash/08%20Ring%20Of%20Fire.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>573</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>573</integer>\n\t\t\t<key>Name</key><string>Jackson</string>\n\t\t\t<key>Artist</key><string>Johnny Cash</string>\n\t\t\t<key>Composer</key><string>Billy Edd Wheeler, Jerry Lieber</string>\n\t\t\t<key>Album</key><string>The Legend Of Johnny Cash</string>\n\t\t\t<key>Genre</key><string>Country</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3332852</integer>\n\t\t\t<key>Total Time</key><integer>166530</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>9</integer>\n\t\t\t<key>Track Count</key><integer>21</integer>\n\t\t\t<key>Year</key><integer>1967</integer>\n\t\t\t<key>Date Modified</key><date>2006-04-10T05:09:16Z</date>\n\t\t\t<key>Date Added</key><date>2006-04-10T05:09:05Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>35</integer>\n\t\t\t<key>Play Date</key><integer>3494613765</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-09-27T02:02:45Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2014-03-21T00:21:12Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>5348</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Sort Album</key><string>Legend Of Johnny Cash</string>\n\t\t\t<key>Persistent ID</key><string>9E95A5DBB5FB10B7</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/The%20Legend%20Of%20Johnny%20Cash/09%20Jackson.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>575</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>575</integer>\n\t\t\t<key>Name</key><string>A Boy Named Sue (live)</string>\n\t\t\t<key>Artist</key><string>Johnny Cash</string>\n\t\t\t<key>Composer</key><string>Shel Silverstein</string>\n\t\t\t<key>Album</key><string>The Legend Of Johnny Cash</string>\n\t\t\t<key>Genre</key><string>Country</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4523514</integer>\n\t\t\t<key>Total Time</key><integer>226063</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>10</integer>\n\t\t\t<key>Track Count</key><integer>21</integer>\n\t\t\t<key>Year</key><integer>1969</integer>\n\t\t\t<key>Date Modified</key><date>2006-04-10T05:09:32Z</date>\n\t\t\t<key>Date Added</key><date>2006-04-10T05:09:17Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>37</integer>\n\t\t\t<key>Play Date</key><integer>3502897865</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-01-01T00:11:05Z</date>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>3758</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Sort Album</key><string>Legend Of Johnny Cash</string>\n\t\t\t<key>Sort Name</key><string>Boy Named Sue (live)</string>\n\t\t\t<key>Persistent ID</key><string>9E95A5DBB5FB10B8</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/The%20Legend%20Of%20Johnny%20Cash/10%20A%20Boy%20Named%20Sue%20(live).mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>577</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>577</integer>\n\t\t\t<key>Name</key><string>You Raise Me Up</string>\n\t\t\t<key>Artist</key><string>Selah</string>\n\t\t\t<key>Composer</key><string>Selah</string>\n\t\t\t<key>Album</key><string>Hiding Place</string>\n\t\t\t<key>Genre</key><string>Gospel &#38; Religious</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>6047466</integer>\n\t\t\t<key>Total Time</key><integer>302262</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>1</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2004</integer>\n\t\t\t<key>Date Modified</key><date>2006-07-30T14:50:45Z</date>\n\t\t\t<key>Date Added</key><date>2006-07-30T14:50:14Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>9</integer>\n\t\t\t<key>Play Date</key><integer>3489330119</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-07-27T22:21:59Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2013-07-30T03:22:33Z</date>\n\t\t\t<key>Normalization</key><integer>1904</integer>\n\t\t\t<key>Persistent ID</key><string>AD380477BA4E871B</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Selah/Hiding%20Place/01%20You%20Raise%20Me%20Up.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>579</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>579</integer>\n\t\t\t<key>Name</key><string>Hold On, I'm Coming</string>\n\t\t\t<key>Artist</key><string>The Canettes Blues Band</string>\n\t\t\t<key>Album</key><string>On Tap &#38; In the Can</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5653546</integer>\n\t\t\t<key>Total Time</key><integer>282566</integer>\n\t\t\t<key>Track Number</key><integer>1</integer>\n\t\t\t<key>Track Count</key><integer>14</integer>\n\t\t\t<key>Date Modified</key><date>2006-12-12T15:47:46Z</date>\n\t\t\t<key>Date Added</key><date>2006-12-12T21:47:17Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>34</integer>\n\t\t\t<key>Play Date</key><integer>3460724246</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-08-30T20:17:26Z</date>\n\t\t\t<key>Skip Count</key><integer>2</integer>\n\t\t\t<key>Skip Date</key><date>2008-04-11T14:24:20Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>4674</integer>\n\t\t\t<key>Sort Artist</key><string>Canettes Blues Band</string>\n\t\t\t<key>Persistent ID</key><string>D2ADA1732FE4BFB6</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/On%20Tap%20&#38;%20In%20the%20Can/01%20Hold%20On,%20I'm%20Coming.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>581</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>581</integer>\n\t\t\t<key>Name</key><string>Got my Mojo Working</string>\n\t\t\t<key>Artist</key><string>The Canettes Blues Band</string>\n\t\t\t<key>Album</key><string>On Tap &#38; In the Can</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>6212566</integer>\n\t\t\t<key>Total Time</key><integer>310517</integer>\n\t\t\t<key>Track Number</key><integer>2</integer>\n\t\t\t<key>Track Count</key><integer>14</integer>\n\t\t\t<key>Date Modified</key><date>2006-12-12T15:48:15Z</date>\n\t\t\t<key>Date Added</key><date>2006-12-12T21:47:47Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>52</integer>\n\t\t\t<key>Play Date</key><integer>3462615015</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-09-21T17:30:15Z</date>\n\t\t\t<key>Skip Count</key><integer>2</integer>\n\t\t\t<key>Skip Date</key><date>2015-01-02T22:11:56Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>6231</integer>\n\t\t\t<key>Sort Artist</key><string>Canettes Blues Band</string>\n\t\t\t<key>Persistent ID</key><string>D2ADA1732FE4C040</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/On%20Tap%20&#38;%20In%20the%20Can/02%20Got%20my%20Mojo%20Working.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>583</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>583</integer>\n\t\t\t<key>Name</key><string>Sweet Home Chicago</string>\n\t\t\t<key>Artist</key><string>The Canettes Blues Band</string>\n\t\t\t<key>Album</key><string>On Tap &#38; In the Can</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>7519210</integer>\n\t\t\t<key>Total Time</key><integer>375849</integer>\n\t\t\t<key>Track Number</key><integer>3</integer>\n\t\t\t<key>Track Count</key><integer>14</integer>\n\t\t\t<key>Date Modified</key><date>2006-12-12T15:48:49Z</date>\n\t\t\t<key>Date Added</key><date>2006-12-12T21:48:17Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>27</integer>\n\t\t\t<key>Play Date</key><integer>3458499108</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-08-05T02:11:48Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>6114</integer>\n\t\t\t<key>Sort Artist</key><string>Canettes Blues Band</string>\n\t\t\t<key>Persistent ID</key><string>D2ADA1732FE4C042</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/On%20Tap%20&#38;%20In%20the%20Can/03%20Sweet%20Home%20Chicago.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>585</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>585</integer>\n\t\t\t<key>Name</key><string>Heavy Love</string>\n\t\t\t<key>Artist</key><string>The Canettes Blues Band</string>\n\t\t\t<key>Album</key><string>On Tap &#38; In the Can</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5073096</integer>\n\t\t\t<key>Total Time</key><integer>253544</integer>\n\t\t\t<key>Track Number</key><integer>4</integer>\n\t\t\t<key>Track Count</key><integer>14</integer>\n\t\t\t<key>Date Modified</key><date>2006-12-12T15:49:09Z</date>\n\t\t\t<key>Date Added</key><date>2006-12-12T21:48:50Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>28</integer>\n\t\t\t<key>Play Date</key><integer>3461041695</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-09-03T12:28:15Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>4109</integer>\n\t\t\t<key>Sort Artist</key><string>Canettes Blues Band</string>\n\t\t\t<key>Persistent ID</key><string>D2ADA1732FE4C044</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/On%20Tap%20&#38;%20In%20the%20Can/04%20Heavy%20Love.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>587</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>587</integer>\n\t\t\t<key>Name</key><string>Cold Cold Feeling</string>\n\t\t\t<key>Artist</key><string>The Canettes Blues Band</string>\n\t\t\t<key>Album</key><string>On Tap &#38; In the Can</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5240809</integer>\n\t\t\t<key>Total Time</key><integer>261929</integer>\n\t\t\t<key>Track Number</key><integer>5</integer>\n\t\t\t<key>Track Count</key><integer>14</integer>\n\t\t\t<key>Date Modified</key><date>2006-12-12T15:49:29Z</date>\n\t\t\t<key>Date Added</key><date>2006-12-12T21:49:11Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>43</integer>\n\t\t\t<key>Play Date</key><integer>3462607121</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-09-21T15:18:41Z</date>\n\t\t\t<key>Skip Count</key><integer>2</integer>\n\t\t\t<key>Skip Date</key><date>2013-10-20T10:35:05Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>3238</integer>\n\t\t\t<key>Sort Artist</key><string>Canettes Blues Band</string>\n\t\t\t<key>Persistent ID</key><string>D2ADA1732FE4C046</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/On%20Tap%20&#38;%20In%20the%20Can/05%20Cold%20Cold%20Feeling.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>589</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>589</integer>\n\t\t\t<key>Name</key><string>Lonely Avenue</string>\n\t\t\t<key>Artist</key><string>The Canettes Blues Band</string>\n\t\t\t<key>Album</key><string>On Tap &#38; In the Can</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5842666</integer>\n\t\t\t<key>Total Time</key><integer>292022</integer>\n\t\t\t<key>Track Number</key><integer>6</integer>\n\t\t\t<key>Track Count</key><integer>14</integer>\n\t\t\t<key>Date Modified</key><date>2006-12-12T12:49:50Z</date>\n\t\t\t<key>Date Added</key><date>2006-12-12T21:49:30Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>24</integer>\n\t\t\t<key>Play Date</key><integer>3489332620</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-07-27T23:03:40Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>3416</integer>\n\t\t\t<key>Sort Artist</key><string>Canettes Blues Band</string>\n\t\t\t<key>Persistent ID</key><string>D2ADA1732FE4C048</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/On%20Tap%20&#38;%20In%20the%20Can/06%20Lonely%20Avenue.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>591</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>591</integer>\n\t\t\t<key>Name</key><string>Good Morning Little Schoolgirl</string>\n\t\t\t<key>Artist</key><string>The Canettes Blues Band</string>\n\t\t\t<key>Album</key><string>On Tap &#38; In the Can</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5575189</integer>\n\t\t\t<key>Total Time</key><integer>278648</integer>\n\t\t\t<key>Track Number</key><integer>7</integer>\n\t\t\t<key>Track Count</key><integer>14</integer>\n\t\t\t<key>Date Modified</key><date>2006-12-12T15:50:09Z</date>\n\t\t\t<key>Date Added</key><date>2006-12-12T21:49:51Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>20</integer>\n\t\t\t<key>Play Date</key><integer>3460725197</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-08-30T20:33:17Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2013-10-20T03:08:40Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>3857</integer>\n\t\t\t<key>Sort Artist</key><string>Canettes Blues Band</string>\n\t\t\t<key>Persistent ID</key><string>D2ADA1732FE4C04A</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/On%20Tap%20&#38;%20In%20the%20Can/07%20Good%20Morning%20Little%20Schoolgirl.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>593</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>593</integer>\n\t\t\t<key>Name</key><string>Dust My Broom</string>\n\t\t\t<key>Artist</key><string>The Canettes Blues Band</string>\n\t\t\t<key>Album</key><string>On Tap &#38; In the Can</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5988429</integer>\n\t\t\t<key>Total Time</key><integer>299311</integer>\n\t\t\t<key>Track Number</key><integer>8</integer>\n\t\t\t<key>Track Count</key><integer>14</integer>\n\t\t\t<key>Date Modified</key><date>2006-12-12T15:50:28Z</date>\n\t\t\t<key>Date Added</key><date>2006-12-12T21:50:10Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>24</integer>\n\t\t\t<key>Play Date</key><integer>3462551095</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-09-20T23:44:55Z</date>\n\t\t\t<key>Skip Count</key><integer>2</integer>\n\t\t\t<key>Skip Date</key><date>2013-09-21T16:11:45Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>6499</integer>\n\t\t\t<key>Sort Artist</key><string>Canettes Blues Band</string>\n\t\t\t<key>Persistent ID</key><string>D2ADA1732FE4C04C</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/On%20Tap%20&#38;%20In%20the%20Can/08%20Dust%20My%20Broom.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>595</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>595</integer>\n\t\t\t<key>Name</key><string>Gimme' Some Lovin</string>\n\t\t\t<key>Artist</key><string>The Canettes Blues Band</string>\n\t\t\t<key>Album</key><string>On Tap &#38; In the Can</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4546997</integer>\n\t\t\t<key>Total Time</key><integer>227239</integer>\n\t\t\t<key>Track Number</key><integer>9</integer>\n\t\t\t<key>Track Count</key><integer>14</integer>\n\t\t\t<key>Date Modified</key><date>2006-12-12T15:50:42Z</date>\n\t\t\t<key>Date Added</key><date>2006-12-12T21:50:29Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>35</integer>\n\t\t\t<key>Play Date</key><integer>3465120682</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-10-20T17:31:22Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>4198</integer>\n\t\t\t<key>Sort Artist</key><string>Canettes Blues Band</string>\n\t\t\t<key>Persistent ID</key><string>D2ADA1732FE4C04E</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/On%20Tap%20&#38;%20In%20the%20Can/09%20Gimme'%20Some%20Lovin.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>597</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>597</integer>\n\t\t\t<key>Name</key><string>Everybody Needs Somebody to Love</string>\n\t\t\t<key>Artist</key><string>The Canettes Blues Band</string>\n\t\t\t<key>Album</key><string>On Tap &#38; In the Can</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3905968</integer>\n\t\t\t<key>Total Time</key><integer>195186</integer>\n\t\t\t<key>Track Number</key><integer>10</integer>\n\t\t\t<key>Track Count</key><integer>14</integer>\n\t\t\t<key>Date Modified</key><date>2006-12-12T15:50:54Z</date>\n\t\t\t<key>Date Added</key><date>2006-12-12T21:50:44Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>24</integer>\n\t\t\t<key>Play Date</key><integer>3501133114</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-12-11T13:58:34Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>5205</integer>\n\t\t\t<key>Sort Artist</key><string>Canettes Blues Band</string>\n\t\t\t<key>Persistent ID</key><string>D2ADA1732FE4C050</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/On%20Tap%20&#38;%20In%20the%20Can/10%20Everybody%20Needs%20Somebody%20to%20Love.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>599</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>599</integer>\n\t\t\t<key>Name</key><string>Black Magic Woman</string>\n\t\t\t<key>Artist</key><string>The Canettes Blues Band</string>\n\t\t\t<key>Album</key><string>On Tap &#38; In the Can</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>8855113</integer>\n\t\t\t<key>Total Time</key><integer>442644</integer>\n\t\t\t<key>Track Number</key><integer>11</integer>\n\t\t\t<key>Track Count</key><integer>14</integer>\n\t\t\t<key>Date Modified</key><date>2008-01-11T14:55:17Z</date>\n\t\t\t<key>Date Added</key><date>2006-12-12T21:50:56Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>31</integer>\n\t\t\t<key>Play Date</key><integer>3516436187</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-06-06T15:49:47Z</date>\n\t\t\t<key>Skip Count</key><integer>3</integer>\n\t\t\t<key>Skip Date</key><date>2013-10-23T03:39:43Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>3312</integer>\n\t\t\t<key>Sort Artist</key><string>Canettes Blues Band</string>\n\t\t\t<key>Persistent ID</key><string>D2ADA1732FE4C052</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/On%20Tap%20&#38;%20In%20the%20Can/11%20Black%20Magic%20Woman.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>601</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>601</integer>\n\t\t\t<key>Name</key><string>Steppin' Rooster</string>\n\t\t\t<key>Artist</key><string>The Canettes Blues Band</string>\n\t\t\t<key>Album</key><string>On Tap &#38; In the Can</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>14099454</integer>\n\t\t\t<key>Total Time</key><integer>704862</integer>\n\t\t\t<key>Track Number</key><integer>12</integer>\n\t\t\t<key>Track Count</key><integer>14</integer>\n\t\t\t<key>Date Modified</key><date>2006-12-12T15:52:01Z</date>\n\t\t\t<key>Date Added</key><date>2006-12-12T21:51:21Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>21</integer>\n\t\t\t<key>Play Date</key><integer>3508731912</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-03-09T11:45:12Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2015-01-02T20:40:09Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>3035</integer>\n\t\t\t<key>Sort Artist</key><string>Canettes Blues Band</string>\n\t\t\t<key>Persistent ID</key><string>D2ADA1732FE4C054</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/On%20Tap%20&#38;%20In%20the%20Can/12%20Steppin'%20Rooster.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>603</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>603</integer>\n\t\t\t<key>Name</key><string>Our Love is Drifting</string>\n\t\t\t<key>Artist</key><string>The Canettes Blues Band</string>\n\t\t\t<key>Album</key><string>On Tap &#38; In the Can</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5855213</integer>\n\t\t\t<key>Total Time</key><integer>292649</integer>\n\t\t\t<key>Track Number</key><integer>13</integer>\n\t\t\t<key>Track Count</key><integer>14</integer>\n\t\t\t<key>Date Modified</key><date>2006-12-12T12:52:16Z</date>\n\t\t\t<key>Date Added</key><date>2006-12-12T21:52:02Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>15</integer>\n\t\t\t<key>Play Date</key><integer>3356035606</integer>\n\t\t\t<key>Play Date UTC</key><date>2010-05-07T04:06:46Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>3107</integer>\n\t\t\t<key>Sort Artist</key><string>Canettes Blues Band</string>\n\t\t\t<key>Persistent ID</key><string>D2ADA1732FE4C056</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/On%20Tap%20&#38;%20In%20the%20Can/13%20Our%20Love%20is%20Drifting.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>605</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>605</integer>\n\t\t\t<key>Name</key><string>Doin' 100</string>\n\t\t\t<key>Artist</key><string>The Canettes Blues Band</string>\n\t\t\t<key>Album</key><string>On Tap &#38; In the Can</string>\n\t\t\t<key>Genre</key><string>Blues/R&#38;B</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>6881810</integer>\n\t\t\t<key>Total Time</key><integer>343980</integer>\n\t\t\t<key>Track Number</key><integer>14</integer>\n\t\t\t<key>Track Count</key><integer>14</integer>\n\t\t\t<key>Date Modified</key><date>2006-12-12T15:53:32Z</date>\n\t\t\t<key>Date Added</key><date>2006-12-12T21:52:16Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>20</integer>\n\t\t\t<key>Play Date</key><integer>3462609763</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-09-21T16:02:43Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2013-01-26T04:22:15Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating</key><integer>100</integer>\n\t\t\t<key>Album Rating Computed</key><true/>\n\t\t\t<key>Normalization</key><integer>2665</integer>\n\t\t\t<key>Sort Artist</key><string>Canettes Blues Band</string>\n\t\t\t<key>Persistent ID</key><string>D2ADA1732FE4C058</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/On%20Tap%20&#38;%20In%20the%20Can/14%20Doin'%20100.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>607</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>607</integer>\n\t\t\t<key>Name</key><string>Track 01</string>\n\t\t\t<key>Artist</key><string>Sinister Symphony</string>\n\t\t\t<key>Composer</key><string>Brent Severance</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5201018</integer>\n\t\t\t<key>Total Time</key><integer>259944</integer>\n\t\t\t<key>Track Number</key><integer>1</integer>\n\t\t\t<key>Track Count</key><integer>8</integer>\n\t\t\t<key>Date Modified</key><date>2007-02-20T15:20:23Z</date>\n\t\t\t<key>Date Added</key><date>2007-02-11T17:24:34Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>7</integer>\n\t\t\t<key>Play Date</key><integer>3415096629</integer>\n\t\t\t<key>Play Date UTC</key><date>2012-03-20T17:57:09Z</date>\n\t\t\t<key>Skip Count</key><integer>2</integer>\n\t\t\t<key>Skip Date</key><date>2013-10-21T00:07:42Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Normalization</key><integer>1299</integer>\n\t\t\t<key>Persistent ID</key><string>2ECF7628A432E2E5</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Sinister%20Symphony/Unknown%20Album/01%20Track%2001.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>609</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>609</integer>\n\t\t\t<key>Name</key><string>Track 02</string>\n\t\t\t<key>Artist</key><string>Sinister Symphony</string>\n\t\t\t<key>Composer</key><string>Brent Severance</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4621099</integer>\n\t\t\t<key>Total Time</key><integer>230948</integer>\n\t\t\t<key>Track Number</key><integer>2</integer>\n\t\t\t<key>Track Count</key><integer>8</integer>\n\t\t\t<key>Date Modified</key><date>2007-02-20T15:20:23Z</date>\n\t\t\t<key>Date Added</key><date>2007-02-11T17:25:20Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>14</integer>\n\t\t\t<key>Play Date</key><integer>3394735877</integer>\n\t\t\t<key>Play Date UTC</key><date>2011-07-29T02:11:17Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Normalization</key><integer>1612</integer>\n\t\t\t<key>Persistent ID</key><string>2ECF7628A432E2E9</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Sinister%20Symphony/Unknown%20Album/02%20Track%2002.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>611</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>611</integer>\n\t\t\t<key>Name</key><string>Track 03</string>\n\t\t\t<key>Artist</key><string>Sinister Symphony</string>\n\t\t\t<key>Composer</key><string>Brent Severance</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4132087</integer>\n\t\t\t<key>Total Time</key><integer>206497</integer>\n\t\t\t<key>Track Number</key><integer>3</integer>\n\t\t\t<key>Track Count</key><integer>8</integer>\n\t\t\t<key>Date Modified</key><date>2007-02-20T15:20:23Z</date>\n\t\t\t<key>Date Added</key><date>2007-02-11T17:25:57Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>16</integer>\n\t\t\t<key>Play Date</key><integer>3394735651</integer>\n\t\t\t<key>Play Date UTC</key><date>2011-07-29T02:07:31Z</date>\n\t\t\t<key>Skip Count</key><integer>3</integer>\n\t\t\t<key>Skip Date</key><date>2009-03-01T00:35:45Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Normalization</key><integer>1611</integer>\n\t\t\t<key>Persistent ID</key><string>2ECF7628A432E2ED</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Sinister%20Symphony/Unknown%20Album/03%20Track%2003.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>613</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>613</integer>\n\t\t\t<key>Name</key><string>Track 04</string>\n\t\t\t<key>Artist</key><string>Sinister Symphony</string>\n\t\t\t<key>Composer</key><string>Brent Severance</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3779956</integer>\n\t\t\t<key>Total Time</key><integer>188891</integer>\n\t\t\t<key>Track Number</key><integer>4</integer>\n\t\t\t<key>Track Count</key><integer>8</integer>\n\t\t\t<key>Date Modified</key><date>2007-02-20T15:20:23Z</date>\n\t\t\t<key>Date Added</key><date>2007-02-11T17:26:28Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>12</integer>\n\t\t\t<key>Play Date</key><integer>3489327798</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-07-27T21:43:18Z</date>\n\t\t\t<key>Skip Count</key><integer>4</integer>\n\t\t\t<key>Skip Date</key><date>2013-11-11T13:53:03Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Normalization</key><integer>1581</integer>\n\t\t\t<key>Persistent ID</key><string>2ECF7628A432E2F1</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Sinister%20Symphony/Unknown%20Album/04%20Track%2004.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>615</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>615</integer>\n\t\t\t<key>Name</key><string>Track 05</string>\n\t\t\t<key>Artist</key><string>Sinister Symphony</string>\n\t\t\t<key>Composer</key><string>Brent Severance</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5175418</integer>\n\t\t\t<key>Total Time</key><integer>258664</integer>\n\t\t\t<key>Track Number</key><integer>5</integer>\n\t\t\t<key>Track Count</key><integer>8</integer>\n\t\t\t<key>Date Modified</key><date>2007-02-20T15:20:23Z</date>\n\t\t\t<key>Date Added</key><date>2007-02-11T17:26:55Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>12</integer>\n\t\t\t<key>Play Date</key><integer>3394735265</integer>\n\t\t\t<key>Play Date UTC</key><date>2011-07-29T02:01:05Z</date>\n\t\t\t<key>Skip Count</key><integer>3</integer>\n\t\t\t<key>Skip Date</key><date>2013-09-21T01:55:29Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Normalization</key><integer>1235</integer>\n\t\t\t<key>Persistent ID</key><string>2ECF7628A432E2F5</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Sinister%20Symphony/Unknown%20Album/05%20Track%2005.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>617</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>617</integer>\n\t\t\t<key>Name</key><string>Track 06</string>\n\t\t\t<key>Artist</key><string>Sinister Symphony</string>\n\t\t\t<key>Composer</key><string>Brent Severance</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3729801</integer>\n\t\t\t<key>Total Time</key><integer>186383</integer>\n\t\t\t<key>Track Number</key><integer>6</integer>\n\t\t\t<key>Track Count</key><integer>8</integer>\n\t\t\t<key>Date Modified</key><date>2007-02-20T15:20:23Z</date>\n\t\t\t<key>Date Added</key><date>2007-02-11T17:27:29Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>9</integer>\n\t\t\t<key>Play Date</key><integer>3489331345</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-07-27T22:42:25Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Normalization</key><integer>3393</integer>\n\t\t\t<key>Persistent ID</key><string>2ECF7628A432E2F9</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Sinister%20Symphony/Unknown%20Album/06%20Track%2006.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>619</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>619</integer>\n\t\t\t<key>Name</key><string>Track 07</string>\n\t\t\t<key>Artist</key><string>Sinister Symphony</string>\n\t\t\t<key>Composer</key><string>Brent Severance</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3290944</integer>\n\t\t\t<key>Total Time</key><integer>164440</integer>\n\t\t\t<key>Track Number</key><integer>7</integer>\n\t\t\t<key>Track Count</key><integer>8</integer>\n\t\t\t<key>Date Modified</key><date>2007-02-20T15:20:23Z</date>\n\t\t\t<key>Date Added</key><date>2007-02-11T17:27:52Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>11</integer>\n\t\t\t<key>Play Date</key><integer>3489335442</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-07-27T23:50:42Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2008-02-06T06:20:16Z</date>\n\t\t\t<key>Rating</key><integer>100</integer>\n\t\t\t<key>Normalization</key><integer>460</integer>\n\t\t\t<key>Persistent ID</key><string>2ECF7628A432E2FD</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Sinister%20Symphony/Unknown%20Album/07%20Track%2007.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>621</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>621</integer>\n\t\t\t<key>Name</key><string>Track 08</string>\n\t\t\t<key>Artist</key><string>Sinister Symphony</string>\n\t\t\t<key>Composer</key><string>Brent Severance</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>6237556</integer>\n\t\t\t<key>Total Time</key><integer>311771</integer>\n\t\t\t<key>Track Number</key><integer>8</integer>\n\t\t\t<key>Track Count</key><integer>8</integer>\n\t\t\t<key>Date Modified</key><date>2007-02-20T15:20:23Z</date>\n\t\t\t<key>Date Added</key><date>2007-02-11T17:28:13Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>4</integer>\n\t\t\t<key>Play Date</key><integer>3394734670</integer>\n\t\t\t<key>Play Date UTC</key><date>2011-07-29T01:51:10Z</date>\n\t\t\t<key>Skip Count</key><integer>5</integer>\n\t\t\t<key>Skip Date</key><date>2013-10-01T12:51:54Z</date>\n\t\t\t<key>Normalization</key><integer>611</integer>\n\t\t\t<key>Persistent ID</key><string>2ECF7628A432E301</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Sinister%20Symphony/Unknown%20Album/08%20Track%2008.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>623</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>623</integer>\n\t\t\t<key>Name</key><string>Mother Joy</string>\n\t\t\t<key>Artist</key><string>Matt Ender</string>\n\t\t\t<key>Album</key><string>Natural Wonders Music Sampler 1999</string>\n\t\t\t<key>Genre</key><string>New Age</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5748117</integer>\n\t\t\t<key>Total Time</key><integer>287294</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>1</integer>\n\t\t\t<key>Track Count</key><integer>13</integer>\n\t\t\t<key>Date Modified</key><date>2011-09-26T11:37:09Z</date>\n\t\t\t<key>Date Added</key><date>2007-03-26T12:19:29Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>463</integer>\n\t\t\t<key>Play Date</key><integer>3494827142</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-09-29T13:19:02Z</date>\n\t\t\t<key>Skip Count</key><integer>6</integer>\n\t\t\t<key>Skip Date</key><date>2013-10-19T00:24:39Z</date>\n\t\t\t<key>Normalization</key><integer>1628</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Persistent ID</key><string>DD108F7673595DD9</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Natural%20Wonders%20Music%20Sampler%201999/01%20Mother%20Joy.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>625</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>625</integer>\n\t\t\t<key>Name</key><string>Soldier's Lament</string>\n\t\t\t<key>Artist</key><string>Steve McDonald</string>\n\t\t\t<key>Album</key><string>Natural Wonders Music Sampler 1999</string>\n\t\t\t<key>Genre</key><string>New Age</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>6946102</integer>\n\t\t\t<key>Total Time</key><integer>347193</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>2</integer>\n\t\t\t<key>Track Count</key><integer>13</integer>\n\t\t\t<key>Date Modified</key><date>2007-03-26T12:20:41Z</date>\n\t\t\t<key>Date Added</key><date>2007-03-26T12:20:02Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>371</integer>\n\t\t\t<key>Play Date</key><integer>3502896971</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-12-31T23:56:11Z</date>\n\t\t\t<key>Skip Count</key><integer>4</integer>\n\t\t\t<key>Skip Date</key><date>2013-08-30T12:07:21Z</date>\n\t\t\t<key>Normalization</key><integer>1886</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Persistent ID</key><string>DD108F7673595DE0</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Natural%20Wonders%20Music%20Sampler%201999/02%20Soldier's%20Lament.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>627</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>627</integer>\n\t\t\t<key>Name</key><string>Dulaman</string>\n\t\t\t<key>Artist</key><string>Altan</string>\n\t\t\t<key>Album</key><string>Natural Wonders Music Sampler 1999</string>\n\t\t\t<key>Genre</key><string>New Age</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4462362</integer>\n\t\t\t<key>Total Time</key><integer>223007</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>3</integer>\n\t\t\t<key>Track Count</key><integer>13</integer>\n\t\t\t<key>Date Modified</key><date>2007-03-26T12:21:29Z</date>\n\t\t\t<key>Date Added</key><date>2007-03-26T12:20:42Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>403</integer>\n\t\t\t<key>Play Date</key><integer>3497334331</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-10-28T13:45:31Z</date>\n\t\t\t<key>Skip Count</key><integer>4</integer>\n\t\t\t<key>Skip Date</key><date>2012-06-30T17:40:16Z</date>\n\t\t\t<key>Normalization</key><integer>1440</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Persistent ID</key><string>DD108F7673595E7F</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Natural%20Wonders%20Music%20Sampler%201999/03%20Du%CC%81lama%CC%81n.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>629</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>629</integer>\n\t\t\t<key>Name</key><string>The Arrow</string>\n\t\t\t<key>Artist</key><string>Chris Spheeris</string>\n\t\t\t<key>Album</key><string>Natural Wonders Music Sampler 1999</string>\n\t\t\t<key>Genre</key><string>New Age</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>6399614</integer>\n\t\t\t<key>Total Time</key><integer>319869</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>4</integer>\n\t\t\t<key>Track Count</key><integer>13</integer>\n\t\t\t<key>Date Modified</key><date>2007-03-26T12:22:06Z</date>\n\t\t\t<key>Date Added</key><date>2007-03-26T12:21:30Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>416</integer>\n\t\t\t<key>Play Date</key><integer>3518868510</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-07-04T19:28:30Z</date>\n\t\t\t<key>Skip Count</key><integer>3</integer>\n\t\t\t<key>Skip Date</key><date>2014-03-08T17:49:59Z</date>\n\t\t\t<key>Normalization</key><integer>1639</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Sort Name</key><string>Arrow</string>\n\t\t\t<key>Persistent ID</key><string>DD108F7673595F34</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Natural%20Wonders%20Music%20Sampler%201999/04%20The%20Arrow.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>631</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>631</integer>\n\t\t\t<key>Name</key><string>Spanish Eyes</string>\n\t\t\t<key>Artist</key><string>La Esperanza</string>\n\t\t\t<key>Album</key><string>Natural Wonders Music Sampler 1999</string>\n\t\t\t<key>Genre</key><string>New Age</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5182831</integer>\n\t\t\t<key>Total Time</key><integer>259030</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>5</integer>\n\t\t\t<key>Track Count</key><integer>13</integer>\n\t\t\t<key>Date Modified</key><date>2007-03-26T12:22:26Z</date>\n\t\t\t<key>Date Added</key><date>2007-03-26T12:22:07Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>375</integer>\n\t\t\t<key>Play Date</key><integer>3502885019</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-12-31T20:36:59Z</date>\n\t\t\t<key>Skip Count</key><integer>3</integer>\n\t\t\t<key>Skip Date</key><date>2010-04-26T22:56:36Z</date>\n\t\t\t<key>Normalization</key><integer>1645</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Persistent ID</key><string>DD108F7673595F38</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Natural%20Wonders%20Music%20Sampler%201999/05%20Spanish%20Eyes.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>633</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>633</integer>\n\t\t\t<key>Name</key><string>Banana Bay</string>\n\t\t\t<key>Artist</key><string>Luis Villegas</string>\n\t\t\t<key>Album</key><string>Natural Wonders Music Sampler 1999</string>\n\t\t\t<key>Genre</key><string>New Age</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3963434</integer>\n\t\t\t<key>Total Time</key><integer>198060</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>6</integer>\n\t\t\t<key>Track Count</key><integer>13</integer>\n\t\t\t<key>Date Modified</key><date>2007-03-26T12:22:51Z</date>\n\t\t\t<key>Date Added</key><date>2007-03-26T12:22:27Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>403</integer>\n\t\t\t<key>Play Date</key><integer>3516367700</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-06-05T20:48:20Z</date>\n\t\t\t<key>Skip Count</key><integer>3</integer>\n\t\t\t<key>Skip Date</key><date>2010-04-26T22:56:43Z</date>\n\t\t\t<key>Normalization</key><integer>2423</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Persistent ID</key><string>DD108F7673595F3C</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Natural%20Wonders%20Music%20Sampler%201999/06%20Banana%20Bay.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>635</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>635</integer>\n\t\t\t<key>Name</key><string>Aguas De Marco</string>\n\t\t\t<key>Artist</key><string>Rosa Passos</string>\n\t\t\t<key>Album</key><string>Natural Wonders Music Sampler 1999</string>\n\t\t\t<key>Genre</key><string>New Age</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3590408</integer>\n\t\t\t<key>Total Time</key><integer>179408</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>7</integer>\n\t\t\t<key>Track Count</key><integer>13</integer>\n\t\t\t<key>Date Modified</key><date>2007-03-26T12:23:04Z</date>\n\t\t\t<key>Date Added</key><date>2007-03-26T12:22:52Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>407</integer>\n\t\t\t<key>Play Date</key><integer>3518867406</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-07-04T19:10:06Z</date>\n\t\t\t<key>Skip Count</key><integer>3</integer>\n\t\t\t<key>Skip Date</key><date>2015-02-09T22:18:36Z</date>\n\t\t\t<key>Normalization</key><integer>1649</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Persistent ID</key><string>DD108F7673595F40</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Natural%20Wonders%20Music%20Sampler%201999/07%20Aguas%20De%20Marco.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>637</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>637</integer>\n\t\t\t<key>Name</key><string>Tamborea</string>\n\t\t\t<key>Artist</key><string>Energipsy</string>\n\t\t\t<key>Album</key><string>Natural Wonders Music Sampler 1999</string>\n\t\t\t<key>Genre</key><string>New Age</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4710008</integer>\n\t\t\t<key>Total Time</key><integer>235389</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>8</integer>\n\t\t\t<key>Track Count</key><integer>13</integer>\n\t\t\t<key>Date Modified</key><date>2007-03-26T12:23:30Z</date>\n\t\t\t<key>Date Added</key><date>2007-03-26T12:23:05Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>355</integer>\n\t\t\t<key>Play Date</key><integer>3503063510</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-01-02T22:11:50Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2010-04-26T22:56:21Z</date>\n\t\t\t<key>Normalization</key><integer>3787</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Persistent ID</key><string>DD108F7673595F44</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Natural%20Wonders%20Music%20Sampler%201999/08%20Tamborea.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>639</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>639</integer>\n\t\t\t<key>Name</key><string>Gone</string>\n\t\t\t<key>Artist</key><string>Hollie Smith</string>\n\t\t\t<key>Album</key><string>Natural Wonders Music Sampler 1999</string>\n\t\t\t<key>Genre</key><string>New Age</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3930513</integer>\n\t\t\t<key>Total Time</key><integer>196414</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>9</integer>\n\t\t\t<key>Track Count</key><integer>13</integer>\n\t\t\t<key>Date Modified</key><date>2007-03-26T12:23:47Z</date>\n\t\t\t<key>Date Added</key><date>2007-03-26T12:23:36Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>362</integer>\n\t\t\t<key>Play Date</key><integer>3494829400</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-09-29T13:56:40Z</date>\n\t\t\t<key>Skip Count</key><integer>6</integer>\n\t\t\t<key>Skip Date</key><date>2010-04-26T22:56:25Z</date>\n\t\t\t<key>Normalization</key><integer>1468</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Persistent ID</key><string>DD108F7673595F48</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Natural%20Wonders%20Music%20Sampler%201999/09%20Gone.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>641</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>641</integer>\n\t\t\t<key>Name</key><string>The Immigrant</string>\n\t\t\t<key>Artist</key><string>Joanie Madden</string>\n\t\t\t<key>Album</key><string>Natural Wonders Music Sampler 1999</string>\n\t\t\t<key>Genre</key><string>New Age</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>7254867</integer>\n\t\t\t<key>Total Time</key><integer>362631</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>10</integer>\n\t\t\t<key>Track Count</key><integer>13</integer>\n\t\t\t<key>Date Modified</key><date>2007-03-26T12:24:10Z</date>\n\t\t\t<key>Date Added</key><date>2007-03-26T12:23:49Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>350</integer>\n\t\t\t<key>Play Date</key><integer>3494830670</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-09-29T14:17:50Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2010-04-26T22:56:29Z</date>\n\t\t\t<key>Normalization</key><integer>3271</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Sort Name</key><string>Immigrant</string>\n\t\t\t<key>Persistent ID</key><string>DD108F7673595F4C</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Natural%20Wonders%20Music%20Sampler%201999/10%20The%20Immigrant.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>643</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>643</integer>\n\t\t\t<key>Name</key><string>Pahrump-Big Water</string>\n\t\t\t<key>Artist</key><string>Cusco</string>\n\t\t\t<key>Album</key><string>Natural Wonders Music Sampler 1999</string>\n\t\t\t<key>Genre</key><string>New Age</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3834912</integer>\n\t\t\t<key>Total Time</key><integer>191634</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>11</integer>\n\t\t\t<key>Track Count</key><integer>13</integer>\n\t\t\t<key>Date Modified</key><date>2007-03-26T12:24:22Z</date>\n\t\t\t<key>Date Added</key><date>2007-03-26T12:24:11Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>342</integer>\n\t\t\t<key>Play Date</key><integer>3494827532</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-09-29T13:25:32Z</date>\n\t\t\t<key>Skip Count</key><integer>3</integer>\n\t\t\t<key>Skip Date</key><date>2013-08-12T23:39:45Z</date>\n\t\t\t<key>Normalization</key><integer>2537</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Persistent ID</key><string>DD108F7673595F50</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Natural%20Wonders%20Music%20Sampler%201999/11%20Pahrump-Big%20Water.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>645</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>645</integer>\n\t\t\t<key>Name</key><string>Seeker's Quest</string>\n\t\t\t<key>Artist</key><string>Cheryl Gunn</string>\n\t\t\t<key>Album</key><string>Natural Wonders Music Sampler 1999</string>\n\t\t\t<key>Genre</key><string>New Age</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4730915</integer>\n\t\t\t<key>Total Time</key><integer>236434</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>12</integer>\n\t\t\t<key>Track Count</key><integer>13</integer>\n\t\t\t<key>Date Modified</key><date>2007-03-26T12:24:36Z</date>\n\t\t\t<key>Date Added</key><date>2007-03-26T12:24:23Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>337</integer>\n\t\t\t<key>Play Date</key><integer>3494829636</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-09-29T14:00:36Z</date>\n\t\t\t<key>Skip Count</key><integer>3</integer>\n\t\t\t<key>Skip Date</key><date>2010-04-26T22:57:18Z</date>\n\t\t\t<key>Normalization</key><integer>1416</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Persistent ID</key><string>DD108F7673595F54</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Natural%20Wonders%20Music%20Sampler%201999/12%20Seeker's%20Quest.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>647</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>647</integer>\n\t\t\t<key>Name</key><string>Floating To Forever</string>\n\t\t\t<key>Artist</key><string>Dean Everson</string>\n\t\t\t<key>Album</key><string>Natural Wonders Music Sampler 1999</string>\n\t\t\t<key>Genre</key><string>New Age</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>7035965</integer>\n\t\t\t<key>Total Time</key><integer>351686</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>13</integer>\n\t\t\t<key>Track Count</key><integer>13</integer>\n\t\t\t<key>Date Modified</key><date>2007-03-26T12:24:56Z</date>\n\t\t\t<key>Date Added</key><date>2007-03-26T12:24:37Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>337</integer>\n\t\t\t<key>Play Date</key><integer>3502812532</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-12-31T00:28:52Z</date>\n\t\t\t<key>Skip Count</key><integer>4</integer>\n\t\t\t<key>Skip Date</key><date>2014-01-15T02:07:25Z</date>\n\t\t\t<key>Normalization</key><integer>1392</integer>\n\t\t\t<key>Compilation</key><true/>\n\t\t\t<key>Persistent ID</key><string>DD108F7673595F58</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Compilations/Natural%20Wonders%20Music%20Sampler%201999/13%20Floating%20To%20Forever.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>649</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>649</integer>\n\t\t\t<key>Name</key><string>Open Road</string>\n\t\t\t<key>Artist</key><string>Jeff Bailey</string>\n\t\t\t<key>Composer</key><string>Jeff Bailey</string>\n\t\t\t<key>Album</key><string>Relaxing Jazz</string>\n\t\t\t<key>Genre</key><string>Jazz</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>6373489</integer>\n\t\t\t<key>Total Time</key><integer>318563</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>10</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2004</integer>\n\t\t\t<key>Date Modified</key><date>2007-04-08T05:52:48Z</date>\n\t\t\t<key>Date Added</key><date>2007-04-08T05:52:31Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>10</integer>\n\t\t\t<key>Play Date</key><integer>3494417176</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-09-24T19:26:16Z</date>\n\t\t\t<key>Normalization</key><integer>1029</integer>\n\t\t\t<key>Persistent ID</key><string>CF18B3C628301AFD</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Jeff%20Bailey/Relaxing%20Jazz/10%20Open%20Road.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>651</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>651</integer>\n\t\t\t<key>Name</key><string>eniment-version-a</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>6493210</integer>\n\t\t\t<key>Total Time</key><integer>32032</integer>\n\t\t\t<key>Date Modified</key><date>2007-06-03T15:40:58Z</date>\n\t\t\t<key>Date Added</key><date>2007-06-03T15:41:18Z</date>\n\t\t\t<key>Bit Rate</key><integer>124</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>28</integer>\n\t\t\t<key>Play Date</key><integer>3457182161</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-07-20T20:22:41Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>03E528C7E324652D</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>640</integer>\n\t\t\t<key>Video Height</key><integer>426</integer>\n\t\t\t<key>File Type</key><integer>1295275552</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Movies/eniment-version-a.m4v</string>\n\t\t\t<key>File Folder Count</key><integer>3</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>653</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>653</integer>\n\t\t\t<key>Name</key><string>Ruby</string>\n\t\t\t<key>Artist</key><string>Kaiser Chiefs</string>\n\t\t\t<key>Composer</key><string>Kaiser Cheifs</string>\n\t\t\t<key>Album</key><string>Yours Truly, Angry Mob</string>\n\t\t\t<key>Genre</key><string>Alternative &#38; Punk</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4102328</integer>\n\t\t\t<key>Total Time</key><integer>205008</integer>\n\t\t\t<key>Track Number</key><integer>1</integer>\n\t\t\t<key>Track Count</key><integer>15</integer>\n\t\t\t<key>Year</key><integer>2007</integer>\n\t\t\t<key>Date Modified</key><date>2007-12-12T16:27:01Z</date>\n\t\t\t<key>Date Added</key><date>2007-11-30T23:55:34Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>13</integer>\n\t\t\t<key>Play Date</key><integer>3489335651</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-07-27T23:54:11Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2013-10-28T12:04:32Z</date>\n\t\t\t<key>Normalization</key><integer>11141</integer>\n\t\t\t<key>Persistent ID</key><string>1BD284EFA469A00E</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Yours%20Truly,%20Angry%20Mob/01%20Ruby.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>655</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>655</integer>\n\t\t\t<key>Name</key><string>The Angry Mob</string>\n\t\t\t<key>Artist</key><string>Kaiser Chiefs</string>\n\t\t\t<key>Composer</key><string>Kaiser Cheifs</string>\n\t\t\t<key>Album</key><string>Yours Truly, Angry Mob</string>\n\t\t\t<key>Genre</key><string>Alternative &#38; Punk</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5768417</integer>\n\t\t\t<key>Total Time</key><integer>288313</integer>\n\t\t\t<key>Track Number</key><integer>2</integer>\n\t\t\t<key>Track Count</key><integer>15</integer>\n\t\t\t<key>Year</key><integer>2007</integer>\n\t\t\t<key>Date Modified</key><date>2007-12-12T16:27:01Z</date>\n\t\t\t<key>Date Added</key><date>2007-11-30T23:56:12Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>41</integer>\n\t\t\t<key>Play Date</key><integer>3518867694</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-07-04T19:14:54Z</date>\n\t\t\t<key>Normalization</key><integer>11833</integer>\n\t\t\t<key>Sort Name</key><string>Angry Mob</string>\n\t\t\t<key>Persistent ID</key><string>1BD284EFA469A013</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Yours%20Truly,%20Angry%20Mob/02%20The%20Angry%20Mob.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>657</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>657</integer>\n\t\t\t<key>Name</key><string>Heat Dies Down</string>\n\t\t\t<key>Artist</key><string>Kaiser Chiefs</string>\n\t\t\t<key>Composer</key><string>Kaiser Cheifs</string>\n\t\t\t<key>Album</key><string>Yours Truly, Angry Mob</string>\n\t\t\t<key>Genre</key><string>Alternative &#38; Punk</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4743372</integer>\n\t\t\t<key>Total Time</key><integer>237061</integer>\n\t\t\t<key>Track Number</key><integer>3</integer>\n\t\t\t<key>Track Count</key><integer>15</integer>\n\t\t\t<key>Year</key><integer>2007</integer>\n\t\t\t<key>Date Modified</key><date>2007-12-12T16:27:01Z</date>\n\t\t\t<key>Date Added</key><date>2007-11-30T23:56:59Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>12</integer>\n\t\t\t<key>Play Date</key><integer>3494417665</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-09-24T19:34:25Z</date>\n\t\t\t<key>Normalization</key><integer>14681</integer>\n\t\t\t<key>Persistent ID</key><string>1BD284EFA469A018</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Yours%20Truly,%20Angry%20Mob/03%20Heat%20Dies%20Down.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>659</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>659</integer>\n\t\t\t<key>Name</key><string>Highroyds</string>\n\t\t\t<key>Artist</key><string>Kaiser Chiefs</string>\n\t\t\t<key>Composer</key><string>Kaiser Cheifs</string>\n\t\t\t<key>Album</key><string>Yours Truly, Angry Mob</string>\n\t\t\t<key>Genre</key><string>Alternative &#38; Punk</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3993658</integer>\n\t\t\t<key>Total Time</key><integer>199575</integer>\n\t\t\t<key>Track Number</key><integer>4</integer>\n\t\t\t<key>Track Count</key><integer>15</integer>\n\t\t\t<key>Year</key><integer>2007</integer>\n\t\t\t<key>Date Modified</key><date>2007-12-12T16:27:01Z</date>\n\t\t\t<key>Date Added</key><date>2007-11-30T23:57:34Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>10</integer>\n\t\t\t<key>Play Date</key><integer>3489336999</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-07-28T00:16:39Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2013-08-30T19:08:15Z</date>\n\t\t\t<key>Normalization</key><integer>14877</integer>\n\t\t\t<key>Persistent ID</key><string>1BD284EFA469A01D</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Yours%20Truly,%20Angry%20Mob/04%20Highroyds.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>661</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>661</integer>\n\t\t\t<key>Name</key><string>Love's Not A Competition (But I'm Winning)</string>\n\t\t\t<key>Artist</key><string>Kaiser Chiefs</string>\n\t\t\t<key>Composer</key><string>Kaiser Cheifs</string>\n\t\t\t<key>Album</key><string>Yours Truly, Angry Mob</string>\n\t\t\t<key>Genre</key><string>Alternative &#38; Punk</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3958132</integer>\n\t\t\t<key>Total Time</key><integer>197799</integer>\n\t\t\t<key>Track Number</key><integer>5</integer>\n\t\t\t<key>Track Count</key><integer>15</integer>\n\t\t\t<key>Year</key><integer>2007</integer>\n\t\t\t<key>Date Modified</key><date>2007-12-12T16:27:01Z</date>\n\t\t\t<key>Date Added</key><date>2007-11-30T23:58:03Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>11</integer>\n\t\t\t<key>Play Date</key><integer>3465234119</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-10-22T01:01:59Z</date>\n\t\t\t<key>Normalization</key><integer>5760</integer>\n\t\t\t<key>Persistent ID</key><string>1BD284EFA469A022</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Yours%20Truly,%20Angry%20Mob/05%20Love's%20Not%20A%20Competition%20(But%20I'm%20Winning).mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>663</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>663</integer>\n\t\t\t<key>Name</key><string>Thank You Very Much</string>\n\t\t\t<key>Artist</key><string>Kaiser Chiefs</string>\n\t\t\t<key>Composer</key><string>Kaiser Cheifs</string>\n\t\t\t<key>Album</key><string>Yours Truly, Angry Mob</string>\n\t\t\t<key>Genre</key><string>Alternative &#38; Punk</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3157217</integer>\n\t\t\t<key>Total Time</key><integer>157753</integer>\n\t\t\t<key>Track Number</key><integer>6</integer>\n\t\t\t<key>Track Count</key><integer>15</integer>\n\t\t\t<key>Year</key><integer>2007</integer>\n\t\t\t<key>Date Modified</key><date>2007-12-12T16:27:01Z</date>\n\t\t\t<key>Date Added</key><date>2007-11-30T23:58:29Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>11</integer>\n\t\t\t<key>Play Date</key><integer>3467051865</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-11-12T02:57:45Z</date>\n\t\t\t<key>Normalization</key><integer>15647</integer>\n\t\t\t<key>Persistent ID</key><string>1BD284EFA469A027</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Yours%20Truly,%20Angry%20Mob/06%20Thank%20You%20Very%20Much.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>665</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>665</integer>\n\t\t\t<key>Name</key><string>I Can Do It Without You</string>\n\t\t\t<key>Artist</key><string>Kaiser Chiefs</string>\n\t\t\t<key>Composer</key><string>Kaiser Cheifs</string>\n\t\t\t<key>Album</key><string>Yours Truly, Angry Mob</string>\n\t\t\t<key>Genre</key><string>Alternative &#38; Punk</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4086132</integer>\n\t\t\t<key>Total Time</key><integer>204199</integer>\n\t\t\t<key>Track Number</key><integer>7</integer>\n\t\t\t<key>Track Count</key><integer>15</integer>\n\t\t\t<key>Year</key><integer>2007</integer>\n\t\t\t<key>Date Modified</key><date>2007-12-12T16:27:01Z</date>\n\t\t\t<key>Date Added</key><date>2007-11-30T23:58:49Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>11</integer>\n\t\t\t<key>Play Date</key><integer>3465208044</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-10-21T17:47:24Z</date>\n\t\t\t<key>Normalization</key><integer>13925</integer>\n\t\t\t<key>Persistent ID</key><string>1BD284EFA469A02C</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Yours%20Truly,%20Angry%20Mob/07%20I%20Can%20Do%20It%20Without%20You.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>667</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>667</integer>\n\t\t\t<key>Name</key><string>My Kind Of Guy</string>\n\t\t\t<key>Artist</key><string>Kaiser Chiefs</string>\n\t\t\t<key>Composer</key><string>Kaiser Cheifs</string>\n\t\t\t<key>Album</key><string>Yours Truly, Angry Mob</string>\n\t\t\t<key>Genre</key><string>Alternative &#38; Punk</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4934066</integer>\n\t\t\t<key>Total Time</key><integer>246595</integer>\n\t\t\t<key>Track Number</key><integer>8</integer>\n\t\t\t<key>Track Count</key><integer>15</integer>\n\t\t\t<key>Year</key><integer>2007</integer>\n\t\t\t<key>Date Modified</key><date>2007-12-12T16:27:01Z</date>\n\t\t\t<key>Date Added</key><date>2007-11-30T23:59:13Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>10</integer>\n\t\t\t<key>Play Date</key><integer>3462544743</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-09-20T21:59:03Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Normalization</key><integer>9293</integer>\n\t\t\t<key>Persistent ID</key><string>1BD284EFA469A031</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Yours%20Truly,%20Angry%20Mob/08%20My%20Kind%20Of%20Guy.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>669</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>669</integer>\n\t\t\t<key>Name</key><string>Everything Is Average Nowadays</string>\n\t\t\t<key>Artist</key><string>Kaiser Chiefs</string>\n\t\t\t<key>Composer</key><string>Kaiser Cheifs</string>\n\t\t\t<key>Album</key><string>Yours Truly, Angry Mob</string>\n\t\t\t<key>Genre</key><string>Alternative &#38; Punk</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3297234</integer>\n\t\t\t<key>Total Time</key><integer>164754</integer>\n\t\t\t<key>Track Number</key><integer>9</integer>\n\t\t\t<key>Track Count</key><integer>15</integer>\n\t\t\t<key>Year</key><integer>2007</integer>\n\t\t\t<key>Date Modified</key><date>2007-12-12T16:27:01Z</date>\n\t\t\t<key>Date Added</key><date>2007-11-30T23:59:42Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>16</integer>\n\t\t\t<key>Play Date</key><integer>3462610959</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-09-21T16:22:39Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2012-11-20T00:10:45Z</date>\n\t\t\t<key>Normalization</key><integer>13794</integer>\n\t\t\t<key>Persistent ID</key><string>1BD284EFA469A036</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Yours%20Truly,%20Angry%20Mob/09%20Everything%20Is%20Average%20Nowadays.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>671</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>671</integer>\n\t\t\t<key>Name</key><string>Learnt My Lesson Well</string>\n\t\t\t<key>Artist</key><string>Kaiser Chiefs</string>\n\t\t\t<key>Composer</key><string>Kaiser Cheifs</string>\n\t\t\t<key>Album</key><string>Yours Truly, Angry Mob</string>\n\t\t\t<key>Genre</key><string>Alternative &#38; Punk</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>6521267</integer>\n\t\t\t<key>Total Time</key><integer>325955</integer>\n\t\t\t<key>Track Number</key><integer>10</integer>\n\t\t\t<key>Track Count</key><integer>15</integer>\n\t\t\t<key>Year</key><integer>2007</integer>\n\t\t\t<key>Date Modified</key><date>2007-12-12T16:27:02Z</date>\n\t\t\t<key>Date Added</key><date>2007-12-01T00:00:02Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>9</integer>\n\t\t\t<key>Play Date</key><integer>3462546757</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-09-20T22:32:37Z</date>\n\t\t\t<key>Normalization</key><integer>7808</integer>\n\t\t\t<key>Persistent ID</key><string>1BD284EFA469A03B</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Yours%20Truly,%20Angry%20Mob/10%20Learnt%20My%20Lesson%20Well.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>673</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>673</integer>\n\t\t\t<key>Name</key><string>Try Your Best</string>\n\t\t\t<key>Artist</key><string>Kaiser Chiefs</string>\n\t\t\t<key>Composer</key><string>Kaiser Cheifs</string>\n\t\t\t<key>Album</key><string>Yours Truly, Angry Mob</string>\n\t\t\t<key>Genre</key><string>Alternative &#38; Punk</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4452369</integer>\n\t\t\t<key>Total Time</key><integer>222511</integer>\n\t\t\t<key>Track Number</key><integer>11</integer>\n\t\t\t<key>Track Count</key><integer>15</integer>\n\t\t\t<key>Year</key><integer>2007</integer>\n\t\t\t<key>Date Modified</key><date>2007-12-12T16:27:02Z</date>\n\t\t\t<key>Date Added</key><date>2007-12-01T00:00:47Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>8</integer>\n\t\t\t<key>Play Date</key><integer>3465121624</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-10-20T17:47:04Z</date>\n\t\t\t<key>Normalization</key><integer>7028</integer>\n\t\t\t<key>Persistent ID</key><string>1BD284EFA469A040</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Yours%20Truly,%20Angry%20Mob/11%20Try%20Your%20Best.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>675</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>675</integer>\n\t\t\t<key>Name</key><string>Retirement</string>\n\t\t\t<key>Artist</key><string>Kaiser Chiefs</string>\n\t\t\t<key>Composer</key><string>Kaiser Cheifs</string>\n\t\t\t<key>Album</key><string>Yours Truly, Angry Mob</string>\n\t\t\t<key>Genre</key><string>Alternative &#38; Punk</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4750688</integer>\n\t\t\t<key>Total Time</key><integer>237426</integer>\n\t\t\t<key>Track Number</key><integer>12</integer>\n\t\t\t<key>Track Count</key><integer>15</integer>\n\t\t\t<key>Year</key><integer>2007</integer>\n\t\t\t<key>Date Modified</key><date>2007-12-12T16:27:02Z</date>\n\t\t\t<key>Date Added</key><date>2007-12-01T00:01:15Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>10</integer>\n\t\t\t<key>Play Date</key><integer>3464362387</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-10-11T22:53:07Z</date>\n\t\t\t<key>Normalization</key><integer>16567</integer>\n\t\t\t<key>Persistent ID</key><string>1BD284EFA469A045</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Yours%20Truly,%20Angry%20Mob/12%20Retirement.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>677</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>677</integer>\n\t\t\t<key>Name</key><string>The Angry Mob [Live From Berlin]</string>\n\t\t\t<key>Artist</key><string>Kaiser Chiefs</string>\n\t\t\t<key>Composer</key><string>Kaiser Cheifs</string>\n\t\t\t<key>Album</key><string>Yours Truly, Angry Mob</string>\n\t\t\t<key>Genre</key><string>Alternative &#38; Punk</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5583471</integer>\n\t\t\t<key>Total Time</key><integer>279066</integer>\n\t\t\t<key>Track Number</key><integer>13</integer>\n\t\t\t<key>Track Count</key><integer>15</integer>\n\t\t\t<key>Year</key><integer>2007</integer>\n\t\t\t<key>Date Modified</key><date>2007-12-12T16:27:02Z</date>\n\t\t\t<key>Date Added</key><date>2007-12-01T00:01:40Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>40</integer>\n\t\t\t<key>Play Date</key><integer>3518867973</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-07-04T19:19:33Z</date>\n\t\t\t<key>Normalization</key><integer>8417</integer>\n\t\t\t<key>Sort Name</key><string>Angry Mob [Live From Berlin]</string>\n\t\t\t<key>Persistent ID</key><string>1BD284EFA469A04A</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Yours%20Truly,%20Angry%20Mob/13%20The%20Angry%20Mob%20%5BLive%20From%20Berlin%5D.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>679</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>679</integer>\n\t\t\t<key>Name</key><string>I Like To Fight</string>\n\t\t\t<key>Artist</key><string>Kaiser Chiefs</string>\n\t\t\t<key>Composer</key><string>Kaiser Cheifs</string>\n\t\t\t<key>Album</key><string>Yours Truly, Angry Mob</string>\n\t\t\t<key>Genre</key><string>Alternative &#38; Punk</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4373480</integer>\n\t\t\t<key>Total Time</key><integer>218566</integer>\n\t\t\t<key>Track Number</key><integer>14</integer>\n\t\t\t<key>Track Count</key><integer>15</integer>\n\t\t\t<key>Year</key><integer>2007</integer>\n\t\t\t<key>Date Modified</key><date>2007-12-12T16:27:02Z</date>\n\t\t\t<key>Date Added</key><date>2007-12-01T00:02:08Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>8</integer>\n\t\t\t<key>Play Date</key><integer>3489338420</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-07-28T00:40:20Z</date>\n\t\t\t<key>Normalization</key><integer>14787</integer>\n\t\t\t<key>Persistent ID</key><string>1BD284EFA469A04F</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Yours%20Truly,%20Angry%20Mob/14%20I%20Like%20To%20Fight.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>681</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>681</integer>\n\t\t\t<key>Name</key><string>From The Neck Down</string>\n\t\t\t<key>Artist</key><string>Kaiser Chiefs</string>\n\t\t\t<key>Composer</key><string>Kaiser Cheifs</string>\n\t\t\t<key>Album</key><string>Yours Truly, Angry Mob</string>\n\t\t\t<key>Genre</key><string>Alternative &#38; Punk</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>2946671</integer>\n\t\t\t<key>Total Time</key><integer>147226</integer>\n\t\t\t<key>Track Number</key><integer>15</integer>\n\t\t\t<key>Track Count</key><integer>15</integer>\n\t\t\t<key>Year</key><integer>2007</integer>\n\t\t\t<key>Date Modified</key><date>2007-12-12T16:27:02Z</date>\n\t\t\t<key>Date Added</key><date>2007-12-01T00:02:32Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>15</integer>\n\t\t\t<key>Play Date</key><integer>3505752301</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-02-03T01:05:01Z</date>\n\t\t\t<key>Normalization</key><integer>12005</integer>\n\t\t\t<key>Persistent ID</key><string>1BD284EFA469A054</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Yours%20Truly,%20Angry%20Mob/15%20From%20The%20Neck%20Down.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>683</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>683</integer>\n\t\t\t<key>Name</key><string>ruby_on_rails</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>51202652</integer>\n\t\t\t<key>Total Time</key><integer>1207920</integer>\n\t\t\t<key>Date Modified</key><date>2010-08-16T20:33:56Z</date>\n\t\t\t<key>Date Added</key><date>2007-12-27T15:43:30Z</date>\n\t\t\t<key>Bit Rate</key><integer>106</integer>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>D4D578A35EB69088</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>480</integer>\n\t\t\t<key>Video Height</key><integer>288</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Desktop/publish/media/2007/ruby_on_rails.mp4</string>\n\t\t\t<key>File Folder Count</key><integer>5</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>685</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>685</integer>\n\t\t\t<key>Name</key><string>AcceleratorBlues</string>\n\t\t\t<key>Artist</key><string>The Canettes Blues Band</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>8079282</integer>\n\t\t\t<key>Total Time</key><integer>336457</integer>\n\t\t\t<key>Date Modified</key><date>2008-01-11T02:31:53Z</date>\n\t\t\t<key>Date Added</key><date>2008-01-11T02:30:36Z</date>\n\t\t\t<key>Bit Rate</key><integer>192</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>71</integer>\n\t\t\t<key>Play Date</key><integer>3518867227</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-07-04T19:07:07Z</date>\n\t\t\t<key>Skip Count</key><integer>4</integer>\n\t\t\t<key>Skip Date</key><date>2014-10-17T01:54:12Z</date>\n\t\t\t<key>Sort Artist</key><string>Canettes Blues Band</string>\n\t\t\t<key>Persistent ID</key><string>A9ADCB45BD7DF0F0</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/Unknown%20Album/AcceleratorBlues.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>687</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>687</integer>\n\t\t\t<key>Name</key><string>HenryFordBlues</string>\n\t\t\t<key>Artist</key><string>The Canettes Blues Band</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>7164578</integer>\n\t\t\t<key>Total Time</key><integer>298344</integer>\n\t\t\t<key>Date Modified</key><date>2008-01-11T02:31:48Z</date>\n\t\t\t<key>Date Added</key><date>2008-01-11T02:31:08Z</date>\n\t\t\t<key>Bit Rate</key><integer>192</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>4</integer>\n\t\t\t<key>Play Date</key><integer>3464981822</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-10-19T02:57:02Z</date>\n\t\t\t<key>Sort Artist</key><string>Canettes Blues Band</string>\n\t\t\t<key>Persistent ID</key><string>A9ADCB45BD7DF0F5</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/Unknown%20Album/HenryFordBlues.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>689</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>689</integer>\n\t\t\t<key>Name</key><string>SteppinOut</string>\n\t\t\t<key>Artist</key><string>The Canettes Blues Band</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4629866</integer>\n\t\t\t<key>Total Time</key><integer>192731</integer>\n\t\t\t<key>Date Modified</key><date>2008-01-11T02:31:58Z</date>\n\t\t\t<key>Date Added</key><date>2008-01-11T02:31:21Z</date>\n\t\t\t<key>Bit Rate</key><integer>192</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>8</integer>\n\t\t\t<key>Play Date</key><integer>3464352347</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-10-11T20:05:47Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2013-09-21T00:05:43Z</date>\n\t\t\t<key>Sort Artist</key><string>Canettes Blues Band</string>\n\t\t\t<key>Persistent ID</key><string>A9ADCB45BD7DF0FA</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/Unknown%20Album/SteppinOut.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>691</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>691</integer>\n\t\t\t<key>Name</key><string>LittleRedRooster</string>\n\t\t\t<key>Artist</key><string>The Canettes Blues Band</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>9333787</integer>\n\t\t\t<key>Total Time</key><integer>388728</integer>\n\t\t\t<key>Date Modified</key><date>2008-01-11T02:31:42Z</date>\n\t\t\t<key>Date Added</key><date>2008-01-11T02:31:29Z</date>\n\t\t\t<key>Bit Rate</key><integer>192</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>13</integer>\n\t\t\t<key>Play Date</key><integer>3454674169</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-06-21T19:42:49Z</date>\n\t\t\t<key>Sort Artist</key><string>Canettes Blues Band</string>\n\t\t\t<key>Persistent ID</key><string>A9ADCB45BD7DF0FF</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/The%20Canettes%20Blues%20Band/Unknown%20Album/LittleRedRooster.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>693</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>693</integer>\n\t\t\t<key>Name</key><string>fln_iphone</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>74974645</integer>\n\t\t\t<key>Total Time</key><integer>582382</integer>\n\t\t\t<key>Date Modified</key><date>2010-08-16T20:31:33Z</date>\n\t\t\t<key>Date Added</key><date>2008-02-22T17:20:41Z</date>\n\t\t\t<key>Bit Rate</key><integer>123</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3294432235</integer>\n\t\t\t<key>Play Date UTC</key><date>2008-05-24T04:03:55Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>924DD8D7A2E71F93</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>480</integer>\n\t\t\t<key>Video Height</key><integer>360</integer>\n\t\t\t<key>File Type</key><integer>1295275600</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Desktop/publish/media/2002/fln_iphone.m4v</string>\n\t\t\t<key>File Folder Count</key><integer>5</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>695</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>695</integer>\n\t\t\t<key>Name</key><string>mojo-di</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>43418208</integer>\n\t\t\t<key>Total Time</key><integer>335469</integer>\n\t\t\t<key>Date Modified</key><date>2010-08-16T20:34:58Z</date>\n\t\t\t<key>Date Added</key><date>2008-04-19T04:43:42Z</date>\n\t\t\t<key>Bit Rate</key><integer>127</integer>\n\t\t\t<key>Play Count</key><integer>10</integer>\n\t\t\t<key>Play Date</key><integer>3298462240</integer>\n\t\t\t<key>Play Date UTC</key><date>2008-07-09T19:30:40Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>958234F25CEB55A6</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>480</integer>\n\t\t\t<key>Video Height</key><integer>360</integer>\n\t\t\t<key>File Type</key><integer>1295275600</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Desktop/publish/media/2008/mojo-di.m4v</string>\n\t\t\t<key>File Folder Count</key><integer>5</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>697</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>697</integer>\n\t\t\t<key>Name</key><string>etudes-500</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>131521731</integer>\n\t\t\t<key>Total Time</key><integer>1020987</integer>\n\t\t\t<key>Date Modified</key><date>2010-08-16T20:34:09Z</date>\n\t\t\t<key>Date Added</key><date>2008-05-24T14:38:24Z</date>\n\t\t\t<key>Bit Rate</key><integer>122</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3294740538</integer>\n\t\t\t<key>Play Date UTC</key><date>2008-05-27T17:42:18Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>BED2D4763936C2A7</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>480</integer>\n\t\t\t<key>Video Height</key><integer>360</integer>\n\t\t\t<key>File Type</key><integer>1295275600</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Desktop/publish/media/2008/etudes-500.m4v</string>\n\t\t\t<key>File Folder Count</key><integer>5</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>699</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>699</integer>\n\t\t\t<key>Name</key><string>jmw-iphone</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>41567727</integer>\n\t\t\t<key>Total Time</key><integer>334401</integer>\n\t\t\t<key>Date Modified</key><date>2010-08-16T20:33:52Z</date>\n\t\t\t<key>Date Added</key><date>2008-05-24T14:38:59Z</date>\n\t\t\t<key>Bit Rate</key><integer>125</integer>\n\t\t\t<key>Play Count</key><integer>4</integer>\n\t\t\t<key>Play Date</key><integer>3457182507</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-07-20T20:28:27Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>BED2D4763936C2B1</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>480</integer>\n\t\t\t<key>Video Height</key><integer>320</integer>\n\t\t\t<key>File Type</key><integer>1295275552</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Desktop/publish/media/2007/jmw-iphone.m4v</string>\n\t\t\t<key>File Folder Count</key><integer>5</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>701</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>701</integer>\n\t\t\t<key>Name</key><string>Bomb Squad (TECH)</string>\n\t\t\t<key>Artist</key><string>Brent</string>\n\t\t\t<key>Composer</key><string>Brent</string>\n\t\t\t<key>Album</key><string>Brent's Album</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4996007</integer>\n\t\t\t<key>Total Time</key><integer>208065</integer>\n\t\t\t<key>Year</key><integer>2008</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2008-06-13T12:24:18Z</date>\n\t\t\t<key>Date Added</key><date>2008-07-07T02:26:10Z</date>\n\t\t\t<key>Bit Rate</key><integer>192</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>4</integer>\n\t\t\t<key>Play Date</key><integer>3443807301</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-02-16T02:08:21Z</date>\n\t\t\t<key>Skip Count</key><integer>14</integer>\n\t\t\t<key>Skip Date</key><date>2013-11-11T21:20:49Z</date>\n\t\t\t<key>Normalization</key><integer>1244</integer>\n\t\t\t<key>Persistent ID</key><string>FB3C822328B558DD</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297101600</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Music/brent/Bomb%20Squad%20(TECH).mp3</string>\n\t\t\t<key>File Folder Count</key><integer>2</integer>\n\t\t\t<key>Library Folder Count</key><integer>2</integer>\n\t\t</dict>\n\t\t<key>703</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>703</integer>\n\t\t\t<key>Name</key><string>BYURY ME</string>\n\t\t\t<key>Artist</key><string>Brent</string>\n\t\t\t<key>Composer</key><string>Brent</string>\n\t\t\t<key>Album</key><string>Peanut Butter &#38; Jam </string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>6620936</integer>\n\t\t\t<key>Total Time</key><integer>274076</integer>\n\t\t\t<key>Year</key><integer>2008</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2008-05-20T20:51:40Z</date>\n\t\t\t<key>Date Added</key><date>2008-07-07T02:26:10Z</date>\n\t\t\t<key>Bit Rate</key><integer>192</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>4</integer>\n\t\t\t<key>Play Date</key><integer>3489334987</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-07-27T23:43:07Z</date>\n\t\t\t<key>Skip Count</key><integer>14</integer>\n\t\t\t<key>Skip Date</key><date>2013-09-21T15:00:16Z</date>\n\t\t\t<key>Normalization</key><integer>1258</integer>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>FB3C822328B558DF</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297101600</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Music/brent/BYURY%20ME.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>2</integer>\n\t\t\t<key>Library Folder Count</key><integer>2</integer>\n\t\t</dict>\n\t\t<key>705</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>705</integer>\n\t\t\t<key>Name</key><string>Charlie and the Rising Moon</string>\n\t\t\t<key>Artist</key><string>Charlie And The Rising Moon</string>\n\t\t\t<key>Composer</key><string>Brent</string>\n\t\t\t<key>Album</key><string>Charlie and The Rising Moon</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>2588803</integer>\n\t\t\t<key>Total Time</key><integer>161645</integer>\n\t\t\t<key>Year</key><integer>2008</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2008-04-30T19:55:38Z</date>\n\t\t\t<key>Date Added</key><date>2008-07-07T02:26:10Z</date>\n\t\t\t<key>Bit Rate</key><integer>128</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Skip Count</key><integer>14</integer>\n\t\t\t<key>Skip Date</key><date>2013-11-12T02:57:50Z</date>\n\t\t\t<key>Normalization</key><integer>1212</integer>\n\t\t\t<key>Persistent ID</key><string>FB3C822328B558E0</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297101600</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Music/brent/Charlie%20and%20the%20Rising%20Moon.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>2</integer>\n\t\t\t<key>Library Folder Count</key><integer>2</integer>\n\t\t</dict>\n\t\t<key>707</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>707</integer>\n\t\t\t<key>Name</key><string>clay techno </string>\n\t\t\t<key>Artist</key><string>Brent</string>\n\t\t\t<key>Composer</key><string>Brent</string>\n\t\t\t<key>Album</key><string>Brent's Album</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>6627923</integer>\n\t\t\t<key>Total Time</key><integer>276062</integer>\n\t\t\t<key>Year</key><integer>2008</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2008-06-04T17:55:38Z</date>\n\t\t\t<key>Date Added</key><date>2008-07-07T02:26:10Z</date>\n\t\t\t<key>Bit Rate</key><integer>192</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>5</integer>\n\t\t\t<key>Play Date</key><integer>3438100510</integer>\n\t\t\t<key>Play Date UTC</key><date>2012-12-12T00:55:10Z</date>\n\t\t\t<key>Skip Count</key><integer>8</integer>\n\t\t\t<key>Skip Date</key><date>2013-09-21T15:12:52Z</date>\n\t\t\t<key>Normalization</key><integer>1033</integer>\n\t\t\t<key>Persistent ID</key><string>FB3C822328B558E1</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297101600</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Music/brent/clay%20techno.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>2</integer>\n\t\t\t<key>Library Folder Count</key><integer>2</integer>\n\t\t</dict>\n\t\t<key>709</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>709</integer>\n\t\t\t<key>Name</key><string>Cloud Nine Times Over </string>\n\t\t\t<key>Artist</key><string>Charlie And The Rising Moon</string>\n\t\t\t<key>Composer</key><string>Brent</string>\n\t\t\t<key>Album</key><string>Charlie and The Rising Moon</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>2164569</integer>\n\t\t\t<key>Total Time</key><integer>135131</integer>\n\t\t\t<key>Year</key><integer>2008</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2008-04-30T19:56:46Z</date>\n\t\t\t<key>Date Added</key><date>2008-07-07T02:26:10Z</date>\n\t\t\t<key>Bit Rate</key><integer>128</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>3</integer>\n\t\t\t<key>Play Date</key><integer>3452342969</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-05-25T20:09:29Z</date>\n\t\t\t<key>Skip Count</key><integer>6</integer>\n\t\t\t<key>Skip Date</key><date>2013-08-01T23:46:44Z</date>\n\t\t\t<key>Normalization</key><integer>1287</integer>\n\t\t\t<key>Persistent ID</key><string>FB3C822328B558E2</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297101600</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Music/brent/Cloud%20Nine%20Times%20Over.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>2</integer>\n\t\t\t<key>Library Folder Count</key><integer>2</integer>\n\t\t</dict>\n\t\t<key>711</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>711</integer>\n\t\t\t<key>Name</key><string>Depression in Session</string>\n\t\t\t<key>Artist</key><string>Brent</string>\n\t\t\t<key>Composer</key><string>Brent</string>\n\t\t\t<key>Album</key><string>Peanut Butter and Jam </string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5119527</integer>\n\t\t\t<key>Total Time</key><integer>213211</integer>\n\t\t\t<key>Year</key><integer>2008</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2008-05-21T19:55:06Z</date>\n\t\t\t<key>Date Added</key><date>2008-07-07T02:26:10Z</date>\n\t\t\t<key>Bit Rate</key><integer>192</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>4</integer>\n\t\t\t<key>Play Date</key><integer>3438102571</integer>\n\t\t\t<key>Play Date UTC</key><date>2012-12-12T01:29:31Z</date>\n\t\t\t<key>Skip Count</key><integer>7</integer>\n\t\t\t<key>Skip Date</key><date>2013-09-21T15:34:55Z</date>\n\t\t\t<key>Normalization</key><integer>1205</integer>\n\t\t\t<key>Persistent ID</key><string>FB3C822328B558E3</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297101600</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Music/brent/Depression%20in%20Session.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>2</integer>\n\t\t\t<key>Library Folder Count</key><integer>2</integer>\n\t\t</dict>\n\t\t<key>713</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>713</integer>\n\t\t\t<key>Name</key><string>Heavy</string>\n\t\t\t<key>Artist</key><string>Brent</string>\n\t\t\t<key>Composer</key><string>Brent</string>\n\t\t\t<key>Album</key><string>Brent's Album</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4515760</integer>\n\t\t\t<key>Total Time</key><integer>188055</integer>\n\t\t\t<key>Year</key><integer>2008</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2008-06-27T07:46:44Z</date>\n\t\t\t<key>Date Added</key><date>2008-07-07T02:26:10Z</date>\n\t\t\t<key>Bit Rate</key><integer>192</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>2</integer>\n\t\t\t<key>Play Date</key><integer>3311360805</integer>\n\t\t\t<key>Play Date UTC</key><date>2008-12-06T03:26:45Z</date>\n\t\t\t<key>Skip Count</key><integer>3</integer>\n\t\t\t<key>Skip Date</key><date>2013-10-28T00:53:25Z</date>\n\t\t\t<key>Normalization</key><integer>1138</integer>\n\t\t\t<key>Persistent ID</key><string>FB3C822328B558E4</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297101600</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Music/brent/Heavy.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>2</integer>\n\t\t\t<key>Library Folder Count</key><integer>2</integer>\n\t\t</dict>\n\t\t<key>715</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>715</integer>\n\t\t\t<key>Name</key><string>Hi metal man</string>\n\t\t\t<key>Artist</key><string>Brent</string>\n\t\t\t<key>Composer</key><string>Brent</string>\n\t\t\t<key>Album</key><string>Brent's Album</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>6246118</integer>\n\t\t\t<key>Total Time</key><integer>260153</integer>\n\t\t\t<key>Year</key><integer>2008</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2008-06-04T17:55:46Z</date>\n\t\t\t<key>Date Added</key><date>2008-07-07T02:26:10Z</date>\n\t\t\t<key>Bit Rate</key><integer>192</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>4</integer>\n\t\t\t<key>Play Date</key><integer>3489339165</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-07-28T00:52:45Z</date>\n\t\t\t<key>Skip Count</key><integer>2</integer>\n\t\t\t<key>Skip Date</key><date>2013-11-12T13:05:37Z</date>\n\t\t\t<key>Normalization</key><integer>1202</integer>\n\t\t\t<key>Persistent ID</key><string>FB3C822328B558E5</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297101600</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Music/brent/Hi%20metal%20man.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>2</integer>\n\t\t\t<key>Library Folder Count</key><integer>2</integer>\n\t\t</dict>\n\t\t<key>717</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>717</integer>\n\t\t\t<key>Name</key><string>Mistro</string>\n\t\t\t<key>Artist</key><string>Brent</string>\n\t\t\t<key>Composer</key><string>Brent</string>\n\t\t\t<key>Album</key><string>Brent's Album</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4277938</integer>\n\t\t\t<key>Total Time</key><integer>178076</integer>\n\t\t\t<key>Year</key><integer>2008</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2008-05-24T18:28:30Z</date>\n\t\t\t<key>Date Added</key><date>2008-07-07T02:26:10Z</date>\n\t\t\t<key>Bit Rate</key><integer>192</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>5</integer>\n\t\t\t<key>Play Date</key><integer>3459349587</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-08-14T22:26:27Z</date>\n\t\t\t<key>Skip Count</key><integer>2</integer>\n\t\t\t<key>Skip Date</key><date>2013-09-21T01:52:26Z</date>\n\t\t\t<key>Normalization</key><integer>1206</integer>\n\t\t\t<key>Persistent ID</key><string>FB3C822328B558E6</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297101600</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Music/brent/Mistro.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>2</integer>\n\t\t\t<key>Library Folder Count</key><integer>2</integer>\n\t\t</dict>\n\t\t<key>719</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>719</integer>\n\t\t\t<key>Name</key><string>Pirate spirit</string>\n\t\t\t<key>Artist</key><string>Brent</string>\n\t\t\t<key>Composer</key><string>Brent</string>\n\t\t\t<key>Album</key><string>Brent's Album</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4335616</integer>\n\t\t\t<key>Total Time</key><integer>180480</integer>\n\t\t\t<key>Year</key><integer>2008</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2008-06-16T10:25:28Z</date>\n\t\t\t<key>Date Added</key><date>2008-07-07T02:26:10Z</date>\n\t\t\t<key>Bit Rate</key><integer>192</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>3</integer>\n\t\t\t<key>Play Date</key><integer>3367333081</integer>\n\t\t\t<key>Play Date UTC</key><date>2010-09-14T22:18:01Z</date>\n\t\t\t<key>Skip Count</key><integer>3</integer>\n\t\t\t<key>Skip Date</key><date>2013-09-18T23:16:27Z</date>\n\t\t\t<key>Normalization</key><integer>1214</integer>\n\t\t\t<key>Persistent ID</key><string>FB3C822328B558E7</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297101600</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Music/brent/Pirate%20spirit.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>2</integer>\n\t\t\t<key>Library Folder Count</key><integer>2</integer>\n\t\t</dict>\n\t\t<key>721</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>721</integer>\n\t\t\t<key>Name</key><string>Run Away (New) </string>\n\t\t\t<key>Artist</key><string>Brent</string>\n\t\t\t<key>Composer</key><string>Brent</string>\n\t\t\t<key>Album</key><string>Brent's Album</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3709305</integer>\n\t\t\t<key>Total Time</key><integer>154383</integer>\n\t\t\t<key>Year</key><integer>2008</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2008-05-23T18:09:18Z</date>\n\t\t\t<key>Date Added</key><date>2008-07-07T02:26:10Z</date>\n\t\t\t<key>Bit Rate</key><integer>192</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3311361999</integer>\n\t\t\t<key>Play Date UTC</key><date>2008-12-06T03:46:39Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2013-09-20T11:43:52Z</date>\n\t\t\t<key>Normalization</key><integer>1206</integer>\n\t\t\t<key>Persistent ID</key><string>FB3C822328B558E8</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297101600</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Music/brent/Run%20Away%20(New).mp3</string>\n\t\t\t<key>File Folder Count</key><integer>2</integer>\n\t\t\t<key>Library Folder Count</key><integer>2</integer>\n\t\t</dict>\n\t\t<key>723</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>723</integer>\n\t\t\t<key>Name</key><string>Star Gaze (Inspired)</string>\n\t\t\t<key>Artist</key><string>Charlie And The Rising Moon</string>\n\t\t\t<key>Composer</key><string>Brent</string>\n\t\t\t<key>Album</key><string>Charlie and The Rising Moon</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>2906438</integer>\n\t\t\t<key>Total Time</key><integer>181498</integer>\n\t\t\t<key>Year</key><integer>2008</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2008-04-30T19:55:02Z</date>\n\t\t\t<key>Date Added</key><date>2008-07-07T02:26:10Z</date>\n\t\t\t<key>Bit Rate</key><integer>128</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Skip Count</key><integer>3</integer>\n\t\t\t<key>Skip Date</key><date>2015-01-02T17:24:36Z</date>\n\t\t\t<key>Normalization</key><integer>1238</integer>\n\t\t\t<key>Persistent ID</key><string>FB3C822328B558E9</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297101600</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Music/brent/Star%20Gaze%20(Inspired).mp3</string>\n\t\t\t<key>File Folder Count</key><integer>2</integer>\n\t\t\t<key>Library Folder Count</key><integer>2</integer>\n\t\t</dict>\n\t\t<key>725</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>725</integer>\n\t\t\t<key>Name</key><string>The Dictator (New</string>\n\t\t\t<key>Artist</key><string>Brent</string>\n\t\t\t<key>Composer</key><string>Brent</string>\n\t\t\t<key>Album</key><string>Peanut Butter &#38; Jam </string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3454364</integer>\n\t\t\t<key>Total Time</key><integer>143830</integer>\n\t\t\t<key>Year</key><integer>2008</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2008-05-25T11:18:14Z</date>\n\t\t\t<key>Date Added</key><date>2008-07-07T02:26:11Z</date>\n\t\t\t<key>Bit Rate</key><integer>192</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>5</integer>\n\t\t\t<key>Play Date</key><integer>3442000922</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-01-26T04:22:02Z</date>\n\t\t\t<key>Skip Count</key><integer>8</integer>\n\t\t\t<key>Skip Date</key><date>2013-10-20T22:55:47Z</date>\n\t\t\t<key>Normalization</key><integer>1269</integer>\n\t\t\t<key>Sort Name</key><string>Dictator (New</string>\n\t\t\t<key>Persistent ID</key><string>FB3C822328B558EA</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297101600</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Music/brent/The%20Dictator%20(New.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>2</integer>\n\t\t\t<key>Library Folder Count</key><integer>2</integer>\n\t\t</dict>\n\t\t<key>727</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>727</integer>\n\t\t\t<key>Name</key><string>Town From Town</string>\n\t\t\t<key>Artist</key><string>Brent</string>\n\t\t\t<key>Composer</key><string>Brent</string>\n\t\t\t<key>Album</key><string>Brent's Album</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>2068200</integer>\n\t\t\t<key>Total Time</key><integer>86073</integer>\n\t\t\t<key>Year</key><integer>2008</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2008-05-31T20:02:24Z</date>\n\t\t\t<key>Date Added</key><date>2008-07-07T02:26:11Z</date>\n\t\t\t<key>Bit Rate</key><integer>192</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>4</integer>\n\t\t\t<key>Play Date</key><integer>3489334708</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-07-27T23:38:28Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2013-10-28T12:04:27Z</date>\n\t\t\t<key>Normalization</key><integer>1214</integer>\n\t\t\t<key>Persistent ID</key><string>FB3C822328B558EB</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297101600</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Music/brent/Town%20From%20Town.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>2</integer>\n\t\t\t<key>Library Folder Count</key><integer>2</integer>\n\t\t</dict>\n\t\t<key>731</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>731</integer>\n\t\t\t<key>Name</key><string>The Wisdom of Crowds: Why the Many Are Smarter than the Few Part 1 of 3</string>\n\t\t\t<key>Artist</key><string>James Surowiecki</string>\n\t\t\t<key>Album Artist</key><string>James Surowiecki</string>\n\t\t\t<key>Album</key><string>The Wisdom of Crowds: Why the Many Are Smarter than the Few (Abridged Nonfiction)</string>\n\t\t\t<key>Genre</key><string>Business</string>\n\t\t\t<key>Kind</key><string>Protected AAC audio file</string>\n\t\t\t<key>Size</key><integer>34033717</integer>\n\t\t\t<key>Total Time</key><integer>8586749</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>1</integer>\n\t\t\t<key>Track Count</key><integer>3</integer>\n\t\t\t<key>Year</key><integer>2009</integer>\n\t\t\t<key>Date Modified</key><date>2009-01-08T06:25:40Z</date>\n\t\t\t<key>Date Added</key><date>2009-01-08T06:25:23Z</date>\n\t\t\t<key>Bit Rate</key><integer>32</integer>\n\t\t\t<key>Sample Rate</key><integer>24000</integer>\n\t\t\t<key>Play Count</key><integer>15</integer>\n\t\t\t<key>Play Date</key><integer>3378747452</integer>\n\t\t\t<key>Play Date UTC</key><date>2011-01-25T01:57:32Z</date>\n\t\t\t<key>Release Date</key><date>2009-01-01T00:00:00Z</date>\n\t\t\t<key>Normalization</key><integer>741</integer>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Sort Album</key><string>Wisdom of Crowds: Why the Many Are Smarter than the Few (Abridged Nonfiction)</string>\n\t\t\t<key>Sort Name</key><string>Wisdom of Crowds: Why the Many Are Smarter than the Few Part 1 of 3</string>\n\t\t\t<key>Persistent ID</key><string>85E3BEC9D2F62A47</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Protected</key><true/>\n\t\t\t<key>Purchased</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/James%20Surowiecki/The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20than%20the%20Few%20(Abridged%20Nonfiction)/01%20The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20than%20the%20Few%20Part%201%20of%203.m4b</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>733</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>733</integer>\n\t\t\t<key>Name</key><string>The Wisdom of Crowds: Why the Many Are Smarter than the Few Part 2 of 3</string>\n\t\t\t<key>Artist</key><string>James Surowiecki</string>\n\t\t\t<key>Album Artist</key><string>James Surowiecki</string>\n\t\t\t<key>Album</key><string>The Wisdom of Crowds: Why the Many Are Smarter than the Few (Abridged Nonfiction)</string>\n\t\t\t<key>Genre</key><string>Business</string>\n\t\t\t<key>Kind</key><string>Protected AAC audio file</string>\n\t\t\t<key>Size</key><integer>33466501</integer>\n\t\t\t<key>Total Time</key><integer>8443432</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>2</integer>\n\t\t\t<key>Track Count</key><integer>3</integer>\n\t\t\t<key>Year</key><integer>2009</integer>\n\t\t\t<key>Date Modified</key><date>2009-01-08T06:25:45Z</date>\n\t\t\t<key>Date Added</key><date>2009-01-08T06:25:23Z</date>\n\t\t\t<key>Bit Rate</key><integer>32</integer>\n\t\t\t<key>Sample Rate</key><integer>24000</integer>\n\t\t\t<key>Play Count</key><integer>9</integer>\n\t\t\t<key>Play Date</key><integer>3411534540</integer>\n\t\t\t<key>Play Date UTC</key><date>2012-02-08T13:29:00Z</date>\n\t\t\t<key>Release Date</key><date>2009-01-01T00:00:00Z</date>\n\t\t\t<key>Normalization</key><integer>674</integer>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Sort Album</key><string>Wisdom of Crowds: Why the Many Are Smarter than the Few (Abridged Nonfiction)</string>\n\t\t\t<key>Sort Name</key><string>Wisdom of Crowds: Why the Many Are Smarter than the Few Part 2 of 3</string>\n\t\t\t<key>Persistent ID</key><string>85E3BEC9D2F62A4C</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Protected</key><true/>\n\t\t\t<key>Purchased</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/James%20Surowiecki/The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20than%20the%20Few%20(Abridged%20Nonfiction)/02%20The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20than%20the%20Few%20Part%202%20of%203.m4b</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>735</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>735</integer>\n\t\t\t<key>Name</key><string>The Wisdom of Crowds: Why the Many Are Smarter than the Few Part 3 of 3</string>\n\t\t\t<key>Artist</key><string>James Surowiecki</string>\n\t\t\t<key>Album Artist</key><string>James Surowiecki</string>\n\t\t\t<key>Album</key><string>The Wisdom of Crowds: Why the Many Are Smarter than the Few (Abridged Nonfiction)</string>\n\t\t\t<key>Genre</key><string>Business</string>\n\t\t\t<key>Kind</key><string>Protected AAC audio file</string>\n\t\t\t<key>Size</key><integer>16549445</integer>\n\t\t\t<key>Total Time</key><integer>4168829</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>3</integer>\n\t\t\t<key>Track Count</key><integer>3</integer>\n\t\t\t<key>Year</key><integer>2009</integer>\n\t\t\t<key>Date Modified</key><date>2009-01-08T06:25:31Z</date>\n\t\t\t<key>Date Added</key><date>2009-01-08T06:25:23Z</date>\n\t\t\t<key>Bit Rate</key><integer>32</integer>\n\t\t\t<key>Sample Rate</key><integer>24000</integer>\n\t\t\t<key>Play Count</key><integer>3</integer>\n\t\t\t<key>Play Date</key><integer>3347027187</integer>\n\t\t\t<key>Play Date UTC</key><date>2010-01-22T22:46:27Z</date>\n\t\t\t<key>Release Date</key><date>2009-01-01T00:00:00Z</date>\n\t\t\t<key>Normalization</key><integer>649</integer>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Sort Album</key><string>Wisdom of Crowds: Why the Many Are Smarter than the Few (Abridged Nonfiction)</string>\n\t\t\t<key>Sort Name</key><string>Wisdom of Crowds: Why the Many Are Smarter than the Few Part 3 of 3</string>\n\t\t\t<key>Persistent ID</key><string>85E3BEC9D2F62A4F</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Protected</key><true/>\n\t\t\t<key>Purchased</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/James%20Surowiecki/The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20than%20the%20Few%20(Abridged%20Nonfiction)/03%20The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20than%20the%20Few%20Part%203%20of%203.m4b</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>737</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>737</integer>\n\t\t\t<key>Name</key><string>The Wisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged) Part 1 of 5</string>\n\t\t\t<key>Artist</key><string>James Surowiecki</string>\n\t\t\t<key>Album Artist</key><string>James Surowiecki</string>\n\t\t\t<key>Album</key><string>The Wisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged)</string>\n\t\t\t<key>Genre</key><string>Nonfiction</string>\n\t\t\t<key>Kind</key><string>Protected AAC audio file</string>\n\t\t\t<key>Size</key><integer>31405519</integer>\n\t\t\t<key>Total Time</key><integer>7920893</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>1</integer>\n\t\t\t<key>Track Count</key><integer>5</integer>\n\t\t\t<key>Year</key><integer>2009</integer>\n\t\t\t<key>Date Modified</key><date>2009-01-08T17:53:30Z</date>\n\t\t\t<key>Date Added</key><date>2009-01-08T17:53:09Z</date>\n\t\t\t<key>Bit Rate</key><integer>32</integer>\n\t\t\t<key>Sample Rate</key><integer>24000</integer>\n\t\t\t<key>Play Count</key><integer>4</integer>\n\t\t\t<key>Play Date</key><integer>3411484703</integer>\n\t\t\t<key>Play Date UTC</key><date>2012-02-07T23:38:23Z</date>\n\t\t\t<key>Release Date</key><date>2009-01-01T00:00:00Z</date>\n\t\t\t<key>Normalization</key><integer>951</integer>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Sort Album</key><string>Wisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged)</string>\n\t\t\t<key>Sort Name</key><string>Wisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged) Part 1 of 5</string>\n\t\t\t<key>Persistent ID</key><string>10DCC84281424795</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Protected</key><true/>\n\t\t\t<key>Purchased</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/James%20Surowiecki/The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20Than%20the%20Few%20(Unabridged)/01%20The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20Than%20the%20Few%20(Unabridged)%20Part%201%20of%205.m4b</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>739</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>739</integer>\n\t\t\t<key>Name</key><string>The Wisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged) Part 2 of 5</string>\n\t\t\t<key>Artist</key><string>James Surowiecki</string>\n\t\t\t<key>Album Artist</key><string>James Surowiecki</string>\n\t\t\t<key>Album</key><string>The Wisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged)</string>\n\t\t\t<key>Genre</key><string>Nonfiction</string>\n\t\t\t<key>Kind</key><string>Protected AAC audio file</string>\n\t\t\t<key>Size</key><integer>31409279</integer>\n\t\t\t<key>Total Time</key><integer>7921106</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>2</integer>\n\t\t\t<key>Track Count</key><integer>5</integer>\n\t\t\t<key>Year</key><integer>2009</integer>\n\t\t\t<key>Date Modified</key><date>2009-01-08T17:53:25Z</date>\n\t\t\t<key>Date Added</key><date>2009-01-08T17:53:09Z</date>\n\t\t\t<key>Bit Rate</key><integer>32</integer>\n\t\t\t<key>Sample Rate</key><integer>24000</integer>\n\t\t\t<key>Release Date</key><date>2009-01-01T00:00:00Z</date>\n\t\t\t<key>Normalization</key><integer>1004</integer>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Sort Album</key><string>Wisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged)</string>\n\t\t\t<key>Sort Name</key><string>Wisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged) Part 2 of 5</string>\n\t\t\t<key>Persistent ID</key><string>10DCC84281424799</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Protected</key><true/>\n\t\t\t<key>Purchased</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/James%20Surowiecki/The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20Than%20the%20Few%20(Unabridged)/02%20The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20Than%20the%20Few%20(Unabridged)%20Part%202%20of%205.m4b</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>741</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>741</integer>\n\t\t\t<key>Name</key><string>The Wisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged) Part 3 of 5</string>\n\t\t\t<key>Artist</key><string>James Surowiecki</string>\n\t\t\t<key>Album Artist</key><string>James Surowiecki</string>\n\t\t\t<key>Album</key><string>The Wisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged)</string>\n\t\t\t<key>Genre</key><string>Nonfiction</string>\n\t\t\t<key>Kind</key><string>Protected AAC audio file</string>\n\t\t\t<key>Size</key><integer>31585647</integer>\n\t\t\t<key>Total Time</key><integer>7965736</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>3</integer>\n\t\t\t<key>Track Count</key><integer>5</integer>\n\t\t\t<key>Year</key><integer>2009</integer>\n\t\t\t<key>Date Modified</key><date>2009-01-08T17:53:20Z</date>\n\t\t\t<key>Date Added</key><date>2009-01-08T17:53:09Z</date>\n\t\t\t<key>Bit Rate</key><integer>32</integer>\n\t\t\t<key>Sample Rate</key><integer>24000</integer>\n\t\t\t<key>Release Date</key><date>2009-01-01T00:00:00Z</date>\n\t\t\t<key>Normalization</key><integer>970</integer>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Sort Album</key><string>Wisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged)</string>\n\t\t\t<key>Sort Name</key><string>Wisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged) Part 3 of 5</string>\n\t\t\t<key>Persistent ID</key><string>10DCC8428142479C</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Protected</key><true/>\n\t\t\t<key>Purchased</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/James%20Surowiecki/The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20Than%20the%20Few%20(Unabridged)/03%20The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20Than%20the%20Few%20(Unabridged)%20Part%203%20of%205.m4b</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>743</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>743</integer>\n\t\t\t<key>Name</key><string>The Wisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged) Part 4 of 5</string>\n\t\t\t<key>Artist</key><string>James Surowiecki</string>\n\t\t\t<key>Album Artist</key><string>James Surowiecki</string>\n\t\t\t<key>Album</key><string>The Wisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged)</string>\n\t\t\t<key>Genre</key><string>Nonfiction</string>\n\t\t\t<key>Kind</key><string>Protected AAC audio file</string>\n\t\t\t<key>Size</key><integer>38264415</integer>\n\t\t\t<key>Total Time</key><integer>9653330</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>4</integer>\n\t\t\t<key>Track Count</key><integer>5</integer>\n\t\t\t<key>Year</key><integer>2009</integer>\n\t\t\t<key>Date Modified</key><date>2009-01-08T17:53:40Z</date>\n\t\t\t<key>Date Added</key><date>2009-01-08T17:53:09Z</date>\n\t\t\t<key>Bit Rate</key><integer>32</integer>\n\t\t\t<key>Sample Rate</key><integer>24000</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3347250411</integer>\n\t\t\t<key>Play Date UTC</key><date>2010-01-25T12:46:51Z</date>\n\t\t\t<key>Release Date</key><date>2009-01-01T00:00:00Z</date>\n\t\t\t<key>Normalization</key><integer>953</integer>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Sort Album</key><string>Wisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged)</string>\n\t\t\t<key>Sort Name</key><string>Wisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged) Part 4 of 5</string>\n\t\t\t<key>Persistent ID</key><string>10DCC8428142479F</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Protected</key><true/>\n\t\t\t<key>Purchased</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/James%20Surowiecki/The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20Than%20the%20Few%20(Unabridged)/04%20The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20Than%20the%20Few%20(Unabridged)%20Part%204%20of%205.m4b</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>745</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>745</integer>\n\t\t\t<key>Name</key><string>The Wisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged) Part 5 of 5</string>\n\t\t\t<key>Artist</key><string>James Surowiecki</string>\n\t\t\t<key>Album Artist</key><string>James Surowiecki</string>\n\t\t\t<key>Album</key><string>The Wisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged)</string>\n\t\t\t<key>Genre</key><string>Nonfiction</string>\n\t\t\t<key>Kind</key><string>Protected AAC audio file</string>\n\t\t\t<key>Size</key><integer>3006127</integer>\n\t\t\t<key>Total Time</key><integer>746536</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>5</integer>\n\t\t\t<key>Track Count</key><integer>5</integer>\n\t\t\t<key>Year</key><integer>2009</integer>\n\t\t\t<key>Date Modified</key><date>2009-01-08T17:53:31Z</date>\n\t\t\t<key>Date Added</key><date>2009-01-08T17:53:09Z</date>\n\t\t\t<key>Bit Rate</key><integer>32</integer>\n\t\t\t<key>Sample Rate</key><integer>24000</integer>\n\t\t\t<key>Release Date</key><date>2009-01-01T00:00:00Z</date>\n\t\t\t<key>Normalization</key><integer>980</integer>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Sort Album</key><string>Wisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged)</string>\n\t\t\t<key>Sort Name</key><string>Wisdom of Crowds: Why the Many Are Smarter Than the Few (Unabridged) Part 5 of 5</string>\n\t\t\t<key>Persistent ID</key><string>10DCC842814247A2</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Protected</key><true/>\n\t\t\t<key>Purchased</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/James%20Surowiecki/The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20Than%20the%20Few%20(Unabridged)/05%20The%20Wisdom%20of%20Crowds_%20Why%20the%20Many%20Are%20Smarter%20Than%20the%20Few%20(Unabridged)%20Part%205%20of%205.m4b</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>747</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>747</integer>\n\t\t\t<key>Name</key><string>squirrel</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>6258535</integer>\n\t\t\t<key>Total Time</key><integer>60160</integer>\n\t\t\t<key>Date Modified</key><date>2010-08-16T20:36:55Z</date>\n\t\t\t<key>Date Added</key><date>2009-04-15T16:09:51Z</date>\n\t\t\t<key>Bit Rate</key><integer>123</integer>\n\t\t\t<key>Play Count</key><integer>9</integer>\n\t\t\t<key>Play Date</key><integer>3457182948</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-07-20T20:35:48Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>673C9179D73A4C38</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>320</integer>\n\t\t\t<key>Video Height</key><integer>240</integer>\n\t\t\t<key>File Type</key><integer>1295275600</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Desktop/teach/shared/lectures/Open-Source-and-Intellectual-Property/squirrel.m4v</string>\n\t\t\t<key>File Folder Count</key><integer>6</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>751</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>751</integer>\n\t\t\t<key>Name</key><string>09-08-29-fm-live-1400</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>178362647</integer>\n\t\t\t<key>Total Time</key><integer>1379645</integer>\n\t\t\t<key>Date Modified</key><date>2010-08-16T20:35:13Z</date>\n\t\t\t<key>Date Added</key><date>2009-09-03T15:38:30Z</date>\n\t\t\t<key>Bit Rate</key><integer>127</integer>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>8BE6AFD303764817</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>480</integer>\n\t\t\t<key>Video Height</key><integer>360</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Desktop/publish/media/2009/09-08-29-fm-live-1400.m4v</string>\n\t\t\t<key>File Folder Count</key><integer>5</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>753</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>753</integer>\n\t\t\t<key>Name</key><string>09-09-03-fm-acoustic</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>19658986</integer>\n\t\t\t<key>Total Time</key><integer>151098</integer>\n\t\t\t<key>Date Modified</key><date>2010-08-16T20:35:31Z</date>\n\t\t\t<key>Date Added</key><date>2009-09-03T15:44:26Z</date>\n\t\t\t<key>Bit Rate</key><integer>127</integer>\n\t\t\t<key>Play Count</key><integer>3</integer>\n\t\t\t<key>Play Date</key><integer>3348154459</integer>\n\t\t\t<key>Play Date UTC</key><date>2010-02-04T23:54:19Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>2E2DD845FA11214A</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>480</integer>\n\t\t\t<key>Video Height</key><integer>360</integer>\n\t\t\t<key>File Type</key><integer>1295275600</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Desktop/publish/media/2009/09-09-03-fm-acoustic.m4v</string>\n\t\t\t<key>File Folder Count</key><integer>5</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>755</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>755</integer>\n\t\t\t<key>Name</key><string>edu2020</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>119910967</integer>\n\t\t\t<key>Total Time</key><integer>925378</integer>\n\t\t\t<key>Date Modified</key><date>2010-08-16T20:32:54Z</date>\n\t\t\t<key>Date Added</key><date>2009-09-23T00:40:24Z</date>\n\t\t\t<key>Bit Rate</key><integer>128</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3338755712</integer>\n\t\t\t<key>Play Date UTC</key><date>2009-10-19T04:08:32Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>A889BC0992F19A30</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>480</integer>\n\t\t\t<key>Video Height</key><integer>360</integer>\n\t\t\t<key>File Type</key><integer>1295275600</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Desktop/publish/media/2006/edu2020.m4v</string>\n\t\t\t<key>File Folder Count</key><integer>5</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>757</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>757</integer>\n\t\t\t<key>Name</key><string>LTI-And-Moodle</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>76529828</integer>\n\t\t\t<key>Total Time</key><integer>201800</integer>\n\t\t\t<key>Date Modified</key><date>2010-08-16T20:35:53Z</date>\n\t\t\t<key>Date Added</key><date>2009-10-05T14:04:23Z</date>\n\t\t\t<key>Bit Rate</key><integer>122</integer>\n\t\t\t<key>Play Count</key><integer>2</integer>\n\t\t\t<key>Play Date</key><integer>3457182719</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-07-20T20:31:59Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>E0CA8917AA8FD104</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>960</integer>\n\t\t\t<key>Video Height</key><integer>540</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Desktop/publish/media/2009/LTI-And-Moodle.m4v</string>\n\t\t\t<key>File Folder Count</key><integer>5</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>759</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>759</integer>\n\t\t\t<key>Name</key><string>smallplanet-di</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>237691027</integer>\n\t\t\t<key>Total Time</key><integer>1832733</integer>\n\t\t\t<key>Date Modified</key><date>2010-08-16T20:36:10Z</date>\n\t\t\t<key>Date Added</key><date>2010-01-02T20:54:38Z</date>\n\t\t\t<key>Bit Rate</key><integer>128</integer>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>C0567644DAFD9364</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>480</integer>\n\t\t\t<key>Video Height</key><integer>360</integer>\n\t\t\t<key>File Type</key><integer>1295275600</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Desktop/publish/media/2009/smallplanet-di.m4v</string>\n\t\t\t<key>File Folder Count</key><integer>5</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>761</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>761</integer>\n\t\t\t<key>Name</key><string>beautiful-mind</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>32045106</integer>\n\t\t\t<key>Total Time</key><integer>267350</integer>\n\t\t\t<key>Date Modified</key><date>2010-01-08T02:43:50Z</date>\n\t\t\t<key>Date Added</key><date>2010-01-08T02:43:28Z</date>\n\t\t\t<key>Bit Rate</key><integer>128</integer>\n\t\t\t<key>Play Count</key><integer>2</integer>\n\t\t\t<key>Play Date</key><integer>3403465541</integer>\n\t\t\t<key>Play Date UTC</key><date>2011-11-07T04:05:41Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>1F35F2DBC91F7B2E</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>480</integer>\n\t\t\t<key>Video Height</key><integer>258</integer>\n\t\t\t<key>File Type</key><integer>1295275600</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Desktop/teach/special/nash/x2.m4v</string>\n\t\t\t<key>File Folder Count</key><integer>5</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>777</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>777</integer>\n\t\t\t<key>Name</key><string>steering-wheel-ipad-1400</string>\n\t\t\t<key>Kind</key><string>QuickTime movie file</string>\n\t\t\t<key>Size</key><integer>16673069</integer>\n\t\t\t<key>Total Time</key><integer>86720</integer>\n\t\t\t<key>Date Modified</key><date>2010-08-16T20:36:53Z</date>\n\t\t\t<key>Date Added</key><date>2010-04-21T17:37:17Z</date>\n\t\t\t<key>Bit Rate</key><integer>122</integer>\n\t\t\t<key>Play Count</key><integer>13</integer>\n\t\t\t<key>Play Date</key><integer>3474362492</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-02-04T17:41:32Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>B2289117ABE0CA2A</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>640</integer>\n\t\t\t<key>Video Height</key><integer>480</integer>\n\t\t\t<key>File Type</key><integer>1299148630</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Desktop/publish/media/2010/steering-wheel-ipad-1400.mov</string>\n\t\t\t<key>File Folder Count</key><integer>5</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>779</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>779</integer>\n\t\t\t<key>Name</key><string>Misty</string>\n\t\t\t<key>Artist</key><string>David Osborne</string>\n\t\t\t<key>Album</key><string>Moonlight And Love Songs</string>\n\t\t\t<key>Genre</key><string>Classical</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4988454</integer>\n\t\t\t<key>Total Time</key><integer>249312</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>1</integer>\n\t\t\t<key>Track Count</key><integer>14</integer>\n\t\t\t<key>Date Modified</key><date>2010-03-22T02:49:02Z</date>\n\t\t\t<key>Date Added</key><date>2010-04-22T11:09:30Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>302</integer>\n\t\t\t<key>Play Date</key><integer>3502702412</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-12-29T17:53:32Z</date>\n\t\t\t<key>Skip Count</key><integer>3</integer>\n\t\t\t<key>Skip Date</key><date>2014-04-19T03:15:14Z</date>\n\t\t\t<key>Normalization</key><integer>1236</integer>\n\t\t\t<key>Persistent ID</key><string>63FA72AAB79FADC7</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Music/albums/Moonlight/01%20Misty.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>3</integer>\n\t\t\t<key>Library Folder Count</key><integer>2</integer>\n\t\t</dict>\n\t\t<key>781</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>781</integer>\n\t\t\t<key>Name</key><string>My Funny Valentine</string>\n\t\t\t<key>Artist</key><string>David Osborne</string>\n\t\t\t<key>Album</key><string>Moonlight And Love Songs</string>\n\t\t\t<key>Genre</key><string>Classical</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4719928</integer>\n\t\t\t<key>Total Time</key><integer>235885</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>2</integer>\n\t\t\t<key>Track Count</key><integer>14</integer>\n\t\t\t<key>Date Modified</key><date>2010-03-22T02:49:28Z</date>\n\t\t\t<key>Date Added</key><date>2010-04-22T11:09:30Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>301</integer>\n\t\t\t<key>Play Date</key><integer>3502702648</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-12-29T17:57:28Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2013-08-30T17:19:41Z</date>\n\t\t\t<key>Normalization</key><integer>1271</integer>\n\t\t\t<key>Persistent ID</key><string>2A019632F72B3E7C</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Music/albums/Moonlight/02%20My%20Funny%20Valentine.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>3</integer>\n\t\t\t<key>Library Folder Count</key><integer>2</integer>\n\t\t</dict>\n\t\t<key>783</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>783</integer>\n\t\t\t<key>Name</key><string>Since I Don't Have You</string>\n\t\t\t<key>Artist</key><string>David Osborne</string>\n\t\t\t<key>Album</key><string>Moonlight And Love Songs</string>\n\t\t\t<key>Genre</key><string>Classical</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5039149</integer>\n\t\t\t<key>Total Time</key><integer>251846</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>3</integer>\n\t\t\t<key>Track Count</key><integer>14</integer>\n\t\t\t<key>Date Modified</key><date>2010-03-22T02:49:52Z</date>\n\t\t\t<key>Date Added</key><date>2010-04-22T11:09:30Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>288</integer>\n\t\t\t<key>Play Date</key><integer>3502705727</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-12-29T18:48:47Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2013-08-30T17:19:56Z</date>\n\t\t\t<key>Normalization</key><integer>1526</integer>\n\t\t\t<key>Persistent ID</key><string>5571112CEB62967F</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Music/albums/Moonlight/03%20Since%20I%20Don't%20Have%20You.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>3</integer>\n\t\t\t<key>Library Folder Count</key><integer>2</integer>\n\t\t</dict>\n\t\t<key>785</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>785</integer>\n\t\t\t<key>Name</key><string>Tenderly</string>\n\t\t\t<key>Artist</key><string>David Osborne</string>\n\t\t\t<key>Album</key><string>Moonlight And Love Songs</string>\n\t\t\t<key>Genre</key><string>Classical</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4550122</integer>\n\t\t\t<key>Total Time</key><integer>227395</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>4</integer>\n\t\t\t<key>Track Count</key><integer>14</integer>\n\t\t\t<key>Date Modified</key><date>2010-03-22T02:50:12Z</date>\n\t\t\t<key>Date Added</key><date>2010-04-22T11:09:30Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>284</integer>\n\t\t\t<key>Play Date</key><integer>3502705954</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-12-29T18:52:34Z</date>\n\t\t\t<key>Normalization</key><integer>1228</integer>\n\t\t\t<key>Persistent ID</key><string>51530ECF30B5AE4F</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Music/albums/Moonlight/04%20Tenderly.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>3</integer>\n\t\t\t<key>Library Folder Count</key><integer>2</integer>\n\t\t</dict>\n\t\t<key>787</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>787</integer>\n\t\t\t<key>Name</key><string>When I Fall In Love</string>\n\t\t\t<key>Artist</key><string>David Osborne</string>\n\t\t\t<key>Album</key><string>Moonlight And Love Songs</string>\n\t\t\t<key>Genre</key><string>Classical</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3757578</integer>\n\t\t\t<key>Total Time</key><integer>187768</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>5</integer>\n\t\t\t<key>Track Count</key><integer>14</integer>\n\t\t\t<key>Date Modified</key><date>2010-03-22T02:50:28Z</date>\n\t\t\t<key>Date Added</key><date>2010-04-22T11:09:30Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>281</integer>\n\t\t\t<key>Play Date</key><integer>3502707632</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-12-29T19:20:32Z</date>\n\t\t\t<key>Normalization</key><integer>1240</integer>\n\t\t\t<key>Persistent ID</key><string>47A3FCE104CB5B48</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Music/albums/Moonlight/05%20When%20I%20Fall%20In%20Love.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>3</integer>\n\t\t\t<key>Library Folder Count</key><integer>2</integer>\n\t\t</dict>\n\t\t<key>789</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>789</integer>\n\t\t\t<key>Name</key><string>Unforgettable</string>\n\t\t\t<key>Artist</key><string>David Osborne</string>\n\t\t\t<key>Album</key><string>Moonlight And Love Songs</string>\n\t\t\t<key>Genre</key><string>Classical</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5460756</integer>\n\t\t\t<key>Total Time</key><integer>272927</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>6</integer>\n\t\t\t<key>Track Count</key><integer>14</integer>\n\t\t\t<key>Date Modified</key><date>2010-03-22T02:50:50Z</date>\n\t\t\t<key>Date Added</key><date>2010-04-22T11:09:30Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>280</integer>\n\t\t\t<key>Play Date</key><integer>3502891210</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-12-31T22:20:10Z</date>\n\t\t\t<key>Normalization</key><integer>1245</integer>\n\t\t\t<key>Persistent ID</key><string>1F6E415BC7F8FEC9</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Music/albums/Moonlight/06%20Unforgettable.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>3</integer>\n\t\t\t<key>Library Folder Count</key><integer>2</integer>\n\t\t</dict>\n\t\t<key>791</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>791</integer>\n\t\t\t<key>Name</key><string>The Way You Look Tonight</string>\n\t\t\t<key>Artist</key><string>David Osborne</string>\n\t\t\t<key>Album</key><string>Moonlight And Love Songs</string>\n\t\t\t<key>Genre</key><string>Classical</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4946677</integer>\n\t\t\t<key>Total Time</key><integer>247222</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>7</integer>\n\t\t\t<key>Track Count</key><integer>14</integer>\n\t\t\t<key>Date Modified</key><date>2010-03-22T02:51:08Z</date>\n\t\t\t<key>Date Added</key><date>2010-04-22T11:09:30Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>277</integer>\n\t\t\t<key>Play Date</key><integer>3502814550</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-12-31T01:02:30Z</date>\n\t\t\t<key>Normalization</key><integer>1236</integer>\n\t\t\t<key>Sort Name</key><string>Way You Look Tonight</string>\n\t\t\t<key>Persistent ID</key><string>EB64D7C8EAA3D2AE</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Music/albums/Moonlight/07%20The%20Way%20You%20Look%20Tonight.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>3</integer>\n\t\t\t<key>Library Folder Count</key><integer>2</integer>\n\t\t</dict>\n\t\t<key>793</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>793</integer>\n\t\t\t<key>Name</key><string>I've Grown Accustomed To Your Face</string>\n\t\t\t<key>Artist</key><string>David Osborne</string>\n\t\t\t<key>Album</key><string>Moonlight And Love Songs</string>\n\t\t\t<key>Genre</key><string>Classical</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>2962948</integer>\n\t\t\t<key>Total Time</key><integer>148035</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>8</integer>\n\t\t\t<key>Track Count</key><integer>14</integer>\n\t\t\t<key>Date Modified</key><date>2010-03-22T02:51:20Z</date>\n\t\t\t<key>Date Added</key><date>2010-04-22T11:09:30Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>280</integer>\n\t\t\t<key>Play Date</key><integer>3502708300</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-12-29T19:31:40Z</date>\n\t\t\t<key>Normalization</key><integer>1270</integer>\n\t\t\t<key>Persistent ID</key><string>D12BA1831DE7F885</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Music/albums/Moonlight/08%20I've%20Grown%20Accustomed%20To%20Your%20Face.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>3</integer>\n\t\t\t<key>Library Folder Count</key><integer>2</integer>\n\t\t</dict>\n\t\t<key>795</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>795</integer>\n\t\t\t<key>Name</key><string>Smoke Gets In Your Eyes</string>\n\t\t\t<key>Artist</key><string>David Osborne</string>\n\t\t\t<key>Album</key><string>Moonlight And Love Songs</string>\n\t\t\t<key>Genre</key><string>Classical</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3972309</integer>\n\t\t\t<key>Total Time</key><integer>198504</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>9</integer>\n\t\t\t<key>Track Count</key><integer>14</integer>\n\t\t\t<key>Date Modified</key><date>2010-03-22T02:51:34Z</date>\n\t\t\t<key>Date Added</key><date>2010-04-22T11:09:30Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>277</integer>\n\t\t\t<key>Play Date</key><integer>3502884760</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-12-31T20:32:40Z</date>\n\t\t\t<key>Normalization</key><integer>1590</integer>\n\t\t\t<key>Persistent ID</key><string>D64E4275F7620258</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Music/albums/Moonlight/09%20Smoke%20Gets%20In%20Your%20Eyes.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>3</integer>\n\t\t\t<key>Library Folder Count</key><integer>2</integer>\n\t\t</dict>\n\t\t<key>797</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>797</integer>\n\t\t\t<key>Name</key><string>Fly Me To The Moon</string>\n\t\t\t<key>Artist</key><string>David Osborne</string>\n\t\t\t<key>Album</key><string>Moonlight And Love Songs</string>\n\t\t\t<key>Genre</key><string>Classical</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3653088</integer>\n\t\t\t<key>Total Time</key><integer>182543</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>10</integer>\n\t\t\t<key>Track Count</key><integer>14</integer>\n\t\t\t<key>Date Modified</key><date>2010-03-22T02:51:46Z</date>\n\t\t\t<key>Date Added</key><date>2010-04-22T11:09:30Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>275</integer>\n\t\t\t<key>Play Date</key><integer>3502731260</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-12-30T01:54:20Z</date>\n\t\t\t<key>Normalization</key><integer>1152</integer>\n\t\t\t<key>Persistent ID</key><string>A03FC6024E87B87B</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Music/albums/Moonlight/10%20Fly%20Me%20To%20The%20Moon.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>3</integer>\n\t\t\t<key>Library Folder Count</key><integer>2</integer>\n\t\t</dict>\n\t\t<key>799</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>799</integer>\n\t\t\t<key>Name</key><string>Unchained Melody</string>\n\t\t\t<key>Artist</key><string>David Osborne</string>\n\t\t\t<key>Album</key><string>Moonlight And Love Songs</string>\n\t\t\t<key>Genre</key><string>Classical</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5189609</integer>\n\t\t\t<key>Total Time</key><integer>259369</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>11</integer>\n\t\t\t<key>Track Count</key><integer>14</integer>\n\t\t\t<key>Date Modified</key><date>2010-03-22T02:52:06Z</date>\n\t\t\t<key>Date Added</key><date>2010-04-22T11:09:30Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>265</integer>\n\t\t\t<key>Play Date</key><integer>3502731519</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-12-30T01:58:39Z</date>\n\t\t\t<key>Normalization</key><integer>1286</integer>\n\t\t\t<key>Persistent ID</key><string>0A9D507FFE1FF7F5</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Music/albums/Moonlight/11%20Unchained%20Melody.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>3</integer>\n\t\t\t<key>Library Folder Count</key><integer>2</integer>\n\t\t</dict>\n\t\t<key>801</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>801</integer>\n\t\t\t<key>Name</key><string>These Foolish Things Remind Me Of You</string>\n\t\t\t<key>Artist</key><string>David Osborne</string>\n\t\t\t<key>Album</key><string>Moonlight And Love Songs</string>\n\t\t\t<key>Genre</key><string>Classical</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3696471</integer>\n\t\t\t<key>Total Time</key><integer>184711</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>12</integer>\n\t\t\t<key>Track Count</key><integer>14</integer>\n\t\t\t<key>Date Modified</key><date>2010-03-22T02:54:04Z</date>\n\t\t\t<key>Date Added</key><date>2010-04-22T11:09:30Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>267</integer>\n\t\t\t<key>Play Date</key><integer>3502731704</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-12-30T02:01:44Z</date>\n\t\t\t<key>Normalization</key><integer>1236</integer>\n\t\t\t<key>Persistent ID</key><string>58145C5B70CC20BF</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Music/albums/Moonlight/12%20These%20Foolish%20Things%20Remind%20Me%20Of%20You.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>3</integer>\n\t\t\t<key>Library Folder Count</key><integer>2</integer>\n\t\t</dict>\n\t\t<key>803</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>803</integer>\n\t\t\t<key>Name</key><string>La Vie En Rose</string>\n\t\t\t<key>Artist</key><string>David Osborne</string>\n\t\t\t<key>Album</key><string>Moonlight And Love Songs</string>\n\t\t\t<key>Genre</key><string>Classical</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5537558</integer>\n\t\t\t<key>Total Time</key><integer>276767</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>13</integer>\n\t\t\t<key>Track Count</key><integer>14</integer>\n\t\t\t<key>Date Modified</key><date>2010-03-22T02:54:20Z</date>\n\t\t\t<key>Date Added</key><date>2010-04-22T11:09:30Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>259</integer>\n\t\t\t<key>Play Date</key><integer>3502731981</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-12-30T02:06:21Z</date>\n\t\t\t<key>Normalization</key><integer>1255</integer>\n\t\t\t<key>Persistent ID</key><string>B0930E7ABC4BB695</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Music/albums/Moonlight/13%20La%20Vie%20En%20Rose.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>3</integer>\n\t\t\t<key>Library Folder Count</key><integer>2</integer>\n\t\t</dict>\n\t\t<key>805</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>805</integer>\n\t\t\t<key>Name</key><string>As Time Goes By</string>\n\t\t\t<key>Artist</key><string>David Osborne</string>\n\t\t\t<key>Album</key><string>Moonlight And Love Songs</string>\n\t\t\t<key>Genre</key><string>Classical</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5161918</integer>\n\t\t\t<key>Total Time</key><integer>257985</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>14</integer>\n\t\t\t<key>Track Count</key><integer>14</integer>\n\t\t\t<key>Date Modified</key><date>2010-03-22T02:54:36Z</date>\n\t\t\t<key>Date Added</key><date>2010-04-22T11:09:30Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>290</integer>\n\t\t\t<key>Play Date</key><integer>3518868768</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-07-04T19:32:48Z</date>\n\t\t\t<key>Normalization</key><integer>1273</integer>\n\t\t\t<key>Persistent ID</key><string>A6B8E8FCD26506AA</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Music/albums/Moonlight/14%20As%20Time%20Goes%20By.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>3</integer>\n\t\t\t<key>Library Folder Count</key><integer>2</integer>\n\t\t</dict>\n\t\t<key>817</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>817</integer>\n\t\t\t<key>Name</key><string>marissa-excerpt-1400</string>\n\t\t\t<key>Kind</key><string>QuickTime movie file</string>\n\t\t\t<key>Size</key><integer>14146281</integer>\n\t\t\t<key>Total Time</key><integer>127062</integer>\n\t\t\t<key>Date Modified</key><date>2010-08-16T20:34:36Z</date>\n\t\t\t<key>Date Added</key><date>2010-12-08T21:20:16Z</date>\n\t\t\t<key>Bit Rate</key><integer>95</integer>\n\t\t\t<key>Play Count</key><integer>2</integer>\n\t\t\t<key>Play Date</key><integer>3457182833</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-07-20T20:33:53Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>EADE74BBD7546249</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>640</integer>\n\t\t\t<key>Video Height</key><integer>480</integer>\n\t\t\t<key>File Type</key><integer>1299148630</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Desktop/publish/media/2008/marissa-excerpt-1400.mov</string>\n\t\t\t<key>File Folder Count</key><integer>5</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>821</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>821</integer>\n\t\t\t<key>Name</key><string>Pilot</string>\n\t\t\t<key>Artist</key><string>Fairly Legal</string>\n\t\t\t<key>Album Artist</key><string>Fairly Legal</string>\n\t\t\t<key>Album</key><string>Fairly Legal, Season 1</string>\n\t\t\t<key>Genre</key><string>Drama</string>\n\t\t\t<key>Kind</key><string>Protected MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>929081228</integer>\n\t\t\t<key>Total Time</key><integer>3847006</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>1</integer>\n\t\t\t<key>Year</key><integer>2011</integer>\n\t\t\t<key>Date Modified</key><date>2015-01-04T18:19:13Z</date>\n\t\t\t<key>Date Added</key><date>2011-02-15T11:54:06Z</date>\n\t\t\t<key>Bit Rate</key><integer>122</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Release Date</key><date>2011-01-20T08:00:00Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Series</key><string>Fairly Legal</string>\n\t\t\t<key>Season</key><integer>1</integer>\n\t\t\t<key>Episode</key><string>CJG01</string>\n\t\t\t<key>Episode Order</key><integer>1</integer>\n\t\t\t<key>Sort Album</key><string>Fairly Legal, Season 1</string>\n\t\t\t<key>Persistent ID</key><string>A98AB8D02586BE0C</string>\n\t\t\t<key>Content Rating</key><string>us-tv|TV-PG|400|</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Protected</key><true/>\n\t\t\t<key>Purchased</key><true/>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>640</integer>\n\t\t\t<key>Video Height</key><integer>480</integer>\n\t\t\t<key>TV Show</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/TV%20Shows/Fairly%20Legal/01%20Pilot.m4v</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>827</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>827</integer>\n\t\t\t<key>Name</key><string>02-1995-timbl-800</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>16905007</integer>\n\t\t\t<key>Total Time</key><integer>82449</integer>\n\t\t\t<key>Date Modified</key><date>2011-04-07T02:55:58Z</date>\n\t\t\t<key>Date Added</key><date>2011-04-07T02:55:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>129</integer>\n\t\t\t<key>Play Count</key><integer>2</integer>\n\t\t\t<key>Play Date</key><integer>3385015693</integer>\n\t\t\t<key>Play Date UTC</key><date>2011-04-07T14:08:13Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>2D0093414224D62E</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>480</integer>\n\t\t\t<key>Video Height</key><integer>360</integer>\n\t\t\t<key>File Type</key><integer>1295275552</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Movies/02-1995-timbl-800.m4v</string>\n\t\t\t<key>File Folder Count</key><integer>3</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>829</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>829</integer>\n\t\t\t<key>Name</key><string>03-1997-larry-smarr-mini</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>34485203</integer>\n\t\t\t<key>Total Time</key><integer>171964</integer>\n\t\t\t<key>Date Modified</key><date>2011-04-07T02:57:21Z</date>\n\t\t\t<key>Date Added</key><date>2011-04-07T02:57:21Z</date>\n\t\t\t<key>Bit Rate</key><integer>102</integer>\n\t\t\t<key>Play Count</key><integer>2</integer>\n\t\t\t<key>Play Date</key><integer>3385015868</integer>\n\t\t\t<key>Play Date UTC</key><date>2011-04-07T14:11:08Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>C224160C1E0E3DD3</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>640</integer>\n\t\t\t<key>Video Height</key><integer>480</integer>\n\t\t\t<key>File Type</key><integer>1295275552</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Movies/03-1997-larry-smarr-mini.m4v</string>\n\t\t\t<key>File Folder Count</key><integer>3</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>831</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>831</integer>\n\t\t\t<key>Name</key><string>04-2010-nsfnet-dvh-1400-short</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>34667870</integer>\n\t\t\t<key>Total Time</key><integer>169537</integer>\n\t\t\t<key>Date Modified</key><date>2011-04-07T03:00:45Z</date>\n\t\t\t<key>Date Added</key><date>2011-04-07T03:00:45Z</date>\n\t\t\t<key>Bit Rate</key><integer>125</integer>\n\t\t\t<key>Play Count</key><integer>2</integer>\n\t\t\t<key>Play Date</key><integer>3385016042</integer>\n\t\t\t<key>Play Date UTC</key><date>2011-04-07T14:14:02Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>59C4478F66BE12EA</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>640</integer>\n\t\t\t<key>Video Height</key><integer>480</integer>\n\t\t\t<key>File Type</key><integer>1295275552</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Movies/04-2010-nsfnet-dvh-1400-short.m4v</string>\n\t\t\t<key>File Folder Count</key><integer>3</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>833</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>833</integer>\n\t\t\t<key>Name</key><string>05-1999-cailliau-1400CAPTIONED-short</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>24121372</integer>\n\t\t\t<key>Total Time</key><integer>119255</integer>\n\t\t\t<key>Date Modified</key><date>2011-04-07T03:02:58Z</date>\n\t\t\t<key>Date Added</key><date>2011-04-07T03:02:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>109</integer>\n\t\t\t<key>Play Count</key><integer>2</integer>\n\t\t\t<key>Play Date</key><integer>3385016167</integer>\n\t\t\t<key>Play Date UTC</key><date>2011-04-07T14:16:07Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>B6A4C492BC8159C0</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>640</integer>\n\t\t\t<key>Video Height</key><integer>480</integer>\n\t\t\t<key>File Type</key><integer>1295275552</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Movies/05-1999-cailliau-1400CAPTIONED-short.m4v</string>\n\t\t\t<key>File Folder Count</key><integer>3</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>835</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>835</integer>\n\t\t\t<key>Name</key><string>06-2006-kunz-1400CAPTIONED-short</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>29042609</integer>\n\t\t\t<key>Total Time</key><integer>142804</integer>\n\t\t\t<key>Date Modified</key><date>2011-04-07T03:09:14Z</date>\n\t\t\t<key>Date Added</key><date>2011-04-07T03:09:15Z</date>\n\t\t\t<key>Bit Rate</key><integer>117</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3384977739</integer>\n\t\t\t<key>Play Date UTC</key><date>2011-04-07T03:35:39Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>FFE97D632179A9E0</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>640</integer>\n\t\t\t<key>Video Height</key><integer>480</integer>\n\t\t\t<key>File Type</key><integer>1295275552</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Movies/06-2006-kunz-1400CAPTIONED-short.m4v</string>\n\t\t\t<key>File Folder Count</key><integer>3</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>837</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>837</integer>\n\t\t\t<key>Name</key><string>07-2008-hardin-1400CAPTIONED-short</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>39182645</integer>\n\t\t\t<key>Total Time</key><integer>191785</integer>\n\t\t\t<key>Date Modified</key><date>2011-04-07T03:12:54Z</date>\n\t\t\t<key>Date Added</key><date>2011-04-07T03:12:54Z</date>\n\t\t\t<key>Bit Rate</key><integer>126</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3385015344</integer>\n\t\t\t<key>Play Date UTC</key><date>2011-04-07T14:02:24Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>5C6B502FAF0F6184</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>640</integer>\n\t\t\t<key>Video Height</key><integer>480</integer>\n\t\t\t<key>File Type</key><integer>1295275552</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Movies/07-2008-hardin-1400CAPTIONED-short.m4v</string>\n\t\t\t<key>File Folder Count</key><integer>3</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>839</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>839</integer>\n\t\t\t<key>Name</key><string>08-1999-cailliau-1400CAPTIONED-short-II</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>10096403</integer>\n\t\t\t<key>Total Time</key><integer>49794</integer>\n\t\t\t<key>Date Modified</key><date>2011-04-07T03:13:52Z</date>\n\t\t\t<key>Date Added</key><date>2011-04-07T03:13:52Z</date>\n\t\t\t<key>Bit Rate</key><integer>108</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3385015401</integer>\n\t\t\t<key>Play Date UTC</key><date>2011-04-07T14:03:21Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>374824304B7F35AF</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>640</integer>\n\t\t\t<key>Video Height</key><integer>480</integer>\n\t\t\t<key>File Type</key><integer>1295275552</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Movies/08-1999-cailliau-1400CAPTIONED-short-II.m4v</string>\n\t\t\t<key>File Folder Count</key><integer>3</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>841</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>841</integer>\n\t\t\t<key>Name</key><string>09-2008-hardin-1400CAPTIONED-short-II</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>11191407</integer>\n\t\t\t<key>Total Time</key><integer>54720</integer>\n\t\t\t<key>Date Modified</key><date>2011-04-07T03:15:39Z</date>\n\t\t\t<key>Date Added</key><date>2011-04-07T03:15:39Z</date>\n\t\t\t<key>Bit Rate</key><integer>125</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3385015472</integer>\n\t\t\t<key>Play Date UTC</key><date>2011-04-07T14:04:32Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>0CCCF96D4D180AE3</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>640</integer>\n\t\t\t<key>Video Height</key><integer>480</integer>\n\t\t\t<key>File Type</key><integer>1295275552</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Movies/09-2008-hardin-1400CAPTIONED-short-II.m4v</string>\n\t\t\t<key>File Folder Count</key><integer>3</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>843</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>843</integer>\n\t\t\t<key>Name</key><string>10-1997-bezos-1400-short</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>22485593</integer>\n\t\t\t<key>Total Time</key><integer>109877</integer>\n\t\t\t<key>Date Modified</key><date>2011-04-07T03:17:53Z</date>\n\t\t\t<key>Date Added</key><date>2011-04-07T03:17:53Z</date>\n\t\t\t<key>Bit Rate</key><integer>126</integer>\n\t\t\t<key>Play Count</key><integer>2</integer>\n\t\t\t<key>Play Date</key><integer>3425313404</integer>\n\t\t\t<key>Play Date UTC</key><date>2012-07-16T23:56:44Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>6D98FA50FCBB1DBD</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>640</integer>\n\t\t\t<key>Video Height</key><integer>480</integer>\n\t\t\t<key>File Type</key><integer>1295275552</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Movies/10-1997-bezos-1400-short.m4v</string>\n\t\t\t<key>File Folder Count</key><integer>3</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>845</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>845</integer>\n\t\t\t<key>Name</key><string>04-LTI-And-Moodle</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>76529828</integer>\n\t\t\t<key>Total Time</key><integer>201800</integer>\n\t\t\t<key>Date Modified</key><date>2010-08-16T20:35:52Z</date>\n\t\t\t<key>Date Added</key><date>2011-04-12T14:44:49Z</date>\n\t\t\t<key>Bit Rate</key><integer>125</integer>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>00440A343624FBEF</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>960</integer>\n\t\t\t<key>Video Height</key><integer>540</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Desktop/publish/talks/chuck-talks/2011/2011-04-13-excellent/04-LTI-And-Moodle.m4v</string>\n\t\t\t<key>File Folder Count</key><integer>7</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>851</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>851</integer>\n\t\t\t<key>Name</key><string>2011-06-05-moodle-ipad</string>\n\t\t\t<key>Kind</key><string>QuickTime movie file</string>\n\t\t\t<key>Size</key><integer>67673426</integer>\n\t\t\t<key>Total Time</key><integer>50693</integer>\n\t\t\t<key>Date Modified</key><date>2011-06-06T01:20:36Z</date>\n\t\t\t<key>Date Added</key><date>2011-06-11T13:07:52Z</date>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3436852730</integer>\n\t\t\t<key>Play Date UTC</key><date>2012-11-27T14:18:50Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>080F074DBA9AAA2E</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>1280</integer>\n\t\t\t<key>Video Height</key><integer>720</integer>\n\t\t\t<key>File Type</key><integer>1299148630</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Desktop/publish/media/2011/2011-06-05-moodle-ipad.mov</string>\n\t\t\t<key>File Folder Count</key><integer>5</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>855</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>855</integer>\n\t\t\t<key>Name</key><string>Mary_poppins</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>1619661503</integer>\n\t\t\t<key>Total Time</key><integer>7782206</integer>\n\t\t\t<key>Date Modified</key><date>2011-09-25T01:37:50Z</date>\n\t\t\t<key>Date Added</key><date>2011-09-26T05:08:14Z</date>\n\t\t\t<key>Bit Rate</key><integer>156</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3399844118</integer>\n\t\t\t<key>Play Date UTC</key><date>2011-09-26T05:08:38Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>0D2FCCA4F5CBCF07</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>672</integer>\n\t\t\t<key>Video Height</key><integer>478</integer>\n\t\t\t<key>Location</key><string>file://localhost/Volumes/TOSHIBA/Mary_poppins.m4v</string>\n\t\t\t<key>File Folder Count</key><integer>-1</integer>\n\t\t\t<key>Library Folder Count</key><integer>-1</integer>\n\t\t</dict>\n\t\t<key>857</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>857</integer>\n\t\t\t<key>Name</key><string>space cowboy</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>980167</integer>\n\t\t\t<key>Total Time</key><integer>48901</integer>\n\t\t\t<key>Year</key><integer>2008</integer>\n\t\t\t<key>BPM</key><integer>84</integer>\n\t\t\t<key>Date Modified</key><date>2011-09-26T16:14:40Z</date>\n\t\t\t<key>Date Added</key><date>2011-09-26T16:14:39Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>2</integer>\n\t\t\t<key>Play Date</key><integer>3416573961</integer>\n\t\t\t<key>Play Date UTC</key><date>2012-04-06T20:19:21Z</date>\n\t\t\t<key>Normalization</key><integer>1804</integer>\n\t\t\t<key>Persistent ID</key><string>5A8A14DB9666D67C</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Unknown%20Artist/Unknown%20Album/space%20cowboy.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>859</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>859</integer>\n\t\t\t<key>Name</key><string>GeorgeTonSupercomputing</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>69318015</integer>\n\t\t\t<key>Total Time</key><integer>181347</integer>\n\t\t\t<key>Date Modified</key><date>2011-10-06T19:23:44Z</date>\n\t\t\t<key>Date Added</key><date>2011-10-07T00:28:13Z</date>\n\t\t\t<key>Bit Rate</key><integer>120</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3400777708</integer>\n\t\t\t<key>Play Date UTC</key><date>2011-10-07T00:28:28Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>405DDBE13094F904</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>720</integer>\n\t\t\t<key>Video Height</key><integer>540</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Downloads/GeorgeTonSupercomputing.m4v</string>\n\t\t\t<key>File Folder Count</key><integer>2</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>861</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>861</integer>\n\t\t\t<key>Name</key><string>2011-10-08-smarr-05-1400</string>\n\t\t\t<key>Kind</key><string>QuickTime movie file</string>\n\t\t\t<key>Size</key><integer>132547654</integer>\n\t\t\t<key>Total Time</key><integer>690057</integer>\n\t\t\t<key>Date Modified</key><date>2011-10-08T17:35:21Z</date>\n\t\t\t<key>Date Added</key><date>2011-10-11T15:34:44Z</date>\n\t\t\t<key>Bit Rate</key><integer>114</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3401247494</integer>\n\t\t\t<key>Play Date UTC</key><date>2011-10-12T10:58:14Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>6299A2896CB66726</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>640</integer>\n\t\t\t<key>Video Height</key><integer>480</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Desktop/publish/media/2011/2011-10-08-smarr-05-1400.mov</string>\n\t\t\t<key>File Folder Count</key><integer>5</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>867</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>867</integer>\n\t\t\t<key>Name</key><string>Jobs2a</string>\n\t\t\t<key>Artist</key><string>csev</string>\n\t\t\t<key>Composer</key><string>csev</string>\n\t\t\t<key>Album</key><string>csev's Album</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4332691</integer>\n\t\t\t<key>Total Time</key><integer>541074</integer>\n\t\t\t<key>Year</key><integer>2012</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2012-01-21T17:45:30Z</date>\n\t\t\t<key>Date Added</key><date>2012-01-22T03:07:57Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Normalization</key><integer>1368</integer>\n\t\t\t<key>Persistent ID</key><string>7E5C60CFE0150783</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Desktop/ieee/columns/2012-01-Jobs/2012-01-IEEE-Steve.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>5</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>873</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>873</integer>\n\t\t\t<key>Name</key><string>hte postal service - the impor</string>\n\t\t\t<key>Artist</key><string>The Postal Service</string>\n\t\t\t<key>Album</key><string>unreleased demo</string>\n\t\t\t<key>Genre</key><string>Electronic</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3879312</integer>\n\t\t\t<key>Total Time</key><integer>193959</integer>\n\t\t\t<key>Year</key><integer>2006</integer>\n\t\t\t<key>Date Modified</key><date>2012-02-19T06:18:14Z</date>\n\t\t\t<key>Date Added</key><date>2012-02-19T12:18:35Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Comments</key><string>Comment</string>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2012-04-05T04:19:46Z</date>\n\t\t\t<key>Sort Artist</key><string>Postal Service</string>\n\t\t\t<key>Persistent ID</key><string>85C537CB24DC3AFE</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/postal%2520service%2520-%2520importance%2520of%2520being.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>1</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>877</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>877</integer>\n\t\t\t<key>Name</key><string>2012-06-Bletchley-IEEE</string>\n\t\t\t<key>Kind</key><string>QuickTime movie file</string>\n\t\t\t<key>Size</key><integer>276854286</integer>\n\t\t\t<key>Total Time</key><integer>1490488</integer>\n\t\t\t<key>Date Modified</key><date>2012-05-24T17:28:38Z</date>\n\t\t\t<key>Date Added</key><date>2012-06-11T11:18:28Z</date>\n\t\t\t<key>Bit Rate</key><integer>114</integer>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>35D5EA0419D09F91</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>960</integer>\n\t\t\t<key>Video Height</key><integer>540</integer>\n\t\t\t<key>File Type</key><integer>1299148630</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Desktop/publish/media/2012/2012-06-Bletchley-IEEE.mov</string>\n\t\t\t<key>File Folder Count</key><integer>5</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>879</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>879</integer>\n\t\t\t<key>Name</key><string>2012-05-The-Best-Taco-In-The-World</string>\n\t\t\t<key>Kind</key><string>QuickTime movie file</string>\n\t\t\t<key>Size</key><integer>26753540</integer>\n\t\t\t<key>Total Time</key><integer>142608</integer>\n\t\t\t<key>Date Modified</key><date>2012-05-22T14:32:14Z</date>\n\t\t\t<key>Date Added</key><date>2012-06-11T11:18:31Z</date>\n\t\t\t<key>Bit Rate</key><integer>107</integer>\n\t\t\t<key>Play Count</key><integer>3</integer>\n\t\t\t<key>Play Date</key><integer>3442342656</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-01-30T03:17:36Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>75F48759FDDDC216</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>960</integer>\n\t\t\t<key>Video Height</key><integer>540</integer>\n\t\t\t<key>File Type</key><integer>1299148630</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Desktop/publish/media/2012/2012-05-The-Best-Taco-In-The-World.mov</string>\n\t\t\t<key>File Folder Count</key><integer>5</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>885</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>885</integer>\n\t\t\t<key>Name</key><string>2012-10-30-Andorra-Video</string>\n\t\t\t<key>Kind</key><string>QuickTime movie file</string>\n\t\t\t<key>Size</key><integer>3587383</integer>\n\t\t\t<key>Total Time</key><integer>37130</integer>\n\t\t\t<key>Date Modified</key><date>2012-10-30T17:53:20Z</date>\n\t\t\t<key>Date Added</key><date>2012-10-30T22:59:27Z</date>\n\t\t\t<key>Bit Rate</key><integer>94</integer>\n\t\t\t<key>Play Count</key><integer>3</integer>\n\t\t\t<key>Play Date</key><integer>3488657196</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-07-20T03:26:36Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>E43B3467D29CEA57</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>512</integer>\n\t\t\t<key>Video Height</key><integer>288</integer>\n\t\t\t<key>File Type</key><integer>1299148630</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Desktop/publish/media/2012/2012-10-30-Andorra-Video.mov</string>\n\t\t\t<key>File Folder Count</key><integer>5</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>887</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>887</integer>\n\t\t\t<key>Name</key><string>Winter Wonderland</string>\n\t\t\t<key>Artist</key><string>Bing Crosby</string>\n\t\t\t<key>Composer</key><string>Frank Siatra &#38; Bing Crosby</string>\n\t\t\t<key>Album</key><string>Seasons Greatings</string>\n\t\t\t<key>Genre</key><string>Holiday</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>2897142</integer>\n\t\t\t<key>Total Time</key><integer>144744</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>1</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2007</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:06:56Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:06:42Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>163</integer>\n\t\t\t<key>Play Date</key><integer>3530008410</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-11-10T18:53:30Z</date>\n\t\t\t<key>Normalization</key><integer>1658</integer>\n\t\t\t<key>Persistent ID</key><string>790FC8E37767D7AA</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Bing%20Crosby/Seasons%20Greatings/01%20Winter%20Wonderland.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>889</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>889</integer>\n\t\t\t<key>Name</key><string>Jingle Bells</string>\n\t\t\t<key>Artist</key><string>Frank Sinatra</string>\n\t\t\t<key>Composer</key><string>Frank Siatra &#38; Bing Crosby</string>\n\t\t\t<key>Album</key><string>Seasons Greatings</string>\n\t\t\t<key>Genre</key><string>Holiday</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>2437384</integer>\n\t\t\t<key>Total Time</key><integer>121756</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>2</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>1957</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:07:08Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:06:57Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>271</integer>\n\t\t\t<key>Play Date</key><integer>3495815263</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-10-10T23:47:43Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2013-11-27T19:01:10Z</date>\n\t\t\t<key>Normalization</key><integer>1797</integer>\n\t\t\t<key>Persistent ID</key><string>943A913D9CD9664F</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Frank%20Sinatra/Seasons%20Greatings/02%20Jingle%20Bells.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>891</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>891</integer>\n\t\t\t<key>Name</key><string>White Christmas</string>\n\t\t\t<key>Artist</key><string>Bing Crosby</string>\n\t\t\t<key>Composer</key><string>Frank Siatra &#38; Bing Crosby</string>\n\t\t\t<key>Album</key><string>Seasons Greatings</string>\n\t\t\t<key>Genre</key><string>Holiday</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>1914936</integer>\n\t\t\t<key>Total Time</key><integer>95634</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>3</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2007</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:07:18Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:07:10Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>158</integer>\n\t\t\t<key>Play Date</key><integer>3501748756</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-12-18T16:59:16Z</date>\n\t\t\t<key>Normalization</key><integer>1076</integer>\n\t\t\t<key>Persistent ID</key><string>CC828327804C14BB</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Bing%20Crosby/Seasons%20Greatings/03%20White%20Christmas.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>893</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>893</integer>\n\t\t\t<key>Name</key><string>The Christmas Song</string>\n\t\t\t<key>Artist</key><string>Frank Sinatra</string>\n\t\t\t<key>Composer</key><string>Frank Siatra &#38; Bing Crosby</string>\n\t\t\t<key>Album</key><string>Seasons Greatings</string>\n\t\t\t<key>Genre</key><string>Holiday</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4194908</integer>\n\t\t\t<key>Total Time</key><integer>209632</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>4</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2007</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:07:37Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:07:19Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>272</integer>\n\t\t\t<key>Play Date</key><integer>3503058751</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-01-02T20:52:31Z</date>\n\t\t\t<key>Skip Count</key><integer>2</integer>\n\t\t\t<key>Skip Date</key><date>2013-07-01T12:05:53Z</date>\n\t\t\t<key>Normalization</key><integer>1004</integer>\n\t\t\t<key>Sort Name</key><string>Christmas Song</string>\n\t\t\t<key>Persistent ID</key><string>BFE8770720032426</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Frank%20Sinatra/Seasons%20Greatings/04%20The%20Christmas%20Song.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>895</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>895</integer>\n\t\t\t<key>Name</key><string>Little Drummer Boy</string>\n\t\t\t<key>Artist</key><string>Bing Crosby</string>\n\t\t\t<key>Composer</key><string>Frank Siatra &#38; Bing Crosby</string>\n\t\t\t<key>Album</key><string>Seasons Greatings</string>\n\t\t\t<key>Genre</key><string>Holiday</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3568490</integer>\n\t\t\t<key>Total Time</key><integer>178311</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>5</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>1962</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:07:52Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:07:38Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>154</integer>\n\t\t\t<key>Play Date</key><integer>3503046272</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-01-02T17:24:32Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2013-07-30T03:22:26Z</date>\n\t\t\t<key>Normalization</key><integer>1011</integer>\n\t\t\t<key>Persistent ID</key><string>15F8671BEF8A869D</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Bing%20Crosby/Seasons%20Greatings/05%20Little%20Drummer%20Boy.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>897</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>897</integer>\n\t\t\t<key>Name</key><string>Silent Night</string>\n\t\t\t<key>Artist</key><string>Frank Sinatra</string>\n\t\t\t<key>Composer</key><string>Frank Siatra &#38; Bing Crosby</string>\n\t\t\t<key>Album</key><string>Seasons Greatings</string>\n\t\t\t<key>Genre</key><string>Holiday</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>2983343</integer>\n\t\t\t<key>Total Time</key><integer>149054</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>6</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2007</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:08:05Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:07:55Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>257</integer>\n\t\t\t<key>Play Date</key><integer>3495815602</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-10-10T23:53:22Z</date>\n\t\t\t<key>Normalization</key><integer>841</integer>\n\t\t\t<key>Persistent ID</key><string>B362AA0F8EF9D629</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Frank%20Sinatra/Seasons%20Greatings/06%20Silent%20Night.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>899</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>899</integer>\n\t\t\t<key>Name</key><string>Let It Snow</string>\n\t\t\t<key>Artist</key><string>Bing Crosby</string>\n\t\t\t<key>Composer</key><string>Frank Siatra &#38; Bing Crosby</string>\n\t\t\t<key>Album</key><string>Seasons Greatings</string>\n\t\t\t<key>Genre</key><string>Holiday</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>2504777</integer>\n\t\t\t<key>Total Time</key><integer>125126</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>7</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2007</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:08:14Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:08:06Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>154</integer>\n\t\t\t<key>Play Date</key><integer>3501747959</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-12-18T16:45:59Z</date>\n\t\t\t<key>Normalization</key><integer>1072</integer>\n\t\t\t<key>Persistent ID</key><string>422F95CB083BA37E</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Bing%20Crosby/Seasons%20Greatings/07%20Let%20It%20Snow.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>901</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>901</integer>\n\t\t\t<key>Name</key><string>Mistletoe And Holly</string>\n\t\t\t<key>Artist</key><string>Frank Sinatra</string>\n\t\t\t<key>Composer</key><string>Frank Siatra &#38; Bing Crosby</string>\n\t\t\t<key>Album</key><string>Seasons Greatings</string>\n\t\t\t<key>Genre</key><string>Holiday</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>2772280</integer>\n\t\t\t<key>Total Time</key><integer>138501</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>8</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2007</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:08:25Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:08:15Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>257</integer>\n\t\t\t<key>Play Date</key><integer>3495815141</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-10-10T23:45:41Z</date>\n\t\t\t<key>Normalization</key><integer>1310</integer>\n\t\t\t<key>Persistent ID</key><string>8D3344562905E9C3</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Frank%20Sinatra/Seasons%20Greatings/08%20Mistletoe%20And%20Holly.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>903</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>903</integer>\n\t\t\t<key>Name</key><string>O Holy Night</string>\n\t\t\t<key>Artist</key><string>Bing Crosby</string>\n\t\t\t<key>Composer</key><string>Frank Siatra &#38; Bing Crosby</string>\n\t\t\t<key>Album</key><string>Seasons Greatings</string>\n\t\t\t<key>Genre</key><string>Holiday</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4282671</integer>\n\t\t\t<key>Total Time</key><integer>214021</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>9</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2007</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:08:40Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:08:26Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>150</integer>\n\t\t\t<key>Play Date</key><integer>3501748337</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-12-18T16:52:17Z</date>\n\t\t\t<key>Normalization</key><integer>2469</integer>\n\t\t\t<key>Persistent ID</key><string>E7A2DB8DE5F630D0</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Bing%20Crosby/Seasons%20Greatings/09%20O%20Holy%20Night.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>905</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>905</integer>\n\t\t\t<key>Name</key><string>Have Yourself A Merry Little Christmas</string>\n\t\t\t<key>Artist</key><string>Frank Sinatra</string>\n\t\t\t<key>Composer</key><string>Frank Siatra &#38; Bing Crosby</string>\n\t\t\t<key>Album</key><string>Seasons Greatings</string>\n\t\t\t<key>Genre</key><string>Holiday</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4167239</integer>\n\t\t\t<key>Total Time</key><integer>208248</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>10</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2007</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:08:55Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:08:41Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>252</integer>\n\t\t\t<key>Play Date</key><integer>3495814793</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-10-10T23:39:53Z</date>\n\t\t\t<key>Normalization</key><integer>1120</integer>\n\t\t\t<key>Persistent ID</key><string>BF1D2FCB64067EDB</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Frank%20Sinatra/Seasons%20Greatings/10%20Have%20Yourself%20A%20Merry%20Little%20Christmas.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>907</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>907</integer>\n\t\t\t<key>Name</key><string>Do You Hear What I Hear</string>\n\t\t\t<key>Artist</key><string>Bing Crosby</string>\n\t\t\t<key>Composer</key><string>Frank Siatra &#38; Bing Crosby</string>\n\t\t\t<key>Album</key><string>Seasons Greatings</string>\n\t\t\t<key>Genre</key><string>Holiday</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3296822</integer>\n\t\t\t<key>Total Time</key><integer>164728</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>11</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2007</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:09:06Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:08:55Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>155</integer>\n\t\t\t<key>Play Date</key><integer>3501748123</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-12-18T16:48:43Z</date>\n\t\t\t<key>Skip Count</key><integer>2</integer>\n\t\t\t<key>Skip Date</key><date>2013-07-01T12:47:02Z</date>\n\t\t\t<key>Normalization</key><integer>2718</integer>\n\t\t\t<key>Persistent ID</key><string>FBE7B8E169AA4DF8</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Bing%20Crosby/Seasons%20Greatings/11%20Do%20You%20Hear%20What%20I%20Hear.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>909</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>909</integer>\n\t\t\t<key>Name</key><string>I'll Be Home For Christmas</string>\n\t\t\t<key>Artist</key><string>Frank Sinatra</string>\n\t\t\t<key>Composer</key><string>Frank Siatra &#38; Bing Crosby</string>\n\t\t\t<key>Album</key><string>Seasons Greatings</string>\n\t\t\t<key>Genre</key><string>Holiday</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3819799</integer>\n\t\t\t<key>Total Time</key><integer>190876</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>12</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2007</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:09:18Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:09:06Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>249</integer>\n\t\t\t<key>Play Date</key><integer>3501663269</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-12-17T17:14:29Z</date>\n\t\t\t<key>Normalization</key><integer>1156</integer>\n\t\t\t<key>Persistent ID</key><string>F1A06CC26CF3641B</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Frank%20Sinatra/Seasons%20Greatings/12%20I'll%20Be%20Home%20For%20Christmas.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>911</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>911</integer>\n\t\t\t<key>Name</key><string>Track 01</string>\n\t\t\t<key>Artist</key><string>Kaiser Chiefs</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4102328</integer>\n\t\t\t<key>Total Time</key><integer>205008</integer>\n\t\t\t<key>Track Number</key><integer>1</integer>\n\t\t\t<key>Track Count</key><integer>15</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:13:45Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:13:27Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>2</integer>\n\t\t\t<key>Play Date</key><integer>3465115641</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-10-20T16:07:21Z</date>\n\t\t\t<key>Normalization</key><integer>11141</integer>\n\t\t\t<key>Persistent ID</key><string>0924A19522563F9F</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Unknown%20Album/01%20Track%2001.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>913</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>913</integer>\n\t\t\t<key>Name</key><string>Track 02</string>\n\t\t\t<key>Artist</key><string>Kaiser Chiefs</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5768417</integer>\n\t\t\t<key>Total Time</key><integer>288313</integer>\n\t\t\t<key>Track Number</key><integer>2</integer>\n\t\t\t<key>Track Count</key><integer>15</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T11:14:10Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:13:47Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3465206596</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-10-21T17:23:16Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2013-08-05T02:12:45Z</date>\n\t\t\t<key>Normalization</key><integer>11833</integer>\n\t\t\t<key>Persistent ID</key><string>127E6A3C8C70799C</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Unknown%20Album/02%20Track%2002%201.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>915</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>915</integer>\n\t\t\t<key>Name</key><string>Track 03</string>\n\t\t\t<key>Artist</key><string>Kaiser Chiefs</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4743372</integer>\n\t\t\t<key>Total Time</key><integer>237061</integer>\n\t\t\t<key>Track Number</key><integer>3</integer>\n\t\t\t<key>Track Count</key><integer>15</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:14:28Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:14:11Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>3</integer>\n\t\t\t<key>Play Date</key><integer>3478665276</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-03-26T11:54:36Z</date>\n\t\t\t<key>Normalization</key><integer>14683</integer>\n\t\t\t<key>Persistent ID</key><string>28D19AE188208CF7</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Unknown%20Album/03%20Track%2003.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>917</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>917</integer>\n\t\t\t<key>Name</key><string>Track 04</string>\n\t\t\t<key>Artist</key><string>Kaiser Chiefs</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3993658</integer>\n\t\t\t<key>Total Time</key><integer>199575</integer>\n\t\t\t<key>Track Number</key><integer>4</integer>\n\t\t\t<key>Track Count</key><integer>15</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:14:43Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:14:29Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>3</integer>\n\t\t\t<key>Play Date</key><integer>3508732112</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-03-09T11:48:32Z</date>\n\t\t\t<key>Normalization</key><integer>14874</integer>\n\t\t\t<key>Persistent ID</key><string>E3ACC4EE4B0B441A</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Unknown%20Album/04%20Track%2004.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>919</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>919</integer>\n\t\t\t<key>Name</key><string>Track 05</string>\n\t\t\t<key>Artist</key><string>Kaiser Chiefs</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3958132</integer>\n\t\t\t<key>Total Time</key><integer>197799</integer>\n\t\t\t<key>Track Number</key><integer>5</integer>\n\t\t\t<key>Track Count</key><integer>15</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:14:57Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:14:44Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3458313675</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-08-02T22:41:15Z</date>\n\t\t\t<key>Normalization</key><integer>5759</integer>\n\t\t\t<key>Persistent ID</key><string>8CF2F83F505537C1</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Unknown%20Album/05%20Track%2005.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>921</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>921</integer>\n\t\t\t<key>Name</key><string>Track 06</string>\n\t\t\t<key>Artist</key><string>Kaiser Chiefs</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3157217</integer>\n\t\t\t<key>Total Time</key><integer>157753</integer>\n\t\t\t<key>Track Number</key><integer>6</integer>\n\t\t\t<key>Track Count</key><integer>15</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:15:07Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:14:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>2</integer>\n\t\t\t<key>Play Date</key><integer>3494411579</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-09-24T17:52:59Z</date>\n\t\t\t<key>Normalization</key><integer>15646</integer>\n\t\t\t<key>Persistent ID</key><string>AF30E07D93F489BE</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Unknown%20Album/06%20Track%2006.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>923</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>923</integer>\n\t\t\t<key>Name</key><string>Track 07</string>\n\t\t\t<key>Artist</key><string>Kaiser Chiefs</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4086132</integer>\n\t\t\t<key>Total Time</key><integer>204199</integer>\n\t\t\t<key>Track Number</key><integer>7</integer>\n\t\t\t<key>Track Count</key><integer>15</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:15:21Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:15:08Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>3</integer>\n\t\t\t<key>Play Date</key><integer>3489334336</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-07-27T23:32:16Z</date>\n\t\t\t<key>Normalization</key><integer>13926</integer>\n\t\t\t<key>Persistent ID</key><string>77583966E1A66E6C</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Unknown%20Album/07%20Track%2007.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>925</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>925</integer>\n\t\t\t<key>Name</key><string>Track 08</string>\n\t\t\t<key>Artist</key><string>Kaiser Chiefs</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4934066</integer>\n\t\t\t<key>Total Time</key><integer>246595</integer>\n\t\t\t<key>Track Number</key><integer>8</integer>\n\t\t\t<key>Track Count</key><integer>15</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:15:36Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:15:21Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3460722958</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-08-30T19:55:58Z</date>\n\t\t\t<key>Normalization</key><integer>9294</integer>\n\t\t\t<key>Persistent ID</key><string>9BB34B1C0E0E80BC</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Unknown%20Album/08%20Track%2008.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>927</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>927</integer>\n\t\t\t<key>Name</key><string>Track 09</string>\n\t\t\t<key>Artist</key><string>Kaiser Chiefs</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3297234</integer>\n\t\t\t<key>Total Time</key><integer>164754</integer>\n\t\t\t<key>Track Number</key><integer>9</integer>\n\t\t\t<key>Track Count</key><integer>15</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:15:46Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:15:37Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3460785888</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-08-31T13:24:48Z</date>\n\t\t\t<key>Normalization</key><integer>13795</integer>\n\t\t\t<key>Persistent ID</key><string>8732E9995F9EA91B</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Unknown%20Album/09%20Track%2009.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>929</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>929</integer>\n\t\t\t<key>Name</key><string>Track 10</string>\n\t\t\t<key>Artist</key><string>Kaiser Chiefs</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>6521267</integer>\n\t\t\t<key>Total Time</key><integer>325955</integer>\n\t\t\t<key>Track Number</key><integer>10</integer>\n\t\t\t<key>Track Count</key><integer>15</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:16:04Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:15:47Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2013-10-20T22:55:43Z</date>\n\t\t\t<key>Normalization</key><integer>7808</integer>\n\t\t\t<key>Persistent ID</key><string>F519DCD62587AC1F</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Unknown%20Album/10%20Track%2010.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>931</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>931</integer>\n\t\t\t<key>Name</key><string>Track 11</string>\n\t\t\t<key>Artist</key><string>Kaiser Chiefs</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4452369</integer>\n\t\t\t<key>Total Time</key><integer>222511</integer>\n\t\t\t<key>Track Number</key><integer>11</integer>\n\t\t\t<key>Track Count</key><integer>15</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:16:17Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:16:05Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>2</integer>\n\t\t\t<key>Play Date</key><integer>3462550274</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-09-20T23:31:14Z</date>\n\t\t\t<key>Normalization</key><integer>7028</integer>\n\t\t\t<key>Persistent ID</key><string>AE939DC9EB8755BD</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Unknown%20Album/11%20Track%2011.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>933</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>933</integer>\n\t\t\t<key>Name</key><string>Track 12</string>\n\t\t\t<key>Artist</key><string>Kaiser Chiefs</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4750688</integer>\n\t\t\t<key>Total Time</key><integer>237426</integer>\n\t\t\t<key>Track Number</key><integer>12</integer>\n\t\t\t<key>Track Count</key><integer>15</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:16:29Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:16:17Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3460791538</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-08-31T14:58:58Z</date>\n\t\t\t<key>Normalization</key><integer>16567</integer>\n\t\t\t<key>Persistent ID</key><string>9FF957DBFC527AEF</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Unknown%20Album/12%20Track%2012.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>935</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>935</integer>\n\t\t\t<key>Name</key><string>Track 13</string>\n\t\t\t<key>Artist</key><string>Kaiser Chiefs</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5583471</integer>\n\t\t\t<key>Total Time</key><integer>279066</integer>\n\t\t\t<key>Track Number</key><integer>13</integer>\n\t\t\t<key>Track Count</key><integer>15</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:16:44Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:16:30Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3460720759</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-08-30T19:19:19Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2013-10-28T12:04:24Z</date>\n\t\t\t<key>Normalization</key><integer>8416</integer>\n\t\t\t<key>Persistent ID</key><string>C1C230D5766DD632</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Unknown%20Album/13%20Track%2013.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>937</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>937</integer>\n\t\t\t<key>Name</key><string>Track 14</string>\n\t\t\t<key>Artist</key><string>Kaiser Chiefs</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4373480</integer>\n\t\t\t<key>Total Time</key><integer>218566</integer>\n\t\t\t<key>Track Number</key><integer>14</integer>\n\t\t\t<key>Track Count</key><integer>15</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:16:55Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:16:44Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>3</integer>\n\t\t\t<key>Play Date</key><integer>3465791933</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-10-28T11:58:53Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2014-12-31T23:56:18Z</date>\n\t\t\t<key>Normalization</key><integer>14789</integer>\n\t\t\t<key>Persistent ID</key><string>D846A63E415C4D2F</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Unknown%20Album/14%20Track%2014.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>939</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>939</integer>\n\t\t\t<key>Name</key><string>Track 15</string>\n\t\t\t<key>Artist</key><string>Kaiser Chiefs</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>2946671</integer>\n\t\t\t<key>Total Time</key><integer>147226</integer>\n\t\t\t<key>Track Number</key><integer>15</integer>\n\t\t\t<key>Track Count</key><integer>15</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:17:02Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:16:55Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3489329811</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-07-27T22:16:51Z</date>\n\t\t\t<key>Normalization</key><integer>12006</integer>\n\t\t\t<key>Persistent ID</key><string>B7B1F59AB92A525F</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Kaiser%20Chiefs/Unknown%20Album/15%20Track%2015.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>941</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>941</integer>\n\t\t\t<key>Name</key><string>Voices</string>\n\t\t\t<key>Artist</key><string>Disturbed</string>\n\t\t\t<key>Album</key><string>The Sickness</string>\n\t\t\t<key>Genre</key><string>Alternative</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3837495</integer>\n\t\t\t<key>Total Time</key><integer>191764</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>1</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2000</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:19:03Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:18:29Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Skip Count</key><integer>2</integer>\n\t\t\t<key>Skip Date</key><date>2013-10-20T14:54:43Z</date>\n\t\t\t<key>Normalization</key><integer>12233</integer>\n\t\t\t<key>Sort Album</key><string>Sickness</string>\n\t\t\t<key>Persistent ID</key><string>388E9367135284BD</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Disturbed/The%20Sickness/01%20Voices.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>943</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>943</integer>\n\t\t\t<key>Name</key><string>The Game</string>\n\t\t\t<key>Artist</key><string>Disturbed</string>\n\t\t\t<key>Album</key><string>The Sickness</string>\n\t\t\t<key>Genre</key><string>Alternative</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4544893</integer>\n\t\t\t<key>Total Time</key><integer>227134</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>2</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2000</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:19:42Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:19:05Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3455531095</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-07-01T17:44:55Z</date>\n\t\t\t<key>Skip Count</key><integer>4</integer>\n\t\t\t<key>Skip Date</key><date>2013-10-20T14:54:46Z</date>\n\t\t\t<key>Normalization</key><integer>9507</integer>\n\t\t\t<key>Sort Album</key><string>Sickness</string>\n\t\t\t<key>Sort Name</key><string>Game</string>\n\t\t\t<key>Persistent ID</key><string>DFB4111A1E57C372</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Disturbed/The%20Sickness/02%20The%20Game.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>945</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>945</integer>\n\t\t\t<key>Name</key><string>Stupify</string>\n\t\t\t<key>Artist</key><string>Disturbed</string>\n\t\t\t<key>Album</key><string>The Sickness</string>\n\t\t\t<key>Genre</key><string>Alternative</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5486867</integer>\n\t\t\t<key>Total Time</key><integer>274233</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>3</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2000</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:20:26Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:19:45Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3459352283</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-08-14T23:11:23Z</date>\n\t\t\t<key>Normalization</key><integer>9925</integer>\n\t\t\t<key>Sort Album</key><string>Sickness</string>\n\t\t\t<key>Persistent ID</key><string>55ED76DA2BFF6624</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Disturbed/The%20Sickness/03%20Stupify.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>947</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>947</integer>\n\t\t\t<key>Name</key><string>Down With The Sickness</string>\n\t\t\t<key>Artist</key><string>Disturbed</string>\n\t\t\t<key>Album</key><string>The Sickness</string>\n\t\t\t<key>Genre</key><string>Alternative</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5576744</integer>\n\t\t\t<key>Total Time</key><integer>278726</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>4</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2002</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:21:06Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:20:27Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3489335273</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-07-27T23:47:53Z</date>\n\t\t\t<key>Skip Count</key><integer>4</integer>\n\t\t\t<key>Skip Date</key><date>2013-09-21T16:02:49Z</date>\n\t\t\t<key>Normalization</key><integer>12485</integer>\n\t\t\t<key>Sort Album</key><string>Sickness</string>\n\t\t\t<key>Persistent ID</key><string>7AF372EDA349F0B8</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Disturbed/The%20Sickness/04%20Down%20With%20The%20Sickness.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>949</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>949</integer>\n\t\t\t<key>Name</key><string>Violence Fetish</string>\n\t\t\t<key>Artist</key><string>Disturbed</string>\n\t\t\t<key>Album</key><string>The Sickness</string>\n\t\t\t<key>Genre</key><string>Alternative</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4078875</integer>\n\t\t\t<key>Total Time</key><integer>203833</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>5</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2000</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:21:33Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:21:07Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Normalization</key><integer>12486</integer>\n\t\t\t<key>Sort Album</key><string>Sickness</string>\n\t\t\t<key>Persistent ID</key><string>165FEE20C2AC00BC</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Disturbed/The%20Sickness/05%20Violence%20Fetish.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>951</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>951</integer>\n\t\t\t<key>Name</key><string>Fear</string>\n\t\t\t<key>Artist</key><string>Disturbed</string>\n\t\t\t<key>Album</key><string>The Sickness</string>\n\t\t\t<key>Genre</key><string>Alternative</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4542277</integer>\n\t\t\t<key>Total Time</key><integer>227004</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>6</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2000</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:22:02Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:21:35Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>4</integer>\n\t\t\t<key>Play Date</key><integer>3503058242</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-01-02T20:44:02Z</date>\n\t\t\t<key>Skip Count</key><integer>3</integer>\n\t\t\t<key>Skip Date</key><date>2015-01-02T20:40:13Z</date>\n\t\t\t<key>Normalization</key><integer>13959</integer>\n\t\t\t<key>Sort Album</key><string>Sickness</string>\n\t\t\t<key>Persistent ID</key><string>3C1381CEB227AC81</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Disturbed/The%20Sickness/06%20Fear.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>953</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>953</integer>\n\t\t\t<key>Name</key><string>Numb</string>\n\t\t\t<key>Artist</key><string>Disturbed</string>\n\t\t\t<key>Album</key><string>The Sickness</string>\n\t\t\t<key>Genre</key><string>Alternative</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4501003</integer>\n\t\t\t<key>Total Time</key><integer>224940</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>7</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2000</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:22:30Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:22:04Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Normalization</key><integer>11924</integer>\n\t\t\t<key>Sort Album</key><string>Sickness</string>\n\t\t\t<key>Persistent ID</key><string>C62901EAC7D4458B</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Disturbed/The%20Sickness/07%20Numb.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>955</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>955</integer>\n\t\t\t<key>Name</key><string>Want</string>\n\t\t\t<key>Artist</key><string>Disturbed</string>\n\t\t\t<key>Album</key><string>The Sickness</string>\n\t\t\t<key>Genre</key><string>Alternative</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4658260</integer>\n\t\t\t<key>Total Time</key><integer>232803</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>8</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2000</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:22:57Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:22:32Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2015-01-02T17:24:40Z</date>\n\t\t\t<key>Normalization</key><integer>9280</integer>\n\t\t\t<key>Sort Album</key><string>Sickness</string>\n\t\t\t<key>Persistent ID</key><string>9824EDCAF7E7DABC</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Disturbed/The%20Sickness/08%20Want.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>957</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>957</integer>\n\t\t\t<key>Name</key><string>Conflict</string>\n\t\t\t<key>Artist</key><string>Disturbed</string>\n\t\t\t<key>Album</key><string>The Sickness</string>\n\t\t\t<key>Genre</key><string>Alternative</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5508811</integer>\n\t\t\t<key>Total Time</key><integer>275330</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>9</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2000</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:23:28Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:22:59Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>5</integer>\n\t\t\t<key>Play Date</key><integer>3455512053</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-07-01T12:27:33Z</date>\n\t\t\t<key>Skip Count</key><integer>4</integer>\n\t\t\t<key>Skip Date</key><date>2013-08-31T14:42:27Z</date>\n\t\t\t<key>Normalization</key><integer>6411</integer>\n\t\t\t<key>Sort Album</key><string>Sickness</string>\n\t\t\t<key>Persistent ID</key><string>F2424180800EC631</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Disturbed/The%20Sickness/09%20Conflict.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>959</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>959</integer>\n\t\t\t<key>Name</key><string>Shout 2000</string>\n\t\t\t<key>Artist</key><string>Disturbed</string>\n\t\t\t<key>Album</key><string>The Sickness</string>\n\t\t\t<key>Genre</key><string>Alternative</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5158251</integer>\n\t\t\t<key>Total Time</key><integer>257802</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>10</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2000</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:23:56Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:23:29Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3489337563</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-07-28T00:26:03Z</date>\n\t\t\t<key>Normalization</key><integer>9017</integer>\n\t\t\t<key>Sort Album</key><string>Sickness</string>\n\t\t\t<key>Persistent ID</key><string>4950B0350327DA5F</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Disturbed/The%20Sickness/10%20Shout%202000.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>961</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>961</integer>\n\t\t\t<key>Name</key><string>Droppin' Plates</string>\n\t\t\t<key>Artist</key><string>Disturbed</string>\n\t\t\t<key>Album</key><string>The Sickness</string>\n\t\t\t<key>Genre</key><string>Alternative</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4588264</integer>\n\t\t\t<key>Total Time</key><integer>229302</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>11</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2000</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:24:19Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:23:57Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>4</integer>\n\t\t\t<key>Play Date</key><integer>3462558129</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-09-21T01:42:09Z</date>\n\t\t\t<key>Skip Count</key><integer>4</integer>\n\t\t\t<key>Skip Date</key><date>2013-10-01T12:51:51Z</date>\n\t\t\t<key>Normalization</key><integer>10727</integer>\n\t\t\t<key>Sort Album</key><string>Sickness</string>\n\t\t\t<key>Persistent ID</key><string>CF835D7A86A33ACD</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Disturbed/The%20Sickness/11%20Droppin'%20Plates.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>963</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>963</integer>\n\t\t\t<key>Name</key><string>Meaning Of Life</string>\n\t\t\t<key>Artist</key><string>Disturbed</string>\n\t\t\t<key>Album</key><string>The Sickness</string>\n\t\t\t<key>Genre</key><string>Alternative</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4854191</integer>\n\t\t\t<key>Total Time</key><integer>242599</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>12</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2000</integer>\n\t\t\t<key>Date Modified</key><date>2012-11-22T14:24:44Z</date>\n\t\t\t<key>Date Added</key><date>2012-11-22T14:24:21Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>3</integer>\n\t\t\t<key>Play Date</key><integer>3514730216</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-05-17T21:56:56Z</date>\n\t\t\t<key>Skip Count</key><integer>3</integer>\n\t\t\t<key>Skip Date</key><date>2015-01-02T20:32:32Z</date>\n\t\t\t<key>Normalization</key><integer>9509</integer>\n\t\t\t<key>Sort Album</key><string>Sickness</string>\n\t\t\t<key>Persistent ID</key><string>0243D082FE465BE4</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1297106739</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Disturbed/The%20Sickness/12%20Meaning%20Of%20Life.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>969</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>969</integer>\n\t\t\t<key>Name</key><string>edu2020</string>\n\t\t\t<key>Album Artist</key><string>csev</string>\n\t\t\t<key>Composer</key><string>csev</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>131553994</integer>\n\t\t\t<key>Total Time</key><integer>805680</integer>\n\t\t\t<key>Date Modified</key><date>2013-06-24T18:27:59Z</date>\n\t\t\t<key>Date Added</key><date>2013-06-24T18:28:00Z</date>\n\t\t\t<key>Bit Rate</key><integer>113</integer>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>3A537CB4F308FE01</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>640</integer>\n\t\t\t<key>Video Height</key><integer>480</integer>\n\t\t\t<key>File Type</key><integer>1295275552</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Movies/Final%20Cut%20Projects/edu2020/Shared%20Items/edu2020%20(854%20x%20480).m4v</string>\n\t\t\t<key>File Folder Count</key><integer>5</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>975</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>975</integer>\n\t\t\t<key>Name</key><string>PY4INF-01-Intro.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>27428698</integer>\n\t\t\t<key>Total Time</key><integer>3428075</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2013-09-19T01:05:22Z</date>\n\t\t\t<key>Date Added</key><date>2013-09-19T01:05:22Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3478279267</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-03-22T00:41:07Z</date>\n\t\t\t<key>Release Date</key><date>2013-09-18T01:04:00Z</date>\n\t\t\t<key>Normalization</key><integer>1219</integer>\n\t\t\t<key>Persistent ID</key><string>F1E78679D13EA1CA</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-01-Intro.mp3.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>979</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>979</integer>\n\t\t\t<key>Name</key><string>ted_03</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>92225345</integer>\n\t\t\t<key>Total Time</key><integer>745700</integer>\n\t\t\t<key>Date Modified</key><date>2013-10-28T23:23:11Z</date>\n\t\t\t<key>Date Added</key><date>2013-10-28T23:41:18Z</date>\n\t\t\t<key>Bit Rate</key><integer>102</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3465826205</integer>\n\t\t\t<key>Play Date UTC</key><date>2013-10-28T21:30:05Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>3D2626D371D964A7</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>700</integer>\n\t\t\t<key>Video Height</key><integer>520</integer>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Desktop/Ted_Talk/ted_03.mp4</string>\n\t\t\t<key>File Folder Count</key><integer>3</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>981</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>981</integer>\n\t\t\t<key>Name</key><string>Pomp and Circumstance Marches No. 1</string>\n\t\t\t<key>Artist</key><string>Edward Elgar</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>1811545</integer>\n\t\t\t<key>Total Time</key><integer>113214</integer>\n\t\t\t<key>Date Modified</key><date>2013-07-29T19:37:16Z</date>\n\t\t\t<key>Date Added</key><date>2013-10-29T02:18:15Z</date>\n\t\t\t<key>Bit Rate</key><integer>128</integer>\n\t\t\t<key>Sample Rate</key><integer>22050</integer>\n\t\t\t<key>Persistent ID</key><string>45FF8770212BC170</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Location</key><string>file://localhost/Volumes/2012-09-3TB-02/Final_Cut_Events/2013-07-IHTS-Graduation/Original%20Media/Pomp_and_circumstances_No._1.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>-1</integer>\n\t\t\t<key>Library Folder Count</key><integer>-1</integer>\n\t\t</dict>\n\t\t<key>985</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>985</integer>\n\t\t\t<key>Name</key><string>Eben Upton: Raspberry Pi</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5297597</integer>\n\t\t\t<key>Total Time</key><integer>661368</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2013-10-30T19:16:08Z</date>\n\t\t\t<key>Date Added</key><date>2013-10-30T19:16:08Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>2</integer>\n\t\t\t<key>Play Date</key><integer>3473250339</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-01-22T20:45:39Z</date>\n\t\t\t<key>Release Date</key><date>2013-10-09T16:41:01Z</date>\n\t\t\t<key>Normalization</key><integer>1226</integer>\n\t\t\t<key>Persistent ID</key><string>1F6783087E9632C0</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Eben%20Upton_%20Raspberry%20Pi.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>987</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>987</integer>\n\t\t\t<key>Name</key><string>Andrew Tanenbaum: Writing the Book on Networks</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Composer</key><string>IEEE Computer Society</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4694648</integer>\n\t\t\t<key>Total Time</key><integer>535040</integer>\n\t\t\t<key>Track Number</key><integer>23</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>Date Modified</key><date>2013-12-10T14:28:01Z</date>\n\t\t\t<key>Date Added</key><date>2013-12-10T14:28:01Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Comments</key><string>Author Charles Severance provides an audio recording of his Computing Conversations column, in which he discusses his interview with Andrew Tanenbaum about how he came to write one of the key books in the computer science field.</string>\n\t\t\t<key>Play Count</key><integer>4</integer>\n\t\t\t<key>Play Date</key><integer>3473251834</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-01-22T21:10:34Z</date>\n\t\t\t<key>Release Date</key><date>2013-12-05T16:41:01Z</date>\n\t\t\t<key>Normalization</key><integer>1220</integer>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>6E218AB3EEC3E3DA</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/23%20Andrew%20Tanenbaum_%20Writing%20the%20Book%20on%20Networks.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>989</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>989</integer>\n\t\t\t<key>Name</key><string>Massimo Banzi: Building Arduino</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4664244</integer>\n\t\t\t<key>Total Time</key><integer>567745</integer>\n\t\t\t<key>Track Number</key><integer>25</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>Date Modified</key><date>2013-12-30T12:31:12Z</date>\n\t\t\t<key>Date Added</key><date>2013-12-30T12:31:12Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Comments</key><string>Author Charles Severance interviews Massimo Banzi about the origins and evolution of the Arduino microcontroller.</string>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3472068695</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-01-09T04:31:35Z</date>\n\t\t\t<key>Release Date</key><date>2013-12-26T16:41:01Z</date>\n\t\t\t<key>Normalization</key><integer>1242</integer>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>F2841F3ED97D8344</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/25%20Massimo%20Banzi_%20Building%20Arduino.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>993</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>993</integer>\n\t\t\t<key>Name</key><string>PY4INF-04-Functions.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>13474503</integer>\n\t\t\t<key>Total Time</key><integer>1683800</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-01-21T12:02:20Z</date>\n\t\t\t<key>Date Added</key><date>2014-01-21T12:00:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-09-18T00:57:00Z</date>\n\t\t\t<key>Normalization</key><integer>1204</integer>\n\t\t\t<key>Persistent ID</key><string>310E6C20ACED8C82</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-04-Functions.mp3.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>995</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>995</integer>\n\t\t\t<key>Name</key><string>PY4INF-02-Expressions.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>20631428</integer>\n\t\t\t<key>Total Time</key><integer>2578416</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-01-21T12:02:49Z</date>\n\t\t\t<key>Date Added</key><date>2014-01-21T12:00:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-09-18T01:03:00Z</date>\n\t\t\t<key>Normalization</key><integer>1245</integer>\n\t\t\t<key>Persistent ID</key><string>4767561A00D1C40D</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-02-Expressions.mp3.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>997</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>997</integer>\n\t\t\t<key>Name</key><string>PY4INF-03-Conditional.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>18372567</integer>\n\t\t\t<key>Total Time</key><integer>2296058</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-01-21T12:02:53Z</date>\n\t\t\t<key>Date Added</key><date>2014-01-21T12:00:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-09-18T01:00:00Z</date>\n\t\t\t<key>Normalization</key><integer>1338</integer>\n\t\t\t<key>Persistent ID</key><string>4767561A00D1C40E</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-03-Conditional.mp3.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>999</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>999</integer>\n\t\t\t<key>Name</key><string>PY4INF-05-Iterations.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>22438474</integer>\n\t\t\t<key>Total Time</key><integer>2804297</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-01-21T12:02:25Z</date>\n\t\t\t<key>Date Added</key><date>2014-01-21T12:00:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3493779457</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-09-17T10:17:37Z</date>\n\t\t\t<key>Release Date</key><date>2013-09-18T00:51:00Z</date>\n\t\t\t<key>Normalization</key><integer>1275</integer>\n\t\t\t<key>Persistent ID</key><string>3E357E3D0B7033FA</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-05-Iterations.mp3.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1001</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1001</integer>\n\t\t\t<key>Name</key><string>PY4INF-06-Strings.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>13426856</integer>\n\t\t\t<key>Total Time</key><integer>1677844</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-01-21T12:02:29Z</date>\n\t\t\t<key>Date Added</key><date>2014-01-21T12:00:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-09-18T00:47:00Z</date>\n\t\t\t<key>Normalization</key><integer>1236</integer>\n\t\t\t<key>Persistent ID</key><string>2E78073036022C57</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-06-Strings.mp3.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1003</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1003</integer>\n\t\t\t<key>Name</key><string>PY4INF-07-Files.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>11833805</integer>\n\t\t\t<key>Total Time</key><integer>1478713</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-01-21T12:02:51Z</date>\n\t\t\t<key>Date Added</key><date>2014-01-21T12:00:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-09-18T00:44:00Z</date>\n\t\t\t<key>Normalization</key><integer>1194</integer>\n\t\t\t<key>Persistent ID</key><string>2E78073036022C58</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-07-Files.mp3.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1005</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1005</integer>\n\t\t\t<key>Name</key><string>PY4INF-08-Lists.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>13093952</integer>\n\t\t\t<key>Total Time</key><integer>1636231</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-01-21T12:02:33Z</date>\n\t\t\t<key>Date Added</key><date>2014-01-21T12:00:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-09-18T00:40:00Z</date>\n\t\t\t<key>Normalization</key><integer>1322</integer>\n\t\t\t<key>Persistent ID</key><string>2E78073036022C59</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-08-Lists.mp3.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1007</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1007</integer>\n\t\t\t<key>Name</key><string>PY4INF-09-Dictionaries.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>18039663</integer>\n\t\t\t<key>Total Time</key><integer>2254445</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-01-21T12:02:36Z</date>\n\t\t\t<key>Date Added</key><date>2014-01-21T12:00:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-09-18T00:36:00Z</date>\n\t\t\t<key>Normalization</key><integer>1221</integer>\n\t\t\t<key>Persistent ID</key><string>1BC9BE00CF9EEA8C</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-09-Dictionaries.mp3.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1009</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1009</integer>\n\t\t\t<key>Name</key><string>PY4INF-10-Tuples.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>12784871</integer>\n\t\t\t<key>Total Time</key><integer>1597596</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-01-21T12:02:21Z</date>\n\t\t\t<key>Date Added</key><date>2014-01-21T12:00:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-09-18T00:33:00Z</date>\n\t\t\t<key>Normalization</key><integer>1227</integer>\n\t\t\t<key>Persistent ID</key><string>1BC9BE00CF9EEA8D</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-10-Tuples.mp3.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1011</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1011</integer>\n\t\t\t<key>Name</key><string>PY4INF-11-Regex.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>16993720</integer>\n\t\t\t<key>Total Time</key><integer>2123702</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-01-21T12:02:40Z</date>\n\t\t\t<key>Date Added</key><date>2014-01-21T12:00:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-09-18T00:28:00Z</date>\n\t\t\t<key>Normalization</key><integer>1225</integer>\n\t\t\t<key>Persistent ID</key><string>1BC9BE00CF9EEA8E</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-11-Regex.mp3.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1013</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1013</integer>\n\t\t\t<key>Name</key><string>John C. Hollar: History of Computing</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5563923</integer>\n\t\t\t<key>Total Time</key><integer>694073</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-01-21T12:02:40Z</date>\n\t\t\t<key>Date Added</key><date>2014-01-21T12:00:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3473249670</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-01-22T20:34:30Z</date>\n\t\t\t<key>Release Date</key><date>2013-08-30T16:41:01Z</date>\n\t\t\t<key>Normalization</key><integer>1221</integer>\n\t\t\t<key>Persistent ID</key><string>6940CC0AFBC026D1</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/John%20C.%20Hollar_%20History%20of%20Computing.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1015</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1015</integer>\n\t\t\t<key>Name</key><string>Bob Metcalfe: Ethernet at Forty</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>8255238</integer>\n\t\t\t<key>Total Time</key><integer>1031392</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-01-21T12:02:46Z</date>\n\t\t\t<key>Date Added</key><date>2014-01-21T12:00:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-05-02T16:41:01Z</date>\n\t\t\t<key>Normalization</key><integer>925</integer>\n\t\t\t<key>Persistent ID</key><string>37FD8B2D955DE218</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Bob%20Metcalfe_%20Ethernet%20at%20Forty.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1017</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1017</integer>\n\t\t\t<key>Name</key><string>Gordon Bell: Building Blocks of Computing</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>17853387</integer>\n\t\t\t<key>Total Time</key><integer>744620</integer>\n\t\t\t<key>Date Modified</key><date>2014-01-21T12:02:43Z</date>\n\t\t\t<key>Date Added</key><date>2014-01-21T12:00:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>192</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3473247179</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-01-22T19:52:59Z</date>\n\t\t\t<key>Release Date</key><date>2013-06-11T16:41:01Z</date>\n\t\t\t<key>Persistent ID</key><string>5541983A9859581E</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Gordon%20Bell_%20Building%20Blocks%20of%20Computing.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1019</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1019</integer>\n\t\t\t<key>Name</key><string>Ian Horrocks: Standardizing OWL</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4584359</integer>\n\t\t\t<key>Total Time</key><integer>572212</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-01-21T12:02:23Z</date>\n\t\t\t<key>Date Added</key><date>2014-01-21T12:00:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3473250919</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-01-22T20:55:19Z</date>\n\t\t\t<key>Release Date</key><date>2013-10-28T16:41:01Z</date>\n\t\t\t<key>Normalization</key><integer>1249</integer>\n\t\t\t<key>Persistent ID</key><string>6940CC0AFBC026D0</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Ian%20Horrocks_%20Standardizing%20OWL.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1021</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1021</integer>\n\t\t\t<key>Name</key><string>Katie Hafner: The Origins of the Internet</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5235635</integer>\n\t\t\t<key>Total Time</key><integer>652460</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-01-21T12:02:30Z</date>\n\t\t\t<key>Date Added</key><date>2014-01-21T12:00:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3473247844</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-01-22T20:04:04Z</date>\n\t\t\t<key>Release Date</key><date>2013-07-03T16:41:01Z</date>\n\t\t\t<key>Normalization</key><integer>1019</integer>\n\t\t\t<key>Persistent ID</key><string>2BCE5A289A2FA257</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Katie%20Hafner_%20The%20Origins%20of%20the%20Internet.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1023</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1023</integer>\n\t\t\t<key>Name</key><string>Larry Smarr: Building Mosaic</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>7161648</integer>\n\t\t\t<key>Total Time</key><integer>894693</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-01-21T12:02:31Z</date>\n\t\t\t<key>Date Added</key><date>2014-01-21T12:00:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-04-11T16:41:01Z</date>\n\t\t\t<key>Normalization</key><integer>1259</integer>\n\t\t\t<key>Persistent ID</key><string>37FD8B2D955DE219</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Larry%20Smarr_%20Building%20Mosaic.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1025</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1025</integer>\n\t\t\t<key>Name</key><string>Len Kleinrock: The Theory of Packets</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5404595</integer>\n\t\t\t<key>Total Time</key><integer>674742</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-01-21T12:02:45Z</date>\n\t\t\t<key>Date Added</key><date>2014-01-21T12:00:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3473248521</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-01-22T20:15:21Z</date>\n\t\t\t<key>Release Date</key><date>2013-08-01T16:41:01Z</date>\n\t\t\t<key>Normalization</key><integer>840</integer>\n\t\t\t<key>Persistent ID</key><string>2BCE5A289A2FA256</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Len%20Kleinrock_%20The%20Theory%20of%20Packets.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1027</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1027</integer>\n\t\t\t<key>Name</key><string>Mitchell Baker: The Mozilla Foundation</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>7958069</integer>\n\t\t\t<key>Total Time</key><integer>994246</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-01-21T12:02:37Z</date>\n\t\t\t<key>Date Added</key><date>2014-01-21T12:00:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-02-04T16:41:01Z</date>\n\t\t\t<key>Normalization</key><integer>1246</integer>\n\t\t\t<key>Persistent ID</key><string>41C7959271984BC3</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Mitchell%20Baker_%20The%20Mozilla%20Foundation.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1029</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1029</integer>\n\t\t\t<key>Name</key><string>Pooja Sankar: Building the Piazza Collaboration System</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3977775</integer>\n\t\t\t<key>Total Time</key><integer>496404</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-01-21T12:02:20Z</date>\n\t\t\t<key>Date Added</key><date>2014-01-21T12:00:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-03-07T16:41:01Z</date>\n\t\t\t<key>Normalization</key><integer>1240</integer>\n\t\t\t<key>Persistent ID</key><string>41C7959271984BC2</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Pooja%20Sankar_%20Building%20the%20Piazza%20Collaboration%20System.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1031</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1031</integer>\n\t\t\t<key>Name</key><string>Van Jacobson: Content-Centric Networking</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>6246108</integer>\n\t\t\t<key>Total Time</key><integer>780251</integer>\n\t\t\t<key>Year</key><integer>2012</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-01-21T12:02:34Z</date>\n\t\t\t<key>Date Added</key><date>2014-01-21T12:00:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-01-28T16:41:01Z</date>\n\t\t\t<key>Normalization</key><integer>1219</integer>\n\t\t\t<key>Persistent ID</key><string>41C7959271984BC4</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Van%20Jacobson_%20Content-Centric%20Networking.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1033</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1033</integer>\n\t\t\t<key>Name</key><string>The Apache Software Foundation</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4343976</integer>\n\t\t\t<key>Total Time</key><integer>542484</integer>\n\t\t\t<key>Year</key><integer>2012</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-01-21T12:02:19Z</date>\n\t\t\t<key>Date Added</key><date>2014-01-21T12:00:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2012-10-26T16:41:01Z</date>\n\t\t\t<key>Normalization</key><integer>1210</integer>\n\t\t\t<key>Sort Name</key><string>Apache Software Foundation</string>\n\t\t\t<key>Persistent ID</key><string>22246A353E3A9DB6</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/The%20Apache%20Software%20Foundation.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1035</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1035</integer>\n\t\t\t<key>Name</key><string>A Brief History of Packets</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>8041243</integer>\n\t\t\t<key>Total Time</key><integer>1004643</integer>\n\t\t\t<key>Year</key><integer>2012</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-01-21T12:02:27Z</date>\n\t\t\t<key>Date Added</key><date>2014-01-21T12:00:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-01-25T16:41:01Z</date>\n\t\t\t<key>Normalization</key><integer>1259</integer>\n\t\t\t<key>Sort Name</key><string>Brief History of Packets</string>\n\t\t\t<key>Persistent ID</key><string>46A3064562F73143</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/A%20Brief%20History%20of%20Packets.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1037</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1037</integer>\n\t\t\t<key>Name</key><string>Discovering JavaScript Object Notation</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>5211868</integer>\n\t\t\t<key>Total Time</key><integer>650971</integer>\n\t\t\t<key>Year</key><integer>2012</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-01-21T12:02:43Z</date>\n\t\t\t<key>Date Added</key><date>2014-01-21T12:00:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2012-03-29T16:41:01Z</date>\n\t\t\t<key>Normalization</key><integer>1237</integer>\n\t\t\t<key>Persistent ID</key><string>4F725C997CF65057</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Discovering%20JavaScript%20Object%20Notation.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1039</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1039</integer>\n\t\t\t<key>Name</key><string>Inventing PHP</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>3963424</integer>\n\t\t\t<key>Total Time</key><integer>494915</integer>\n\t\t\t<key>Year</key><integer>2012</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-01-21T12:02:51Z</date>\n\t\t\t<key>Date Added</key><date>2014-01-21T12:00:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-01-01T16:41:01Z</date>\n\t\t\t<key>Normalization</key><integer>1246</integer>\n\t\t\t<key>Persistent ID</key><string>46A3064562F73144</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Inventing%20PHP.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1041</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1041</integer>\n\t\t\t<key>Name</key><string>Monash Museum of Computing History</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>2905360</integer>\n\t\t\t<key>Total Time</key><integer>362657</integer>\n\t\t\t<key>Year</key><integer>2012</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-01-21T12:02:27Z</date>\n\t\t\t<key>Date Added</key><date>2014-01-21T12:00:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2012-02-29T16:41:01Z</date>\n\t\t\t<key>Normalization</key><integer>1226</integer>\n\t\t\t<key>Persistent ID</key><string>4F725C997CF65058</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Monash%20Museum%20of%20Computing%20History.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1043</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1043</integer>\n\t\t\t<key>Name</key><string>The Rise of JavaScript</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4213155</integer>\n\t\t\t<key>Total Time</key><integer>526132</integer>\n\t\t\t<key>Year</key><integer>2012</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-01-21T12:02:44Z</date>\n\t\t\t<key>Date Added</key><date>2014-01-21T12:00:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2012-02-02T16:41:01Z</date>\n\t\t\t<key>Normalization</key><integer>1239</integer>\n\t\t\t<key>Sort Name</key><string>Rise of JavaScript</string>\n\t\t\t<key>Persistent ID</key><string>09EA490CF8DB8906</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/The%20Rise%20of%20JavaScript.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1045</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1045</integer>\n\t\t\t<key>Name</key><string>lo_and_behold_audio</string>\n\t\t\t<key>Kind</key><string>AIFF audio file</string>\n\t\t\t<key>Size</key><integer>6380550</integer>\n\t\t\t<key>Total Time</key><integer>33116</integer>\n\t\t\t<key>Date Modified</key><date>2014-02-01T18:48:47Z</date>\n\t\t\t<key>Date Added</key><date>2014-02-01T18:48:59Z</date>\n\t\t\t<key>Bit Rate</key><integer>1536</integer>\n\t\t\t<key>Sample Rate</key><integer>48000</integer>\n\t\t\t<key>Persistent ID</key><string>C1633CED6E1BE0E3</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Downloads/lo_and_behold_audio.aif</string>\n\t\t\t<key>File Folder Count</key><integer>2</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>1049</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1049</integer>\n\t\t\t<key>Name</key><string>1996-02-tci07</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>757506768</integer>\n\t\t\t<key>Total Time</key><integer>3600096</integer>\n\t\t\t<key>Date Modified</key><date>2014-02-16T19:30:31Z</date>\n\t\t\t<key>Date Added</key><date>2014-02-16T19:30:34Z</date>\n\t\t\t<key>Bit Rate</key><integer>125</integer>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Season</key><integer>1</integer>\n\t\t\t<key>Episode Order</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>BE1A5B3835536BFC</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>720</integer>\n\t\t\t<key>Video Height</key><integer>540</integer>\n\t\t\t<key>Movie</key><true/>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Desktop/1996-02-tci07.mp4</string>\n\t\t\t<key>File Folder Count</key><integer>2</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>1051</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1051</integer>\n\t\t\t<key>Name</key><string>Joseph Hardin: NCSA Mosaic</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>6771745</integer>\n\t\t\t<key>Total Time</key><integer>845635</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-02-23T01:31:07Z</date>\n\t\t\t<key>Date Added</key><date>2014-02-23T01:31:07Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2014-01-24T16:41:01Z</date>\n\t\t\t<key>Normalization</key><integer>1236</integer>\n\t\t\t<key>Persistent ID</key><string>2CC979F35F50460A</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Joseph%20Hardin_%20NCSA%20Mosaic.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1053</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1053</integer>\n\t\t\t<key>Name</key><string>Len Kleinrock on the Internet's First Two Packets</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>9518455</integer>\n\t\t\t<key>Total Time</key><integer>594390</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-03-01T14:05:28Z</date>\n\t\t\t<key>Date Added</key><date>2014-03-01T14:05:28Z</date>\n\t\t\t<key>Bit Rate</key><integer>128</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3477964201</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-03-18T09:10:01Z</date>\n\t\t\t<key>Release Date</key><date>2014-02-27T19:18:50Z</date>\n\t\t\t<key>Persistent ID</key><string>2A34A05BB7658C62</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Len%20Kleinrock%20on%20the%20Internet_s%20First%20Two%20Packets.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1059</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1059</integer>\n\t\t\t<key>Name</key><string>SPOOKTAKULA INSTRUMENTAL</string>\n\t\t\t<key>Kind</key><string>WAV audio file</string>\n\t\t\t<key>Size</key><integer>25507424</integer>\n\t\t\t<key>Total Time</key><integer>144599</integer>\n\t\t\t<key>Date Modified</key><date>2005-04-01T00:45:28Z</date>\n\t\t\t<key>Date Added</key><date>2014-03-19T20:47:01Z</date>\n\t\t\t<key>Bit Rate</key><integer>1411</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Persistent ID</key><string>BBBB8369D8720604</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Desktop/SPOOKTAKULA/SPOOKTAKULA%20INSTRUMENTAL.wav</string>\n\t\t\t<key>File Folder Count</key><integer>3</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>1061</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1061</integer>\n\t\t\t<key>Name</key><string>Pomp and Circumstance Marches No. 1</string>\n\t\t\t<key>Artist</key><string>Edward Elgar</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>1811545</integer>\n\t\t\t<key>Total Time</key><integer>113214</integer>\n\t\t\t<key>Date Modified</key><date>2013-07-29T19:37:16Z</date>\n\t\t\t<key>Date Added</key><date>2014-03-23T18:39:15Z</date>\n\t\t\t<key>Bit Rate</key><integer>128</integer>\n\t\t\t<key>Sample Rate</key><integer>22050</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3478430463</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-03-23T18:41:03Z</date>\n\t\t\t<key>Persistent ID</key><string>FA5947D141B87C20</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Desktop/Ted_Talk/Pomp_and_circumstances_No._1.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>3</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>1065</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1065</integer>\n\t\t\t<key>Name</key><string>Doug Van Houweling on Building the NSFNet</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>12349489</integer>\n\t\t\t<key>Total Time</key><integer>773146</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-04-01T19:07:32Z</date>\n\t\t\t<key>Date Added</key><date>2014-04-01T19:07:32Z</date>\n\t\t\t<key>Bit Rate</key><integer>128</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Comments</key><string>Author Charles Severance provides an audio recording of his Computing Conversations column, in which he discusses his interview with Doug Van Houweling about how the NSFNet went from connecting a few supercomputers to becoming the Internet.</string>\n\t\t\t<key>Release Date</key><date>2014-03-28T21:48:19Z</date>\n\t\t\t<key>Persistent ID</key><string>E7A71BF22B44AD36</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Doug%20Van%20Houweling%20on%20Building%20the%20NSFNet.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1067</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1067</integer>\n\t\t\t<key>Name</key><string>Computing Conversations: Nathaniel Borenstein on MIME</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>10921598</integer>\n\t\t\t<key>Total Time</key><integer>682135</integer>\n\t\t\t<key>Track Number</key><integer>29</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-05-01T20:02:46Z</date>\n\t\t\t<key>Date Added</key><date>2014-05-01T20:02:46Z</date>\n\t\t\t<key>Bit Rate</key><integer>128</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Comments</key><string>Author Charles Severance provides an audio recording of his Computing Conversations column, in which he discusses his interview with Nathaniel Borenstein about how email evolved from plaintext to multimedia. Subscribe to the Computing Conversations podcas</string>\n\t\t\t<key>Release Date</key><date>2014-04-29T20:40:33Z</date>\n\t\t\t<key>Persistent ID</key><string>89C402EDE24BDE0B</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/29%20Computing%20Conversations_%20Nathaniel%20Borenstein%20on%20MIME.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1071</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1071</integer>\n\t\t\t<key>Name</key><string>You Don't Mess Around With Jim</string>\n\t\t\t<key>Artist</key><string>Jim Croce</string>\n\t\t\t<key>Album Artist</key><string>Jim Croce</string>\n\t\t\t<key>Composer</key><string>Jim Croce</string>\n\t\t\t<key>Album</key><string>Classic Hits</string>\n\t\t\t<key>Genre</key><string>Folk</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>7400073</integer>\n\t\t\t<key>Total Time</key><integer>184398</integer>\n\t\t\t<key>Track Number</key><integer>1</integer>\n\t\t\t<key>Year</key><integer>2004</integer>\n\t\t\t<key>Date Modified</key><date>2014-05-27T22:27:40Z</date>\n\t\t\t<key>Date Added</key><date>2014-05-27T22:28:03Z</date>\n\t\t\t<key>Bit Rate</key><integer>320</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Comments</key><string> 000005A9 000006AA 00001C77 00001D3A 000138C5 00015FA7 00005F83 000067A1 000138C5 00015FA7</string>\n\t\t\t<key>Normalization</key><integer>1747</integer>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>7C7A96684196636B</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Downloads/tumblr_m88hv5jmry1r8l80fo1.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>2</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>1073</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1073</integer>\n\t\t\t<key>Name</key><string>Andrew S. Tanenbaum on MINIX</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio stream</string>\n\t\t\t<key>Size</key><integer>9666560</integer>\n\t\t\t<key>Total Time</key><integer>603000</integer>\n\t\t\t<key>Date Added</key><date>2014-07-05T13:38:34Z</date>\n\t\t\t<key>Release Date</key><date>2014-07-02T23:27:35Z</date>\n\t\t\t<key>Persistent ID</key><string>DC6923BFD366B289</string>\n\t\t\t<key>Track Type</key><string>URL</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>http://media.computer.org/sponsored/podcast/computingconversations/conversations-0030.mp3</string>\n\t\t</dict>\n\t\t<key>1075</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1075</integer>\n\t\t\t<key>Name</key><string>Computing Conversations: Elizabeth Fong on SQL Standards</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Album Artist</key><string>Charles Severance</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>8541331</integer>\n\t\t\t<key>Total Time</key><integer>533577</integer>\n\t\t\t<key>Track Number</key><integer>31</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-07-29T01:19:55Z</date>\n\t\t\t<key>Date Added</key><date>2014-07-29T04:19:55Z</date>\n\t\t\t<key>Bit Rate</key><integer>128</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2014-07-28T16:28:32Z</date>\n\t\t\t<key>Persistent ID</key><string>1629CE9F85E22EC6</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/31%20Computing%20Conversations_%20Elizabeth%20Fong%20on%20SQL%20Standards.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1077</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1077</integer>\n\t\t\t<key>Name</key><string>Nii Quaynor on Bringing the Internet to Africa</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Album Artist</key><string>Charles Severance</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>10777413</integer>\n\t\t\t<key>Total Time</key><integer>673332</integer>\n\t\t\t<key>Track Number</key><integer>32</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-09-07T23:10:45Z</date>\n\t\t\t<key>Date Added</key><date>2014-09-07T23:10:45Z</date>\n\t\t\t<key>Bit Rate</key><integer>128</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Comments</key><string>Author Charles Severance provides an audio recording of his Computing Conversations column, in which he discusses his interview with Nii Quaynor about how the story of bringing the Internet to Africa is one of cooperation and collaboration for the common </string>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3521442593</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-08-03T14:29:53Z</date>\n\t\t\t<key>Release Date</key><date>2014-09-05T18:06:49Z</date>\n\t\t\t<key>Persistent ID</key><string>5E87242239FAD32B</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/32%20Nii%20Quaynor%20on%20Bringing%20the%20Internet%20to%20Africa.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1081</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1081</integer>\n\t\t\t<key>Name</key><string>PHP-09-Transactions.mp3</string>\n\t\t\t<key>Artist</key><string>Created by Sakai</string>\n\t\t\t<key>Album</key><string>SI 664 W14's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>17291008</integer>\n\t\t\t<key>Total Time</key><integer>1728888</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-09-10T01:03:12Z</date>\n\t\t\t<key>Date Added</key><date>2014-09-10T01:03:12Z</date>\n\t\t\t<key>Bit Rate</key><integer>80</integer>\n\t\t\t<key>Sample Rate</key><integer>24000</integer>\n\t\t\t<key>Release Date</key><date>2014-04-07T08:12:43Z</date>\n\t\t\t<key>Normalization</key><integer>9242</integer>\n\t\t\t<key>Persistent ID</key><string>669B2607B542AE7F</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/SI%20664%20W14's%20official%20Podcast_/PHP-09-Transactions.mp3.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1083</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1083</integer>\n\t\t\t<key>Name</key><string>PHP-01-Intro.mp3</string>\n\t\t\t<key>Artist</key><string>Created by Sakai</string>\n\t\t\t<key>Album</key><string>SI 664 W14's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>22508361</integer>\n\t\t\t<key>Total Time</key><integer>2250624</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-09-10T01:04:04Z</date>\n\t\t\t<key>Date Added</key><date>2014-09-10T01:04:04Z</date>\n\t\t\t<key>Bit Rate</key><integer>80</integer>\n\t\t\t<key>Sample Rate</key><integer>24000</integer>\n\t\t\t<key>Release Date</key><date>2014-01-10T03:59:03Z</date>\n\t\t\t<key>Normalization</key><integer>5184</integer>\n\t\t\t<key>Persistent ID</key><string>053DD88CF9AB70FF</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/SI%20664%20W14's%20official%20Podcast_/PHP-01-Intro.mp3.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1085</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1085</integer>\n\t\t\t<key>Name</key><string>PHP-02-Install.mp3</string>\n\t\t\t<key>Artist</key><string>Created by Sakai</string>\n\t\t\t<key>Album</key><string>SI 664 W14's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>21960923</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-09-10T01:04:10Z</date>\n\t\t\t<key>Date Added</key><date>2014-09-10T01:04:10Z</date>\n\t\t\t<key>Bit Rate</key><integer>80</integer>\n\t\t\t<key>Sample Rate</key><integer>24000</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3493137000</integer>\n\t\t\t<key>Play Date UTC</key><date>2014-09-09T23:50:00Z</date>\n\t\t\t<key>Release Date</key><date>2014-01-10T03:59:49Z</date>\n\t\t\t<key>Normalization</key><integer>7881</integer>\n\t\t\t<key>Persistent ID</key><string>24596F2775701A18</string>\n\t\t\t<key>Track Type</key><string>URL</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>https://ctools.umich.edu/access/content/group/8923c6aa-794f-43f0-8ea2-dc6f96556d6b/Podcasts/PHP-02-Install.mp3</string>\n\t\t</dict>\n\t\t<key>1087</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1087</integer>\n\t\t\t<key>Name</key><string>PHP-04-Expressions.mp3</string>\n\t\t\t<key>Artist</key><string>Created by Sakai</string>\n\t\t\t<key>Album</key><string>SI 664 W14's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>21682767</integer>\n\t\t\t<key>Total Time</key><integer>2168064</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-09-10T01:04:14Z</date>\n\t\t\t<key>Date Added</key><date>2014-09-10T01:04:14Z</date>\n\t\t\t<key>Bit Rate</key><integer>80</integer>\n\t\t\t<key>Sample Rate</key><integer>24000</integer>\n\t\t\t<key>Release Date</key><date>2014-01-20T19:50:23Z</date>\n\t\t\t<key>Normalization</key><integer>10766</integer>\n\t\t\t<key>Persistent ID</key><string>D83C94DC9C9BE8A9</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/SI%20664%20W14's%20official%20Podcast_/PHP-04-Expressions.mp3.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1089</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1089</integer>\n\t\t\t<key>Name</key><string>PHP-05-Functions.mp3</string>\n\t\t\t<key>Artist</key><string>Created by Sakai</string>\n\t\t\t<key>Album</key><string>SI 664 W14's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>14470043</integer>\n\t\t\t<key>Total Time</key><integer>1446792</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-09-10T01:04:18Z</date>\n\t\t\t<key>Date Added</key><date>2014-09-10T01:04:18Z</date>\n\t\t\t<key>Bit Rate</key><integer>80</integer>\n\t\t\t<key>Sample Rate</key><integer>24000</integer>\n\t\t\t<key>Release Date</key><date>2014-01-24T03:22:01Z</date>\n\t\t\t<key>Normalization</key><integer>6829</integer>\n\t\t\t<key>Persistent ID</key><string>9B02D519721057C4</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/SI%20664%20W14's%20official%20Podcast_/PHP-05-Functions.mp3.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1091</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1091</integer>\n\t\t\t<key>Name</key><string>PHP-06-Strings.mp3</string>\n\t\t\t<key>Artist</key><string>Created by Sakai</string>\n\t\t\t<key>Album</key><string>SI 664 W14's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4179081</integer>\n\t\t\t<key>Total Time</key><integer>417696</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-09-10T01:04:19Z</date>\n\t\t\t<key>Date Added</key><date>2014-09-10T01:04:19Z</date>\n\t\t\t<key>Bit Rate</key><integer>80</integer>\n\t\t\t<key>Sample Rate</key><integer>24000</integer>\n\t\t\t<key>Release Date</key><date>2014-01-24T03:23:48Z</date>\n\t\t\t<key>Normalization</key><integer>7497</integer>\n\t\t\t<key>Persistent ID</key><string>CD849613725FDD25</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/SI%20664%20W14's%20official%20Podcast_/PHP-06-Strings.mp3.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1093</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1093</integer>\n\t\t\t<key>Name</key><string>PHP-12-Sessions.mp3</string>\n\t\t\t<key>Artist</key><string>Created by Sakai</string>\n\t\t\t<key>Album</key><string>SI 664 W14's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>36245244</integer>\n\t\t\t<key>Total Time</key><integer>3624312</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-09-10T01:04:36Z</date>\n\t\t\t<key>Date Added</key><date>2014-09-10T01:04:36Z</date>\n\t\t\t<key>Bit Rate</key><integer>80</integer>\n\t\t\t<key>Sample Rate</key><integer>24000</integer>\n\t\t\t<key>Release Date</key><date>2014-01-31T02:08:58Z</date>\n\t\t\t<key>Normalization</key><integer>10310</integer>\n\t\t\t<key>Persistent ID</key><string>F76EB49D48392640</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/SI%20664%20W14's%20official%20Podcast_/PHP-12-Sessions.mp3.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1095</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1095</integer>\n\t\t\t<key>Name</key><string>PHP-06-Objects.mp3</string>\n\t\t\t<key>Artist</key><string>Created by Sakai</string>\n\t\t\t<key>Album</key><string>SI 664 W14's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>24555802</integer>\n\t\t\t<key>Total Time</key><integer>2455368</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-09-10T01:04:42Z</date>\n\t\t\t<key>Date Added</key><date>2014-09-10T01:04:42Z</date>\n\t\t\t<key>Bit Rate</key><integer>80</integer>\n\t\t\t<key>Sample Rate</key><integer>24000</integer>\n\t\t\t<key>Release Date</key><date>2014-01-31T02:09:55Z</date>\n\t\t\t<key>Normalization</key><integer>10951</integer>\n\t\t\t<key>Persistent ID</key><string>767D57825686AAE6</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/SI%20664%20W14's%20official%20Podcast_/PHP-06-Objects.mp3.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1097</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1097</integer>\n\t\t\t<key>Name</key><string>SI664-13-JSON-A.mp3</string>\n\t\t\t<key>Artist</key><string>Created by Sakai</string>\n\t\t\t<key>Album</key><string>SI 664 W14's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>44078844</integer>\n\t\t\t<key>Total Time</key><integer>4407672</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-09-10T01:04:51Z</date>\n\t\t\t<key>Date Added</key><date>2014-09-10T01:04:51Z</date>\n\t\t\t<key>Bit Rate</key><integer>80</integer>\n\t\t\t<key>Sample Rate</key><integer>24000</integer>\n\t\t\t<key>Release Date</key><date>2014-04-06T22:38:55Z</date>\n\t\t\t<key>Normalization</key><integer>8596</integer>\n\t\t\t<key>Persistent ID</key><string>E4B5B892D930B9A0</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/SI%20664%20W14's%20official%20Podcast_/SI664-13-JSON-A.mp3.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1099</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1099</integer>\n\t\t\t<key>Name</key><string>PHP-13-JavaScript.mp3</string>\n\t\t\t<key>Artist</key><string>Created by Sakai</string>\n\t\t\t<key>Album</key><string>SI 664 W14's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>36503006</integer>\n\t\t\t<key>Total Time</key><integer>3650088</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-09-10T01:04:58Z</date>\n\t\t\t<key>Date Added</key><date>2014-09-10T01:04:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>80</integer>\n\t\t\t<key>Sample Rate</key><integer>24000</integer>\n\t\t\t<key>Release Date</key><date>2014-03-17T03:02:37Z</date>\n\t\t\t<key>Normalization</key><integer>9816</integer>\n\t\t\t<key>Persistent ID</key><string>635C92C15F68D490</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/SI%20664%20W14's%20official%20Podcast_/PHP-13-JavaScript.mp3.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1101</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1101</integer>\n\t\t\t<key>Name</key><string>PHP-09-Database-Design.mp3</string>\n\t\t\t<key>Artist</key><string>Created by Sakai</string>\n\t\t\t<key>Album</key><string>SI 664 W14's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>35912851</integer>\n\t\t\t<key>Total Time</key><integer>3591072</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-09-10T01:05:04Z</date>\n\t\t\t<key>Date Added</key><date>2014-09-10T01:05:04Z</date>\n\t\t\t<key>Bit Rate</key><integer>80</integer>\n\t\t\t<key>Sample Rate</key><integer>24000</integer>\n\t\t\t<key>Release Date</key><date>2014-03-12T21:52:18Z</date>\n\t\t\t<key>Normalization</key><integer>11163</integer>\n\t\t\t<key>Persistent ID</key><string>5D83691DA7FE1967</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/SI%20664%20W14's%20official%20Podcast_/PHP-09-Database-Design.mp3.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1103</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1103</integer>\n\t\t\t<key>Name</key><string>PHP-Tsugi-Install.mp3</string>\n\t\t\t<key>Artist</key><string>Created by Sakai</string>\n\t\t\t<key>Album</key><string>SI 664 W14's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>31818686</integer>\n\t\t\t<key>Total Time</key><integer>3181656</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-09-10T01:05:12Z</date>\n\t\t\t<key>Date Added</key><date>2014-09-10T01:05:12Z</date>\n\t\t\t<key>Bit Rate</key><integer>80</integer>\n\t\t\t<key>Sample Rate</key><integer>24000</integer>\n\t\t\t<key>Release Date</key><date>2014-03-12T21:51:54Z</date>\n\t\t\t<key>Normalization</key><integer>9106</integer>\n\t\t\t<key>Persistent ID</key><string>53D0E500674D75B9</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/SI%20664%20W14's%20official%20Podcast_/PHP-Tsugi-Install.mp3.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1105</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1105</integer>\n\t\t\t<key>Name</key><string>PHP-10-MySQL-PDO.mp3</string>\n\t\t\t<key>Artist</key><string>Created by Sakai</string>\n\t\t\t<key>Album</key><string>SI 664 W14's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>45368981</integer>\n\t\t\t<key>Total Time</key><integer>4536685</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-09-10T01:05:22Z</date>\n\t\t\t<key>Date Added</key><date>2014-09-10T01:05:22Z</date>\n\t\t\t<key>Bit Rate</key><integer>80</integer>\n\t\t\t<key>Sample Rate</key><integer>22050</integer>\n\t\t\t<key>Release Date</key><date>2014-02-08T02:26:04Z</date>\n\t\t\t<key>Normalization</key><integer>9520</integer>\n\t\t\t<key>Persistent ID</key><string>08C480C4919E107B</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/SI%20664%20W14's%20official%20Podcast_/PHP-10-MySQL-PDO.mp3.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1107</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1107</integer>\n\t\t\t<key>Name</key><string>PHP-08-MySQL.mp3</string>\n\t\t\t<key>Artist</key><string>Created by Sakai</string>\n\t\t\t<key>Album</key><string>SI 664 W14's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>39948681</integer>\n\t\t\t<key>Total Time</key><integer>3994656</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-09-10T01:05:30Z</date>\n\t\t\t<key>Date Added</key><date>2014-09-10T01:05:30Z</date>\n\t\t\t<key>Bit Rate</key><integer>80</integer>\n\t\t\t<key>Sample Rate</key><integer>24000</integer>\n\t\t\t<key>Release Date</key><date>2014-02-08T02:25:03Z</date>\n\t\t\t<key>Normalization</key><integer>9148</integer>\n\t\t\t<key>Persistent ID</key><string>C919BEB9B368C650</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/SI%20664%20W14's%20official%20Podcast_/PHP-08-MySQL.mp3.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1109</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1109</integer>\n\t\t\t<key>Name</key><string>SI664-13-JSON-B.mp3</string>\n\t\t\t<key>Artist</key><string>Created by Sakai</string>\n\t\t\t<key>Album</key><string>SI 664 W14's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>14848284</integer>\n\t\t\t<key>Total Time</key><integer>1484616</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-09-10T01:05:33Z</date>\n\t\t\t<key>Date Added</key><date>2014-09-10T01:05:33Z</date>\n\t\t\t<key>Bit Rate</key><integer>80</integer>\n\t\t\t<key>Sample Rate</key><integer>24000</integer>\n\t\t\t<key>Release Date</key><date>2014-04-07T07:12:13Z</date>\n\t\t\t<key>Normalization</key><integer>10264</integer>\n\t\t\t<key>Persistent ID</key><string>312EF22908A05C5D</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/SI%20664%20W14's%20official%20Podcast_/SI664-13-JSON-B.mp3.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1111</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1111</integer>\n\t\t\t<key>Name</key><string>IMS-Learning-Tools-Interoperability.mp3</string>\n\t\t\t<key>Artist</key><string>Created by Sakai</string>\n\t\t\t<key>Album</key><string>SI 664 W14's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>21860624</integer>\n\t\t\t<key>Total Time</key><integer>2185848</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-09-10T01:05:40Z</date>\n\t\t\t<key>Date Added</key><date>2014-09-10T01:05:39Z</date>\n\t\t\t<key>Bit Rate</key><integer>80</integer>\n\t\t\t<key>Sample Rate</key><integer>24000</integer>\n\t\t\t<key>Release Date</key><date>2014-04-07T07:53:14Z</date>\n\t\t\t<key>Normalization</key><integer>8200</integer>\n\t\t\t<key>Persistent ID</key><string>DA074294FB02E8D3</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/SI%20664%20W14's%20official%20Podcast_/IMS-Learning-Tools-Interoperability.mp3.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1117</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1117</integer>\n\t\t\t<key>Name</key><string>An Interview with Don Waters</string>\n\t\t\t<key>Artist</key><string>Matt Pasiewicz</string>\n\t\t\t<key>Composer</key><string>Matt Pasiewicz</string>\n\t\t\t<key>Album</key><string>CNI Event Coverage</string>\n\t\t\t<key>Genre</key><string>Speech</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>16934912</integer>\n\t\t\t<key>Total Time</key><integer>1411082</integer>\n\t\t\t<key>Year</key><integer>2006</integer>\n\t\t\t<key>Date Modified</key><date>2014-10-21T12:54:43Z</date>\n\t\t\t<key>Date Added</key><date>2014-10-21T12:54:46Z</date>\n\t\t\t<key>Bit Rate</key><integer>96</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Play Count</key><integer>2</integer>\n\t\t\t<key>Play Date</key><integer>3504632233</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-01-21T01:57:13Z</date>\n\t\t\t<key>Skip Count</key><integer>1</integer>\n\t\t\t<key>Skip Date</key><date>2015-01-04T18:49:16Z</date>\n\t\t\t<key>Sort Name</key><string>Interview with Don Waters</string>\n\t\t\t<key>Persistent ID</key><string>33C07CCB3CD3A749</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Location</key><string>file://localhost/Users/csev/Desktop/DON_WATERS_CNI.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>2</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>1119</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1119</integer>\n\t\t\t<key>Name</key><string>Pooja-Interview-Audio</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>24182596</integer>\n\t\t\t<key>Total Time</key><integer>1209129</integer>\n\t\t\t<key>Date Modified</key><date>2012-12-19T00:55:24Z</date>\n\t\t\t<key>Date Added</key><date>2014-11-10T14:50:19Z</date>\n\t\t\t<key>Bit Rate</key><integer>160</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Persistent ID</key><string>032C4B63DF7378E6</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Location</key><string>file:///Users/csev/Desktop/ieee/columns/2013/2013-03-Pooja/Pooja-Interview-Audio.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>6</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>1121</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1121</integer>\n\t\t\t<key>Name</key><string>PY4INF-11-Regex.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>16993720</integer>\n\t\t\t<key>Total Time</key><integer>2123702</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-11-15T14:14:51Z</date>\n\t\t\t<key>Date Added</key><date>2014-11-15T14:14:51Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-09-18T00:28:00Z</date>\n\t\t\t<key>Normalization</key><integer>1225</integer>\n\t\t\t<key>Persistent ID</key><string>911E8F5C37D8978F</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-11-Regex.mp3%201.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1123</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1123</integer>\n\t\t\t<key>Name</key><string>PY4INF-10-Tuples.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>12784871</integer>\n\t\t\t<key>Total Time</key><integer>1597596</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-11-15T14:15:13Z</date>\n\t\t\t<key>Date Added</key><date>2014-11-15T14:15:13Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-09-18T00:33:00Z</date>\n\t\t\t<key>Normalization</key><integer>1227</integer>\n\t\t\t<key>Persistent ID</key><string>2169E6D5E8459480</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-10-Tuples.mp3%201.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1125</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1125</integer>\n\t\t\t<key>Name</key><string>PY4INF-09-Dictionaries.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>18039663</integer>\n\t\t\t<key>Total Time</key><integer>2254445</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-11-15T14:15:38Z</date>\n\t\t\t<key>Date Added</key><date>2014-11-15T14:15:38Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-09-18T00:36:00Z</date>\n\t\t\t<key>Normalization</key><integer>1221</integer>\n\t\t\t<key>Persistent ID</key><string>0544AD415E39EFDD</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-09-Dictionaries.mp3%201.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1127</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1127</integer>\n\t\t\t<key>Name</key><string>PY4INF-08-Lists.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>13093952</integer>\n\t\t\t<key>Total Time</key><integer>1636231</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-11-15T14:16:09Z</date>\n\t\t\t<key>Date Added</key><date>2014-11-15T14:16:09Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-09-18T00:40:00Z</date>\n\t\t\t<key>Normalization</key><integer>1322</integer>\n\t\t\t<key>Persistent ID</key><string>A34F05948F31EAFE</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-08-Lists.mp3%201.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1129</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1129</integer>\n\t\t\t<key>Name</key><string>PY4INF-07-Files.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>11833805</integer>\n\t\t\t<key>Total Time</key><integer>1478713</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-11-15T14:16:28Z</date>\n\t\t\t<key>Date Added</key><date>2014-11-15T14:16:28Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-09-18T00:44:00Z</date>\n\t\t\t<key>Normalization</key><integer>1194</integer>\n\t\t\t<key>Persistent ID</key><string>3E5DA2AEF473E009</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-07-Files.mp3%201.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1131</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1131</integer>\n\t\t\t<key>Name</key><string>PY4INF-06-Strings.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>13426856</integer>\n\t\t\t<key>Total Time</key><integer>1677844</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-11-15T14:16:42Z</date>\n\t\t\t<key>Date Added</key><date>2014-11-15T14:16:42Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-09-18T00:47:00Z</date>\n\t\t\t<key>Normalization</key><integer>1236</integer>\n\t\t\t<key>Persistent ID</key><string>82F688E0188BE912</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-06-Strings.mp3%201.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1133</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1133</integer>\n\t\t\t<key>Name</key><string>PY4INF-05-Iterations.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>22438474</integer>\n\t\t\t<key>Total Time</key><integer>2804297</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-11-15T14:17:06Z</date>\n\t\t\t<key>Date Added</key><date>2014-11-15T14:17:06Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-09-18T00:51:00Z</date>\n\t\t\t<key>Normalization</key><integer>1275</integer>\n\t\t\t<key>Persistent ID</key><string>474F607E00631CF0</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-05-Iterations.mp3%201.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1135</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1135</integer>\n\t\t\t<key>Name</key><string>PY4INF-04-Functions.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>13474503</integer>\n\t\t\t<key>Total Time</key><integer>1683800</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-11-15T14:17:21Z</date>\n\t\t\t<key>Date Added</key><date>2014-11-15T14:17:21Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-09-18T00:57:00Z</date>\n\t\t\t<key>Normalization</key><integer>1204</integer>\n\t\t\t<key>Persistent ID</key><string>32D0CB0DDC1C1671</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-04-Functions.mp3%201.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1137</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1137</integer>\n\t\t\t<key>Name</key><string>PY4INF-03-Conditional.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>18372567</integer>\n\t\t\t<key>Total Time</key><integer>2296058</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-11-15T14:17:45Z</date>\n\t\t\t<key>Date Added</key><date>2014-11-15T14:17:45Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-09-18T01:00:00Z</date>\n\t\t\t<key>Normalization</key><integer>1338</integer>\n\t\t\t<key>Persistent ID</key><string>82FAEF71E0FF7D55</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-03-Conditional.mp3%201.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1139</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1139</integer>\n\t\t\t<key>Name</key><string>PY4INF-02-Expressions.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>20631428</integer>\n\t\t\t<key>Total Time</key><integer>2578416</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-11-15T14:18:17Z</date>\n\t\t\t<key>Date Added</key><date>2014-11-15T14:18:17Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-09-18T01:03:00Z</date>\n\t\t\t<key>Normalization</key><integer>1245</integer>\n\t\t\t<key>Persistent ID</key><string>7CE111FA768BF10F</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-02-Expressions.mp3%201.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1141</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1141</integer>\n\t\t\t<key>Name</key><string>PY4INF-01-Intro.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>27428698</integer>\n\t\t\t<key>Total Time</key><integer>3428075</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-11-15T14:18:53Z</date>\n\t\t\t<key>Date Added</key><date>2014-11-15T14:18:53Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-09-18T01:04:00Z</date>\n\t\t\t<key>Normalization</key><integer>1219</integer>\n\t\t\t<key>Persistent ID</key><string>12C6FAF33972EE43</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/PY4INF-01-Intro.mp3%201.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1145</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1145</integer>\n\t\t\t<key>Name</key><string>Py4Inf-11-Regex.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>16993720</integer>\n\t\t\t<key>Total Time</key><integer>2123702</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-12-11T01:25:20Z</date>\n\t\t\t<key>Date Added</key><date>2014-12-11T01:25:20Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-09-18T00:28:00Z</date>\n\t\t\t<key>Normalization</key><integer>1225</integer>\n\t\t\t<key>Persistent ID</key><string>48DD99EF7B5CAD27</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/Py4Inf-11-Regex.mp3%202.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1147</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1147</integer>\n\t\t\t<key>Name</key><string>Py4Inf-10-Tuples.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>12784871</integer>\n\t\t\t<key>Total Time</key><integer>1597596</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-12-11T01:25:52Z</date>\n\t\t\t<key>Date Added</key><date>2014-12-11T01:25:52Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-09-18T00:33:00Z</date>\n\t\t\t<key>Normalization</key><integer>1227</integer>\n\t\t\t<key>Persistent ID</key><string>F0F18F03E98B789B</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/Py4Inf-10-Tuples.mp3%202.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1149</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1149</integer>\n\t\t\t<key>Name</key><string>Py4Inf-09-Dictionaries.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>18039663</integer>\n\t\t\t<key>Total Time</key><integer>2254445</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-12-11T01:26:50Z</date>\n\t\t\t<key>Date Added</key><date>2014-12-11T01:26:50Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-09-18T00:36:00Z</date>\n\t\t\t<key>Normalization</key><integer>1221</integer>\n\t\t\t<key>Persistent ID</key><string>E896D5414DC16048</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/Py4Inf-09-Dictionaries.mp3%202.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1151</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1151</integer>\n\t\t\t<key>Name</key><string>Py4Inf-08-Lists.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>13093952</integer>\n\t\t\t<key>Total Time</key><integer>1636231</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-12-11T01:27:28Z</date>\n\t\t\t<key>Date Added</key><date>2014-12-11T01:27:28Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-09-18T00:40:00Z</date>\n\t\t\t<key>Normalization</key><integer>1322</integer>\n\t\t\t<key>Persistent ID</key><string>851EC5CE786B93BF</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/Py4Inf-08-Lists.mp3%202.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1153</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1153</integer>\n\t\t\t<key>Name</key><string>Py4Inf-07-Files.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>11833805</integer>\n\t\t\t<key>Total Time</key><integer>1478713</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-12-11T01:27:52Z</date>\n\t\t\t<key>Date Added</key><date>2014-12-11T01:27:52Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-09-18T00:44:00Z</date>\n\t\t\t<key>Normalization</key><integer>1194</integer>\n\t\t\t<key>Persistent ID</key><string>D1096CD161D685AF</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/Py4Inf-07-Files.mp3%202.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1155</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1155</integer>\n\t\t\t<key>Name</key><string>Py4Inf-06-Strings.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>13426856</integer>\n\t\t\t<key>Total Time</key><integer>1677844</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-12-11T01:28:26Z</date>\n\t\t\t<key>Date Added</key><date>2014-12-11T01:28:26Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-09-18T00:47:00Z</date>\n\t\t\t<key>Normalization</key><integer>1236</integer>\n\t\t\t<key>Persistent ID</key><string>A8AA9D9C7593CA16</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/Py4Inf-06-Strings.mp3%202.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1157</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1157</integer>\n\t\t\t<key>Name</key><string>Py4Inf-05-Iterations.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>22438474</integer>\n\t\t\t<key>Total Time</key><integer>2804297</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-12-11T01:29:55Z</date>\n\t\t\t<key>Date Added</key><date>2014-12-11T01:29:55Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-09-18T00:51:00Z</date>\n\t\t\t<key>Normalization</key><integer>1275</integer>\n\t\t\t<key>Persistent ID</key><string>25B25A8733234ACF</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/Py4Inf-05-Iterations.mp3%202.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1159</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1159</integer>\n\t\t\t<key>Name</key><string>Py4Inf-04-Functions.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>13474503</integer>\n\t\t\t<key>Total Time</key><integer>1683800</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-12-11T01:30:25Z</date>\n\t\t\t<key>Date Added</key><date>2014-12-11T01:30:25Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-09-18T00:57:00Z</date>\n\t\t\t<key>Normalization</key><integer>1204</integer>\n\t\t\t<key>Persistent ID</key><string>2B78100D527C4417</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/Py4Inf-04-Functions.mp3%202.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1161</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1161</integer>\n\t\t\t<key>Name</key><string>Py4Inf-03-Conditional.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>18372567</integer>\n\t\t\t<key>Total Time</key><integer>2296058</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-12-11T01:31:34Z</date>\n\t\t\t<key>Date Added</key><date>2014-12-11T01:31:34Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-09-18T01:00:00Z</date>\n\t\t\t<key>Normalization</key><integer>1338</integer>\n\t\t\t<key>Persistent ID</key><string>2644C306C5CC7947</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/Py4Inf-03-Conditional.mp3%202.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1163</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1163</integer>\n\t\t\t<key>Name</key><string>Py4Inf-02-Expressions.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>20631428</integer>\n\t\t\t<key>Total Time</key><integer>2578416</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-12-11T01:32:46Z</date>\n\t\t\t<key>Date Added</key><date>2014-12-11T01:32:46Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-09-18T01:03:00Z</date>\n\t\t\t<key>Normalization</key><integer>1245</integer>\n\t\t\t<key>Persistent ID</key><string>0EBCA97AC97E9C82</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/Py4Inf-02-Expressions.mp3%202.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1165</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1165</integer>\n\t\t\t<key>Name</key><string>Py4Inf-01-Intro.mp3</string>\n\t\t\t<key>Artist</key><string>Recording by Dr. Chuck</string>\n\t\t\t<key>Composer</key><string>www.dr-chuck.com</string>\n\t\t\t<key>Album</key><string>Python for Informatics's official Podcast.</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>27428698</integer>\n\t\t\t<key>Total Time</key><integer>3428075</integer>\n\t\t\t<key>Year</key><integer>2013</integer>\n\t\t\t<key>BPM</key><integer>120</integer>\n\t\t\t<key>Date Modified</key><date>2014-12-11T01:34:13Z</date>\n\t\t\t<key>Date Added</key><date>2014-12-11T01:34:13Z</date>\n\t\t\t<key>Bit Rate</key><integer>64</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2013-09-18T01:04:00Z</date>\n\t\t\t<key>Normalization</key><integer>1219</integer>\n\t\t\t<key>Persistent ID</key><string>AFD4F92B8EA0A3E7</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Python%20for%20Informatics's%20official%20Podcast_/Py4Inf-01-Intro.mp3%202.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1175</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1175</integer>\n\t\t\t<key>Name</key><string>Python 1994 Workshop 2-HD (1080p)</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>26790760</integer>\n\t\t\t<key>Total Time</key><integer>40033</integer>\n\t\t\t<key>Date Modified</key><date>2015-01-20T14:24:15Z</date>\n\t\t\t<key>Date Added</key><date>2015-01-20T14:24:15Z</date>\n\t\t\t<key>Bit Rate</key><integer>105</integer>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>5549223E93B9DB8A</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>1920</integer>\n\t\t\t<key>Video Height</key><integer>1080</integer>\n\t\t\t<key>File Type</key><integer>1295275552</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Desktop/NoBackup/Python%201994%20Workshop%202-HD%20(1080p).m4v</string>\n\t\t\t<key>File Folder Count</key><integer>3</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>1177</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1177</integer>\n\t\t\t<key>Name</key><string>Python 1994 Workshop 2-HD (1080p)</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>26790760</integer>\n\t\t\t<key>Total Time</key><integer>40033</integer>\n\t\t\t<key>Date Modified</key><date>2015-01-20T14:29:30Z</date>\n\t\t\t<key>Date Added</key><date>2015-01-20T14:29:31Z</date>\n\t\t\t<key>Bit Rate</key><integer>105</integer>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>D8AAE1A4EE4201BF</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>1920</integer>\n\t\t\t<key>Video Height</key><integer>1080</integer>\n\t\t\t<key>File Type</key><integer>1295275552</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Desktop/NoBackup/Python%201994%20Workshop%202-HD%20(1080p).m4v</string>\n\t\t\t<key>File Folder Count</key><integer>3</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>1183</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1183</integer>\n\t\t\t<key>Name</key><string>Ian Foster on the Globus Project</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Album Artist</key><string>Charles Severance</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>12907054</integer>\n\t\t\t<key>Total Time</key><integer>538305</integer>\n\t\t\t<key>Track Number</key><integer>33</integer>\n\t\t\t<key>Year</key><integer>2015</integer>\n\t\t\t<key>Date Modified</key><date>2015-02-06T19:14:08Z</date>\n\t\t\t<key>Date Added</key><date>2015-02-06T19:14:08Z</date>\n\t\t\t<key>Bit Rate</key><integer>192</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Comments</key><string>Author Charles Severance provides an audio recording of his Computing Conversations column, in which he discusses his interview with Ian Foster about how the Globus project helps move large amounts of data efficiently and safely, allowing scientists to fo</string>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3506877497</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-02-16T01:38:17Z</date>\n\t\t\t<key>Release Date</key><date>2015-02-05T18:12:51Z</date>\n\t\t\t<key>Persistent ID</key><string>D3D337E7943E6045</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/33%20Ian%20Foster%20on%20the%20Globus%20Project.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1185</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1185</integer>\n\t\t\t<key>Name</key><string>Khan Academy and Computer Science</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Album Artist</key><string>Charles Severance</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>8945498</integer>\n\t\t\t<key>Total Time</key><integer>558837</integer>\n\t\t\t<key>Track Number</key><integer>34</integer>\n\t\t\t<key>Year</key><integer>2015</integer>\n\t\t\t<key>Date Modified</key><date>2015-02-06T13:14:15Z</date>\n\t\t\t<key>Date Added</key><date>2015-02-06T19:14:15Z</date>\n\t\t\t<key>Bit Rate</key><integer>128</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Comments</key><string>Author Charles Severance provides an audio recording of his column in which he discusses his interview with John Resig and Pamela Fox regarding the somewhat recent addition of computer science to the topics</string>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3506876670</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-02-16T01:24:30Z</date>\n\t\t\t<key>Release Date</key><date>2015-02-05T22:40:06Z</date>\n\t\t\t<key>Persistent ID</key><string>2D09494B09676912</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/34%20Khan%20Academy%20and%20Computer%20Science.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1187</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1187</integer>\n\t\t\t<key>Name</key><string>Guido van Rossumon the Early Years of Python</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Album Artist</key><string>Charles Severance</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>11240660</integer>\n\t\t\t<key>Total Time</key><integer>701884</integer>\n\t\t\t<key>Track Number</key><integer>35</integer>\n\t\t\t<key>Year</key><integer>2015</integer>\n\t\t\t<key>Date Modified</key><date>2015-02-06T19:14:22Z</date>\n\t\t\t<key>Date Added</key><date>2015-02-06T19:14:22Z</date>\n\t\t\t<key>Bit Rate</key><integer>128</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Comments</key><string>Author Charles Severance provides an audio recording of his column in which he discusses his interview with Guido van Rossum about the birth of the general-purpose, high-level Python programming language.</string>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3506876007</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-02-16T01:13:27Z</date>\n\t\t\t<key>Release Date</key><date>2015-02-05T22:44:14Z</date>\n\t\t\t<key>Persistent ID</key><string>A94394BB6ABFB98B</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/35%20Guido%20van%20Rossumon%20the%20Early%20Years%20of%20Python.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1193</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1193</integer>\n\t\t\t<key>Name</key><string>Guido van Rossum on the Modern Era of Python</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>11869958</integer>\n\t\t\t<key>Total Time</key><integer>741616</integer>\n\t\t\t<key>Year</key><integer>2015</integer>\n\t\t\t<key>Date Modified</key><date>2015-05-13T09:53:00Z</date>\n\t\t\t<key>Date Added</key><date>2015-05-13T09:53:00Z</date>\n\t\t\t<key>Bit Rate</key><integer>128</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2015-05-11T22:44:14Z</date>\n\t\t\t<key>Normalization</key><integer>1244</integer>\n\t\t\t<key>Persistent ID</key><string>3F226136F2058D37</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/Guido%20van%20Rossum%20on%20the%20Modern%20Era%20of%20Python.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1195</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1195</integer>\n\t\t\t<key>Name</key><string>John Resig on Building jQuery</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Album Artist</key><string>Charles Severance</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>14307705</integer>\n\t\t\t<key>Total Time</key><integer>595983</integer>\n\t\t\t<key>Year</key><integer>2015</integer>\n\t\t\t<key>Date Modified</key><date>2015-05-13T09:53:04Z</date>\n\t\t\t<key>Date Added</key><date>2015-05-13T09:53:04Z</date>\n\t\t\t<key>Bit Rate</key><integer>192</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Comments</key><string>Author Charles Severance provides an audio recording of his column in which he discusses his interview with John Resig about the JavaScript library jQuery and how it came to play a key role in the browser software ecosystem. From Computer's May 2015 issue</string>\n\t\t\t<key>Release Date</key><date>2015-05-11T22:44:14Z</date>\n\t\t\t<key>Persistent ID</key><string>2B6E0CE4321184B7</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/John%20Resig%20on%20Building%20jQuery.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1201</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1201</integer>\n\t\t\t<key>Name</key><string>Roy T. Fielding on Understanding the REST Style</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Album Artist</key><string>Charles Severance</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>16411711</integer>\n\t\t\t<key>Total Time</key><integer>683650</integer>\n\t\t\t<key>Track Number</key><integer>38</integer>\n\t\t\t<key>Year</key><integer>2015</integer>\n\t\t\t<key>Date Modified</key><date>2015-06-15T01:47:22Z</date>\n\t\t\t<key>Date Added</key><date>2015-06-15T01:47:22Z</date>\n\t\t\t<key>Bit Rate</key><integer>192</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Comments</key><string>Author Charles Severance provides an audio recording of his Computing Conversations column in which he discusses his interview with Roy T. Fielding about his PhD dissertation, which defined the Representational State Transfer architectural style. From Com</string>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3521440617</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-08-03T13:56:57Z</date>\n\t\t\t<key>Release Date</key><date>2015-06-12T22:44:14Z</date>\n\t\t\t<key>Persistent ID</key><string>A060EC817AD4F1E0</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/38%20Roy%20T.%20Fielding%20on%20Understanding%20the%20REST%20Style.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1203</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1203</integer>\n\t\t\t<key>Name</key><string>01-packets</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>3247026</integer>\n\t\t\t<key>Total Time</key><integer>770538</integer>\n\t\t\t<key>Date Modified</key><date>2015-05-21T22:32:08Z</date>\n\t\t\t<key>Date Added</key><date>2015-06-21T16:37:05Z</date>\n\t\t\t<key>Bit Rate</key><integer>31</integer>\n\t\t\t<key>Persistent ID</key><string>D82285C0CADF2EEF</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Location</key><string>file:///Applications/MAMP/htdocs/net-intro/book/audio/01-packets.mp4</string>\n\t\t\t<key>File Folder Count</key><integer>7</integer>\n\t\t\t<key>Library Folder Count</key><integer>5</integer>\n\t\t</dict>\n\t\t<key>1205</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1205</integer>\n\t\t\t<key>Name</key><string>02-architecture</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>4179143</integer>\n\t\t\t<key>Total Time</key><integer>995289</integer>\n\t\t\t<key>Date Modified</key><date>2015-05-21T22:32:14Z</date>\n\t\t\t<key>Date Added</key><date>2015-06-21T16:37:05Z</date>\n\t\t\t<key>Bit Rate</key><integer>31</integer>\n\t\t\t<key>Persistent ID</key><string>7F8830615EB07E67</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Location</key><string>file:///Applications/MAMP/htdocs/net-intro/book/audio/02-architecture.mp4</string>\n\t\t\t<key>File Folder Count</key><integer>7</integer>\n\t\t\t<key>Library Folder Count</key><integer>5</integer>\n\t\t</dict>\n\t\t<key>1207</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1207</integer>\n\t\t\t<key>Name</key><string>03-link-layer</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>2793695</integer>\n\t\t\t<key>Total Time</key><integer>662617</integer>\n\t\t\t<key>Date Modified</key><date>2015-05-21T22:32:18Z</date>\n\t\t\t<key>Date Added</key><date>2015-06-21T16:37:05Z</date>\n\t\t\t<key>Bit Rate</key><integer>31</integer>\n\t\t\t<key>Persistent ID</key><string>24CA170AE53EB8B3</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Location</key><string>file:///Applications/MAMP/htdocs/net-intro/book/audio/03-link-layer.mp4</string>\n\t\t\t<key>File Folder Count</key><integer>7</integer>\n\t\t\t<key>Library Folder Count</key><integer>5</integer>\n\t\t</dict>\n\t\t<key>1209</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1209</integer>\n\t\t\t<key>Name</key><string>04-internet-layer</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>6445932</integer>\n\t\t\t<key>Total Time</key><integer>1540688</integer>\n\t\t\t<key>Date Modified</key><date>2015-05-21T22:32:26Z</date>\n\t\t\t<key>Date Added</key><date>2015-06-21T16:37:05Z</date>\n\t\t\t<key>Bit Rate</key><integer>31</integer>\n\t\t\t<key>Persistent ID</key><string>A23E13A0F14D3382</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Location</key><string>file:///Applications/MAMP/htdocs/net-intro/book/audio/04-internet-layer.mp4</string>\n\t\t\t<key>File Folder Count</key><integer>7</integer>\n\t\t\t<key>Library Folder Count</key><integer>5</integer>\n\t\t</dict>\n\t\t<key>1211</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1211</integer>\n\t\t\t<key>Name</key><string>05-dns</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>1158178</integer>\n\t\t\t<key>Total Time</key><integer>276532</integer>\n\t\t\t<key>Date Modified</key><date>2015-05-21T22:32:28Z</date>\n\t\t\t<key>Date Added</key><date>2015-06-21T16:37:05Z</date>\n\t\t\t<key>Bit Rate</key><integer>31</integer>\n\t\t\t<key>Persistent ID</key><string>D65BB5251D56C647</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Location</key><string>file:///Applications/MAMP/htdocs/net-intro/book/audio/05-dns.mp4</string>\n\t\t\t<key>File Folder Count</key><integer>7</integer>\n\t\t\t<key>Library Folder Count</key><integer>5</integer>\n\t\t</dict>\n\t\t<key>1213</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1213</integer>\n\t\t\t<key>Name</key><string>06-transport-layer</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>2747826</integer>\n\t\t\t<key>Total Time</key><integer>652004</integer>\n\t\t\t<key>Date Modified</key><date>2015-05-21T22:32:31Z</date>\n\t\t\t<key>Date Added</key><date>2015-06-21T16:37:05Z</date>\n\t\t\t<key>Bit Rate</key><integer>31</integer>\n\t\t\t<key>Persistent ID</key><string>F3D95B4DBCF6B3F5</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Location</key><string>file:///Applications/MAMP/htdocs/net-intro/book/audio/06-transport-layer.mp4</string>\n\t\t\t<key>File Folder Count</key><integer>7</integer>\n\t\t\t<key>Library Folder Count</key><integer>5</integer>\n\t\t</dict>\n\t\t<key>1215</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1215</integer>\n\t\t\t<key>Name</key><string>07-application-layer</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>4897176</integer>\n\t\t\t<key>Total Time</key><integer>1168282</integer>\n\t\t\t<key>Date Modified</key><date>2015-05-21T22:32:38Z</date>\n\t\t\t<key>Date Added</key><date>2015-06-21T16:37:05Z</date>\n\t\t\t<key>Bit Rate</key><integer>31</integer>\n\t\t\t<key>Persistent ID</key><string>EA268C5731134645</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Location</key><string>file:///Applications/MAMP/htdocs/net-intro/book/audio/07-application-layer.mp4</string>\n\t\t\t<key>File Folder Count</key><integer>7</integer>\n\t\t\t<key>Library Folder Count</key><integer>5</integer>\n\t\t</dict>\n\t\t<key>1217</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1217</integer>\n\t\t\t<key>Name</key><string>08-secure-transport</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>3176578</integer>\n\t\t\t<key>Total Time</key><integer>754382</integer>\n\t\t\t<key>Date Modified</key><date>2015-05-21T22:32:42Z</date>\n\t\t\t<key>Date Added</key><date>2015-06-21T16:37:05Z</date>\n\t\t\t<key>Bit Rate</key><integer>31</integer>\n\t\t\t<key>Persistent ID</key><string>4BBC8C30F4B0C29C</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Location</key><string>file:///Applications/MAMP/htdocs/net-intro/book/audio/08-secure-transport.mp4</string>\n\t\t\t<key>File Folder Count</key><integer>7</integer>\n\t\t\t<key>Library Folder Count</key><integer>5</integer>\n\t\t</dict>\n\t\t<key>1219</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1219</integer>\n\t\t\t<key>Name</key><string>09-OSI</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>2022391</integer>\n\t\t\t<key>Total Time</key><integer>478074</integer>\n\t\t\t<key>Date Modified</key><date>2015-05-21T22:32:45Z</date>\n\t\t\t<key>Date Added</key><date>2015-06-21T16:37:05Z</date>\n\t\t\t<key>Bit Rate</key><integer>31</integer>\n\t\t\t<key>Persistent ID</key><string>1FD751530A6B65B9</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Location</key><string>file:///Applications/MAMP/htdocs/net-intro/book/audio/09-OSI.mp4</string>\n\t\t\t<key>File Folder Count</key><integer>7</integer>\n\t\t\t<key>Library Folder Count</key><integer>5</integer>\n\t\t</dict>\n\t\t<key>1221</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1221</integer>\n\t\t\t<key>Name</key><string>10-wrap-up</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>1085037</integer>\n\t\t\t<key>Total Time</key><integer>258967</integer>\n\t\t\t<key>Date Modified</key><date>2015-05-21T22:32:46Z</date>\n\t\t\t<key>Date Added</key><date>2015-06-21T16:37:05Z</date>\n\t\t\t<key>Bit Rate</key><integer>31</integer>\n\t\t\t<key>Persistent ID</key><string>A0B46BB975E8A270</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Location</key><string>file:///Applications/MAMP/htdocs/net-intro/book/audio/10-wrap-up.mp4</string>\n\t\t\t<key>File Folder Count</key><integer>7</integer>\n\t\t\t<key>Library Folder Count</key><integer>5</integer>\n\t\t</dict>\n\t\t<key>1223</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1223</integer>\n\t\t\t<key>Name</key><string>2015-08-Jain-01</string>\n\t\t\t<key>Kind</key><string>WAV audio file</string>\n\t\t\t<key>Size</key><integer>31507878</integer>\n\t\t\t<key>Total Time</key><integer>714463</integer>\n\t\t\t<key>Date Modified</key><date>2015-06-26T15:24:05Z</date>\n\t\t\t<key>Date Added</key><date>2015-06-26T15:26:25Z</date>\n\t\t\t<key>Bit Rate</key><integer>352</integer>\n\t\t\t<key>Sample Rate</key><integer>22050</integer>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Play Date</key><integer>3518163853</integer>\n\t\t\t<key>Play Date UTC</key><date>2015-06-26T15:44:13Z</date>\n\t\t\t<key>Persistent ID</key><string>792FEEF72151F0C7</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1463899717</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Desktop/NoBackup/2015-08-Jain-01.wav</string>\n\t\t\t<key>File Folder Count</key><integer>3</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>1225</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1225</integer>\n\t\t\t<key>Name</key><string>2015-08-Jain-01</string>\n\t\t\t<key>Kind</key><string>AIFF audio file</string>\n\t\t\t<key>Size</key><integer>126031426</integer>\n\t\t\t<key>Total Time</key><integer>714463</integer>\n\t\t\t<key>Date Modified</key><date>2015-06-26T15:27:35Z</date>\n\t\t\t<key>Date Added</key><date>2015-06-26T15:27:39Z</date>\n\t\t\t<key>Bit Rate</key><integer>1411</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Persistent ID</key><string>DA1E0BCD91D02474</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>File Type</key><integer>1095321158</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Desktop/NoBackup/2015-08-Jain-01.aif</string>\n\t\t\t<key>File Folder Count</key><integer>3</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>1227</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1227</integer>\n\t\t\t<key>Name</key><string>Anil Jain: 25 Years of Biometric Recognition</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Album Artist</key><string>Charles Severance</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>15876933</integer>\n\t\t\t<key>Total Time</key><integer>661368</integer>\n\t\t\t<key>Track Number</key><integer>39</integer>\n\t\t\t<key>Year</key><integer>2015</integer>\n\t\t\t<key>Date Modified</key><date>2015-08-20T18:41:39Z</date>\n\t\t\t<key>Date Added</key><date>2015-08-20T18:41:39Z</date>\n\t\t\t<key>Bit Rate</key><integer>192</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Comments</key><string>Author Charles Severance provides an audio recording of his Computing Conversations column in which he discusses his interview with Anil Jain about the evolution of the biometric recognition field. From Computer's August 2015 issue: www.computer.org/csdl/</string>\n\t\t\t<key>Release Date</key><date>2015-08-12T09:18:14Z</date>\n\t\t\t<key>Persistent ID</key><string>71379AB8AAA86A2F</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>file:///Users/csev/Music/iTunes/iTunes%20Music/Podcasts/Computing%20Conversations/39%20Anil%20Jain_%2025%20Years%20of%20Biometric%20Recognition.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>1</integer>\n\t\t</dict>\n\t\t<key>1231</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1231</integer>\n\t\t\t<key>Name</key><string>Waste Management</string>\n\t\t\t<key>Artist</key><string>Undercover Boss</string>\n\t\t\t<key>Album</key><string>Undercover Boss, Season 1</string>\n\t\t\t<key>Genre</key><string>Reality TV</string>\n\t\t\t<key>Kind</key><string>Purchased MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>530299729</integer>\n\t\t\t<key>Total Time</key><integer>2565232</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>1</integer>\n\t\t\t<key>Track Count</key><integer>9</integer>\n\t\t\t<key>Year</key><integer>2010</integer>\n\t\t\t<key>Date Modified</key><date>2015-01-06T18:11:06Z</date>\n\t\t\t<key>Date Added</key><date>2011-01-30T01:26:11Z</date>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Release Date</key><date>2010-02-07T08:00:00Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Series</key><string>Undercover Boss</string>\n\t\t\t<key>Season</key><integer>1</integer>\n\t\t\t<key>Episode</key><string>101</string>\n\t\t\t<key>Episode Order</key><integer>1</integer>\n\t\t\t<key>Sort Album</key><string>Undercover Boss, Season 1</string>\n\t\t\t<key>Sort Artist</key><string>Undercover Boss</string>\n\t\t\t<key>Sort Name</key><string>Waste Management</string>\n\t\t\t<key>Persistent ID</key><string>391D47CC7EC038FB</string>\n\t\t\t<key>Content Rating</key><string>us-tv|TV-PG|400|</string>\n\t\t\t<key>Track Type</key><string>Remote</string>\n\t\t\t<key>Purchased</key><true/>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>TV Show</key><true/>\n\t\t</dict>\n\t\t<key>1233</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1233</integer>\n\t\t\t<key>Name</key><string>Sleep Like a Baby Tonight</string>\n\t\t\t<key>Artist</key><string>U2</string>\n\t\t\t<key>Album Artist</key><string>U2</string>\n\t\t\t<key>Album</key><string>Songs of Innocence</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>Purchased AAC audio file</string>\n\t\t\t<key>Size</key><integer>10414554</integer>\n\t\t\t<key>Total Time</key><integer>301641</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>9</integer>\n\t\t\t<key>Track Count</key><integer>11</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-09-08T01:49:11Z</date>\n\t\t\t<key>Date Added</key><date>2014-09-08T01:49:11Z</date>\n\t\t\t<key>Bit Rate</key><integer>256</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2014-09-09T07:00:00Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Sort Album</key><string>Songs of Innocence</string>\n\t\t\t<key>Sort Artist</key><string>U2</string>\n\t\t\t<key>Sort Name</key><string>Sleep Like a Baby Tonight</string>\n\t\t\t<key>Persistent ID</key><string>62E58E8086A3DC15</string>\n\t\t\t<key>Track Type</key><string>Remote</string>\n\t\t\t<key>Purchased</key><true/>\n\t\t</dict>\n\t\t<key>1235</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1235</integer>\n\t\t\t<key>Name</key><string>Evergreen</string>\n\t\t\t<key>Artist</key><string>The Black Crowes</string>\n\t\t\t<key>Album Artist</key><string>The Black Crowes</string>\n\t\t\t<key>Composer</key><string>Chris Robinson &#38; Rich Robinson</string>\n\t\t\t<key>Album</key><string>Warpaint</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>Purchased AAC audio file</string>\n\t\t\t<key>Size</key><integer>4281743</integer>\n\t\t\t<key>Total Time</key><integer>261373</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>4</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2008</integer>\n\t\t\t<key>Date Modified</key><date>2015-01-06T18:11:06Z</date>\n\t\t\t<key>Date Added</key><date>2008-03-10T03:44:03Z</date>\n\t\t\t<key>Bit Rate</key><integer>128</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2008-02-29T08:00:00Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Sort Album</key><string>Warpaint</string>\n\t\t\t<key>Sort Album Artist</key><string>Black Crowes</string>\n\t\t\t<key>Sort Artist</key><string>Black Crowes</string>\n\t\t\t<key>Sort Name</key><string>Evergreen</string>\n\t\t\t<key>Persistent ID</key><string>F3AB0518196E263E</string>\n\t\t\t<key>Track Type</key><string>Remote</string>\n\t\t\t<key>Purchased</key><true/>\n\t\t</dict>\n\t\t<key>1237</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1237</integer>\n\t\t\t<key>Name</key><string>Oh Josephine</string>\n\t\t\t<key>Artist</key><string>The Black Crowes</string>\n\t\t\t<key>Album Artist</key><string>The Black Crowes</string>\n\t\t\t<key>Composer</key><string>Chris Robinson &#38; Rich Robinson</string>\n\t\t\t<key>Album</key><string>Warpaint</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>Purchased AAC audio file</string>\n\t\t\t<key>Size</key><integer>6600622</integer>\n\t\t\t<key>Total Time</key><integer>398907</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>3</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2008</integer>\n\t\t\t<key>Date Modified</key><date>2015-01-06T18:11:06Z</date>\n\t\t\t<key>Date Added</key><date>2008-03-10T03:44:00Z</date>\n\t\t\t<key>Bit Rate</key><integer>128</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2008-02-29T08:00:00Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Sort Album</key><string>Warpaint</string>\n\t\t\t<key>Sort Album Artist</key><string>Black Crowes</string>\n\t\t\t<key>Sort Artist</key><string>Black Crowes</string>\n\t\t\t<key>Sort Name</key><string>Oh Josephine</string>\n\t\t\t<key>Persistent ID</key><string>6746AAB2FE222857</string>\n\t\t\t<key>Track Type</key><string>Remote</string>\n\t\t\t<key>Purchased</key><true/>\n\t\t</dict>\n\t\t<key>1239</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1239</integer>\n\t\t\t<key>Name</key><string>Movin' On Down the Line</string>\n\t\t\t<key>Artist</key><string>The Black Crowes</string>\n\t\t\t<key>Album Artist</key><string>The Black Crowes</string>\n\t\t\t<key>Composer</key><string>Chris Robinson &#38; Rich Robinson</string>\n\t\t\t<key>Album</key><string>Warpaint</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>Purchased AAC audio file</string>\n\t\t\t<key>Size</key><integer>5657162</integer>\n\t\t\t<key>Total Time</key><integer>342693</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>7</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2008</integer>\n\t\t\t<key>Date Modified</key><date>2015-01-06T18:11:06Z</date>\n\t\t\t<key>Date Added</key><date>2008-03-10T03:44:16Z</date>\n\t\t\t<key>Bit Rate</key><integer>128</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2008-02-29T08:00:00Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Sort Album</key><string>Warpaint</string>\n\t\t\t<key>Sort Album Artist</key><string>Black Crowes</string>\n\t\t\t<key>Sort Artist</key><string>Black Crowes</string>\n\t\t\t<key>Sort Name</key><string>Movin' On Down the Line</string>\n\t\t\t<key>Persistent ID</key><string>22967588F96A0239</string>\n\t\t\t<key>Track Type</key><string>Remote</string>\n\t\t\t<key>Purchased</key><true/>\n\t\t</dict>\n\t\t<key>1241</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1241</integer>\n\t\t\t<key>Name</key><string>Wounded Bird</string>\n\t\t\t<key>Artist</key><string>The Black Crowes</string>\n\t\t\t<key>Album Artist</key><string>The Black Crowes</string>\n\t\t\t<key>Composer</key><string>Chris Robinson &#38; Rich Robinson</string>\n\t\t\t<key>Album</key><string>Warpaint</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>Purchased AAC audio file</string>\n\t\t\t<key>Size</key><integer>4320806</integer>\n\t\t\t<key>Total Time</key><integer>263453</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>8</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2008</integer>\n\t\t\t<key>Date Modified</key><date>2015-01-06T18:11:06Z</date>\n\t\t\t<key>Date Added</key><date>2008-03-10T03:44:26Z</date>\n\t\t\t<key>Bit Rate</key><integer>128</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2008-02-29T08:00:00Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Sort Album</key><string>Warpaint</string>\n\t\t\t<key>Sort Album Artist</key><string>Black Crowes</string>\n\t\t\t<key>Sort Artist</key><string>Black Crowes</string>\n\t\t\t<key>Sort Name</key><string>Wounded Bird</string>\n\t\t\t<key>Persistent ID</key><string>383A5BCF1861134B</string>\n\t\t\t<key>Track Type</key><string>Remote</string>\n\t\t\t<key>Purchased</key><true/>\n\t\t</dict>\n\t\t<key>1243</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1243</integer>\n\t\t\t<key>Name</key><string>Volcano</string>\n\t\t\t<key>Artist</key><string>U2</string>\n\t\t\t<key>Album Artist</key><string>U2</string>\n\t\t\t<key>Album</key><string>Songs of Innocence</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>Purchased AAC audio file</string>\n\t\t\t<key>Size</key><integer>6904386</integer>\n\t\t\t<key>Total Time</key><integer>194116</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>6</integer>\n\t\t\t<key>Track Count</key><integer>11</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-09-08T01:49:11Z</date>\n\t\t\t<key>Date Added</key><date>2014-09-08T01:49:11Z</date>\n\t\t\t<key>Bit Rate</key><integer>256</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2014-09-09T07:00:00Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Sort Album</key><string>Songs of Innocence</string>\n\t\t\t<key>Sort Artist</key><string>U2</string>\n\t\t\t<key>Sort Name</key><string>Volcano</string>\n\t\t\t<key>Persistent ID</key><string>D99D9ECBEE314F47</string>\n\t\t\t<key>Track Type</key><string>Remote</string>\n\t\t\t<key>Purchased</key><true/>\n\t\t</dict>\n\t\t<key>1245</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1245</integer>\n\t\t\t<key>Name</key><string>Wee Who See the Deep</string>\n\t\t\t<key>Artist</key><string>The Black Crowes</string>\n\t\t\t<key>Album Artist</key><string>The Black Crowes</string>\n\t\t\t<key>Composer</key><string>Chris Robinson &#38; Rich Robinson</string>\n\t\t\t<key>Album</key><string>Warpaint</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>Purchased AAC audio file</string>\n\t\t\t<key>Size</key><integer>4735085</integer>\n\t\t\t<key>Total Time</key><integer>290520</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>5</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2008</integer>\n\t\t\t<key>Date Modified</key><date>2015-01-06T18:11:06Z</date>\n\t\t\t<key>Date Added</key><date>2008-03-10T03:44:04Z</date>\n\t\t\t<key>Bit Rate</key><integer>128</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2008-02-29T08:00:00Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Sort Album</key><string>Warpaint</string>\n\t\t\t<key>Sort Album Artist</key><string>Black Crowes</string>\n\t\t\t<key>Sort Artist</key><string>Black Crowes</string>\n\t\t\t<key>Sort Name</key><string>Wee Who See the Deep</string>\n\t\t\t<key>Persistent ID</key><string>C8E459A642C4E723</string>\n\t\t\t<key>Track Type</key><string>Remote</string>\n\t\t\t<key>Purchased</key><true/>\n\t\t</dict>\n\t\t<key>1247</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1247</integer>\n\t\t\t<key>Name</key><string>Cedarwood Road</string>\n\t\t\t<key>Artist</key><string>U2</string>\n\t\t\t<key>Album Artist</key><string>U2</string>\n\t\t\t<key>Album</key><string>Songs of Innocence</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>Purchased AAC audio file</string>\n\t\t\t<key>Size</key><integer>9336108</integer>\n\t\t\t<key>Total Time</key><integer>265268</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>8</integer>\n\t\t\t<key>Track Count</key><integer>11</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-09-08T01:49:11Z</date>\n\t\t\t<key>Date Added</key><date>2014-09-08T01:49:11Z</date>\n\t\t\t<key>Bit Rate</key><integer>256</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2014-09-09T07:00:00Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Sort Album</key><string>Songs of Innocence</string>\n\t\t\t<key>Sort Artist</key><string>U2</string>\n\t\t\t<key>Sort Name</key><string>Cedarwood Road</string>\n\t\t\t<key>Persistent ID</key><string>96677BCF4E5577FE</string>\n\t\t\t<key>Track Type</key><string>Remote</string>\n\t\t\t<key>Purchased</key><true/>\n\t\t</dict>\n\t\t<key>1249</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1249</integer>\n\t\t\t<key>Name</key><string>Locust Street</string>\n\t\t\t<key>Artist</key><string>The Black Crowes</string>\n\t\t\t<key>Album Artist</key><string>The Black Crowes</string>\n\t\t\t<key>Composer</key><string>Chris Robinson &#38; Rich Robinson</string>\n\t\t\t<key>Album</key><string>Warpaint</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>Purchased AAC audio file</string>\n\t\t\t<key>Size</key><integer>4203564</integer>\n\t\t\t<key>Total Time</key><integer>255240</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>6</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2008</integer>\n\t\t\t<key>Date Modified</key><date>2015-01-06T18:11:06Z</date>\n\t\t\t<key>Date Added</key><date>2008-03-10T03:44:07Z</date>\n\t\t\t<key>Bit Rate</key><integer>128</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2008-02-29T08:00:00Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Sort Album</key><string>Warpaint</string>\n\t\t\t<key>Sort Album Artist</key><string>Black Crowes</string>\n\t\t\t<key>Sort Artist</key><string>Black Crowes</string>\n\t\t\t<key>Sort Name</key><string>Locust Street</string>\n\t\t\t<key>Persistent ID</key><string>81379B7604AE19D4</string>\n\t\t\t<key>Track Type</key><string>Remote</string>\n\t\t\t<key>Purchased</key><true/>\n\t\t</dict>\n\t\t<key>1251</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1251</integer>\n\t\t\t<key>Name</key><string>Raised By Wolves</string>\n\t\t\t<key>Artist</key><string>U2</string>\n\t\t\t<key>Album Artist</key><string>U2</string>\n\t\t\t<key>Album</key><string>Songs of Innocence</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>Purchased AAC audio file</string>\n\t\t\t<key>Size</key><integer>8636426</integer>\n\t\t\t<key>Total Time</key><integer>245599</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>7</integer>\n\t\t\t<key>Track Count</key><integer>11</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-09-08T01:49:11Z</date>\n\t\t\t<key>Date Added</key><date>2014-09-08T01:49:11Z</date>\n\t\t\t<key>Bit Rate</key><integer>256</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2014-09-09T07:00:00Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Sort Album</key><string>Songs of Innocence</string>\n\t\t\t<key>Sort Artist</key><string>U2</string>\n\t\t\t<key>Sort Name</key><string>Raised By Wolves</string>\n\t\t\t<key>Persistent ID</key><string>66C39558AF5C9038</string>\n\t\t\t<key>Track Type</key><string>Remote</string>\n\t\t\t<key>Purchased</key><true/>\n\t\t</dict>\n\t\t<key>1253</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1253</integer>\n\t\t\t<key>Name</key><string>The Troubles</string>\n\t\t\t<key>Artist</key><string>U2</string>\n\t\t\t<key>Album Artist</key><string>U2</string>\n\t\t\t<key>Album</key><string>Songs of Innocence</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>Purchased AAC audio file</string>\n\t\t\t<key>Size</key><integer>9928436</integer>\n\t\t\t<key>Total Time</key><integer>285843</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>11</integer>\n\t\t\t<key>Track Count</key><integer>11</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-09-08T01:49:11Z</date>\n\t\t\t<key>Date Added</key><date>2014-09-08T01:49:11Z</date>\n\t\t\t<key>Bit Rate</key><integer>256</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2014-09-09T07:00:00Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Sort Album</key><string>Songs of Innocence</string>\n\t\t\t<key>Sort Artist</key><string>U2</string>\n\t\t\t<key>Sort Name</key><string>Troubles</string>\n\t\t\t<key>Persistent ID</key><string>7D4700F9D877D6BA</string>\n\t\t\t<key>Track Type</key><string>Remote</string>\n\t\t\t<key>Purchased</key><true/>\n\t\t</dict>\n\t\t<key>1255</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1255</integer>\n\t\t\t<key>Name</key><string>This Is Where You Can Reach Me Now</string>\n\t\t\t<key>Artist</key><string>U2</string>\n\t\t\t<key>Album Artist</key><string>U2</string>\n\t\t\t<key>Album</key><string>Songs of Innocence</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>Purchased AAC audio file</string>\n\t\t\t<key>Size</key><integer>10715123</integer>\n\t\t\t<key>Total Time</key><integer>305134</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>10</integer>\n\t\t\t<key>Track Count</key><integer>11</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-09-08T01:49:11Z</date>\n\t\t\t<key>Date Added</key><date>2014-09-08T01:49:11Z</date>\n\t\t\t<key>Bit Rate</key><integer>256</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2014-09-09T07:00:00Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Sort Album</key><string>Songs of Innocence</string>\n\t\t\t<key>Sort Artist</key><string>U2</string>\n\t\t\t<key>Sort Name</key><string>This Is Where You Can Reach Me Now</string>\n\t\t\t<key>Persistent ID</key><string>3CED022220DF62AB</string>\n\t\t\t<key>Track Type</key><string>Remote</string>\n\t\t\t<key>Purchased</key><true/>\n\t\t</dict>\n\t\t<key>1257</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1257</integer>\n\t\t\t<key>Name</key><string>God's Got It</string>\n\t\t\t<key>Artist</key><string>The Black Crowes</string>\n\t\t\t<key>Album Artist</key><string>The Black Crowes</string>\n\t\t\t<key>Composer</key><string>Rev Charlie Jackson</string>\n\t\t\t<key>Album</key><string>Warpaint</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>Purchased AAC audio file</string>\n\t\t\t<key>Size</key><integer>3313451</integer>\n\t\t\t<key>Total Time</key><integer>202653</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>9</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2008</integer>\n\t\t\t<key>Date Modified</key><date>2015-01-06T18:11:06Z</date>\n\t\t\t<key>Date Added</key><date>2008-03-10T03:44:39Z</date>\n\t\t\t<key>Bit Rate</key><integer>128</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2008-02-29T08:00:00Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Sort Album</key><string>Warpaint</string>\n\t\t\t<key>Sort Album Artist</key><string>Black Crowes</string>\n\t\t\t<key>Sort Artist</key><string>Black Crowes</string>\n\t\t\t<key>Sort Name</key><string>God's Got It</string>\n\t\t\t<key>Persistent ID</key><string>7EE845DF9E36E5EB</string>\n\t\t\t<key>Track Type</key><string>Remote</string>\n\t\t\t<key>Purchased</key><true/>\n\t\t</dict>\n\t\t<key>1261</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1261</integer>\n\t\t\t<key>Name</key><string>California (There Is No End to Love)</string>\n\t\t\t<key>Artist</key><string>U2</string>\n\t\t\t<key>Album Artist</key><string>U2</string>\n\t\t\t<key>Album</key><string>Songs of Innocence</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>Purchased AAC audio file</string>\n\t\t\t<key>Size</key><integer>8465279</integer>\n\t\t\t<key>Total Time</key><integer>239846</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>3</integer>\n\t\t\t<key>Track Count</key><integer>11</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-09-08T01:49:11Z</date>\n\t\t\t<key>Date Added</key><date>2014-09-08T01:49:11Z</date>\n\t\t\t<key>Bit Rate</key><integer>256</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2014-09-09T07:00:00Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Sort Album</key><string>Songs of Innocence</string>\n\t\t\t<key>Sort Artist</key><string>U2</string>\n\t\t\t<key>Sort Name</key><string>California (There Is No End to Love)</string>\n\t\t\t<key>Persistent ID</key><string>18692FE711C8AD7B</string>\n\t\t\t<key>Track Type</key><string>Remote</string>\n\t\t\t<key>Purchased</key><true/>\n\t\t</dict>\n\t\t<key>1263</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1263</integer>\n\t\t\t<key>Name</key><string>Every Breaking Wave</string>\n\t\t\t<key>Artist</key><string>U2</string>\n\t\t\t<key>Album Artist</key><string>U2</string>\n\t\t\t<key>Album</key><string>Songs of Innocence</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>Purchased AAC audio file</string>\n\t\t\t<key>Size</key><integer>8842208</integer>\n\t\t\t<key>Total Time</key><integer>252162</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>2</integer>\n\t\t\t<key>Track Count</key><integer>11</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-09-08T01:49:11Z</date>\n\t\t\t<key>Date Added</key><date>2014-09-08T01:49:11Z</date>\n\t\t\t<key>Bit Rate</key><integer>256</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2014-09-09T07:00:00Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Sort Album</key><string>Songs of Innocence</string>\n\t\t\t<key>Sort Artist</key><string>U2</string>\n\t\t\t<key>Sort Name</key><string>Every Breaking Wave</string>\n\t\t\t<key>Persistent ID</key><string>1AD1F23A7CD0302F</string>\n\t\t\t<key>Track Type</key><string>Remote</string>\n\t\t\t<key>Purchased</key><true/>\n\t\t</dict>\n\t\t<key>1265</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1265</integer>\n\t\t\t<key>Name</key><string>Interview With the Onion News Network</string>\n\t\t\t<key>Artist</key><string>Onion News Network</string>\n\t\t\t<key>Album</key><string>Onion News Network, Season 1</string>\n\t\t\t<key>Genre</key><string>Comedy</string>\n\t\t\t<key>Kind</key><string>Purchased MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>63737563</integer>\n\t\t\t<key>Total Time</key><integer>302002</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>101</integer>\n\t\t\t<key>Year</key><integer>2011</integer>\n\t\t\t<key>Date Modified</key><date>2015-01-06T18:11:06Z</date>\n\t\t\t<key>Date Added</key><date>2011-01-30T01:26:48Z</date>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Release Date</key><date>2011-01-17T08:00:00Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Series</key><string>Onion News Network</string>\n\t\t\t<key>Season</key><integer>1</integer>\n\t\t\t<key>Episode</key><string>100</string>\n\t\t\t<key>Episode Order</key><integer>101</integer>\n\t\t\t<key>Sort Album</key><string>Onion News Network, Season 1</string>\n\t\t\t<key>Sort Artist</key><string>Onion News Network</string>\n\t\t\t<key>Sort Name</key><string>Interview With the Onion News Network</string>\n\t\t\t<key>Persistent ID</key><string>07CC3BE999B097F8</string>\n\t\t\t<key>Content Rating</key><string>us-tv|TV-14|500|</string>\n\t\t\t<key>Track Type</key><string>Remote</string>\n\t\t\t<key>Purchased</key><true/>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>TV Show</key><true/>\n\t\t</dict>\n\t\t<key>1267</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1267</integer>\n\t\t\t<key>Name</key><string>Song for Someone</string>\n\t\t\t<key>Artist</key><string>U2</string>\n\t\t\t<key>Album Artist</key><string>U2</string>\n\t\t\t<key>Album</key><string>Songs of Innocence</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>Purchased AAC audio file</string>\n\t\t\t<key>Size</key><integer>8024225</integer>\n\t\t\t<key>Total Time</key><integer>226763</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>4</integer>\n\t\t\t<key>Track Count</key><integer>11</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-09-08T01:49:11Z</date>\n\t\t\t<key>Date Added</key><date>2014-09-08T01:49:11Z</date>\n\t\t\t<key>Bit Rate</key><integer>256</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2014-09-09T07:00:00Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Sort Album</key><string>Songs of Innocence</string>\n\t\t\t<key>Sort Artist</key><string>U2</string>\n\t\t\t<key>Sort Name</key><string>Song for Someone</string>\n\t\t\t<key>Persistent ID</key><string>7B634B6143FAB119</string>\n\t\t\t<key>Track Type</key><string>Remote</string>\n\t\t\t<key>Purchased</key><true/>\n\t\t</dict>\n\t\t<key>1269</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1269</integer>\n\t\t\t<key>Name</key><string>The Miracle (Of Joey Ramone)</string>\n\t\t\t<key>Artist</key><string>U2</string>\n\t\t\t<key>Album Artist</key><string>U2</string>\n\t\t\t<key>Album</key><string>Songs of Innocence</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>Purchased AAC audio file</string>\n\t\t\t<key>Size</key><integer>9300291</integer>\n\t\t\t<key>Total Time</key><integer>255382</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>1</integer>\n\t\t\t<key>Track Count</key><integer>11</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-09-08T01:49:11Z</date>\n\t\t\t<key>Date Added</key><date>2014-09-08T01:49:11Z</date>\n\t\t\t<key>Bit Rate</key><integer>256</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2014-09-09T07:00:00Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Sort Album</key><string>Songs of Innocence</string>\n\t\t\t<key>Sort Artist</key><string>U2</string>\n\t\t\t<key>Sort Name</key><string>Miracle (Of Joey Ramone)</string>\n\t\t\t<key>Persistent ID</key><string>550781F55842BEE4</string>\n\t\t\t<key>Track Type</key><string>Remote</string>\n\t\t\t<key>Purchased</key><true/>\n\t\t</dict>\n\t\t<key>1271</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1271</integer>\n\t\t\t<key>Name</key><string>Iris (Hold Me Close)</string>\n\t\t\t<key>Artist</key><string>U2</string>\n\t\t\t<key>Album Artist</key><string>U2</string>\n\t\t\t<key>Album</key><string>Songs of Innocence</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>Purchased AAC audio file</string>\n\t\t\t<key>Size</key><integer>11149865</integer>\n\t\t\t<key>Total Time</key><integer>319457</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>5</integer>\n\t\t\t<key>Track Count</key><integer>11</integer>\n\t\t\t<key>Year</key><integer>2014</integer>\n\t\t\t<key>Date Modified</key><date>2014-09-08T01:49:11Z</date>\n\t\t\t<key>Date Added</key><date>2014-09-08T01:49:11Z</date>\n\t\t\t<key>Bit Rate</key><integer>256</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2014-09-09T07:00:00Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Sort Album</key><string>Songs of Innocence</string>\n\t\t\t<key>Sort Artist</key><string>U2</string>\n\t\t\t<key>Sort Name</key><string>Iris (Hold Me Close)</string>\n\t\t\t<key>Persistent ID</key><string>9C0991BB766BAA3C</string>\n\t\t\t<key>Track Type</key><string>Remote</string>\n\t\t\t<key>Purchased</key><true/>\n\t\t</dict>\n\t\t<key>1273</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1273</integer>\n\t\t\t<key>Name</key><string>Goodbye Daughters of the Revolution</string>\n\t\t\t<key>Artist</key><string>The Black Crowes</string>\n\t\t\t<key>Album Artist</key><string>The Black Crowes</string>\n\t\t\t<key>Composer</key><string>Chris Robinson &#38; Rich Robinson</string>\n\t\t\t<key>Album</key><string>Warpaint</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>Purchased AAC audio file</string>\n\t\t\t<key>Size</key><integer>5052815</integer>\n\t\t\t<key>Total Time</key><integer>304147</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>1</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2008</integer>\n\t\t\t<key>Date Modified</key><date>2015-01-06T18:11:06Z</date>\n\t\t\t<key>Date Added</key><date>2008-03-10T03:43:40Z</date>\n\t\t\t<key>Bit Rate</key><integer>128</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2008-02-29T08:00:00Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Sort Album</key><string>Warpaint</string>\n\t\t\t<key>Sort Album Artist</key><string>Black Crowes</string>\n\t\t\t<key>Sort Artist</key><string>Black Crowes</string>\n\t\t\t<key>Sort Name</key><string>Goodbye Daughters of the Revolution</string>\n\t\t\t<key>Persistent ID</key><string>8614A83314C2620F</string>\n\t\t\t<key>Track Type</key><string>Remote</string>\n\t\t\t<key>Purchased</key><true/>\n\t\t</dict>\n\t\t<key>1275</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1275</integer>\n\t\t\t<key>Name</key><string>Walk Believer Walk</string>\n\t\t\t<key>Artist</key><string>The Black Crowes</string>\n\t\t\t<key>Album Artist</key><string>The Black Crowes</string>\n\t\t\t<key>Composer</key><string>Chris Robinson &#38; Rich Robinson</string>\n\t\t\t<key>Album</key><string>Warpaint</string>\n\t\t\t<key>Genre</key><string>Rock</string>\n\t\t\t<key>Kind</key><string>Purchased AAC audio file</string>\n\t\t\t<key>Size</key><integer>4593310</integer>\n\t\t\t<key>Total Time</key><integer>280253</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>2</integer>\n\t\t\t<key>Track Count</key><integer>12</integer>\n\t\t\t<key>Year</key><integer>2008</integer>\n\t\t\t<key>Date Modified</key><date>2015-01-06T18:11:06Z</date>\n\t\t\t<key>Date Added</key><date>2008-03-10T03:43:58Z</date>\n\t\t\t<key>Bit Rate</key><integer>128</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Release Date</key><date>2008-02-29T08:00:00Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Sort Album</key><string>Warpaint</string>\n\t\t\t<key>Sort Album Artist</key><string>Black Crowes</string>\n\t\t\t<key>Sort Artist</key><string>Black Crowes</string>\n\t\t\t<key>Sort Name</key><string>Walk Believer Walk</string>\n\t\t\t<key>Persistent ID</key><string>EFBECF5736FA55C5</string>\n\t\t\t<key>Track Type</key><string>Remote</string>\n\t\t\t<key>Purchased</key><true/>\n\t\t</dict>\n\t\t<key>1277</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1277</integer>\n\t\t\t<key>Name</key><string>Choice Hotels International</string>\n\t\t\t<key>Artist</key><string>Undercover Boss</string>\n\t\t\t<key>Album</key><string>Undercover Boss, Season 2</string>\n\t\t\t<key>Genre</key><string>Reality TV</string>\n\t\t\t<key>Kind</key><string>Purchased MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>530077360</integer>\n\t\t\t<key>Total Time</key><integer>2614047</integer>\n\t\t\t<key>Disc Number</key><integer>1</integer>\n\t\t\t<key>Disc Count</key><integer>1</integer>\n\t\t\t<key>Track Number</key><integer>1</integer>\n\t\t\t<key>Track Count</key><integer>22</integer>\n\t\t\t<key>Year</key><integer>2010</integer>\n\t\t\t<key>Date Modified</key><date>2015-01-06T18:11:06Z</date>\n\t\t\t<key>Date Added</key><date>2011-01-30T01:26:07Z</date>\n\t\t\t<key>Play Count</key><integer>1</integer>\n\t\t\t<key>Release Date</key><date>2010-09-26T07:00:00Z</date>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Series</key><string>Undercover Boss</string>\n\t\t\t<key>Season</key><integer>2</integer>\n\t\t\t<key>Episode</key><string>201</string>\n\t\t\t<key>Episode Order</key><integer>1</integer>\n\t\t\t<key>Sort Album</key><string>Undercover Boss, Season 2</string>\n\t\t\t<key>Sort Artist</key><string>Undercover Boss</string>\n\t\t\t<key>Sort Name</key><string>Choice Hotels International</string>\n\t\t\t<key>Persistent ID</key><string>58277AAEDC4D207B</string>\n\t\t\t<key>Content Rating</key><string>us-tv|TV-PG|400|</string>\n\t\t\t<key>Track Type</key><string>Remote</string>\n\t\t\t<key>Purchased</key><true/>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>TV Show</key><true/>\n\t\t</dict>\n\t\t<key>1285</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1285</integer>\n\t\t\t<key>Name</key><string>Microchip</string>\n\t\t\t<key>Artist</key><string>Jason Farnham</string>\n\t\t\t<key>Album</key><string>YouTube Audio Library</string>\n\t\t\t<key>Genre</key><string>Dance &#38; Electronic</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>4573582</integer>\n\t\t\t<key>Total Time</key><integer>114336</integer>\n\t\t\t<key>Date Modified</key><date>2015-09-16T02:14:00Z</date>\n\t\t\t<key>Date Added</key><date>2015-09-16T02:16:35Z</date>\n\t\t\t<key>Bit Rate</key><integer>320</integer>\n\t\t\t<key>Sample Rate</key><integer>48000</integer>\n\t\t\t<key>Persistent ID</key><string>15BA4C571757AB93</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Location</key><string>file:///Users/csev/Downloads/Microchip.mp3</string>\n\t\t\t<key>File Folder Count</key><integer>2</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>1287</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1287</integer>\n\t\t\t<key>Name</key><string>Cookies-01</string>\n\t\t\t<key>Kind</key><string>MPEG audio file</string>\n\t\t\t<key>Size</key><integer>44917520</integer>\n\t\t\t<key>Total Time</key><integer>2807248</integer>\n\t\t\t<key>Date Modified</key><date>2013-08-18T02:02:32Z</date>\n\t\t\t<key>Date Added</key><date>2015-10-16T19:25:51Z</date>\n\t\t\t<key>Bit Rate</key><integer>128</integer>\n\t\t\t<key>Sample Rate</key><integer>44100</integer>\n\t\t\t<key>Persistent ID</key><string>9EA3E6256A06561A</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Location</key><string>file:///Users/csev/Desktop/NoBackup/FOLDER_A/PHP-07-Cookies-Sessions-Redirect-A.MP3</string>\n\t\t\t<key>File Folder Count</key><integer>4</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t\t<key>1291</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1291</integer>\n\t\t\t<key>Name</key><string>Anant Agarwal</string>\n\t\t\t<key>Artist</key><string>IEEE Computer Society</string>\n\t\t\t<key>Album</key><string>Computing Conversations</string>\n\t\t\t<key>Genre</key><string>Podcast</string>\n\t\t\t<key>Size</key><integer>7925760</integer>\n\t\t\t<key>Total Time</key><integer>494000</integer>\n\t\t\t<key>Date Added</key><date>2015-11-05T00:52:12Z</date>\n\t\t\t<key>Release Date</key><date>2015-11-04T10:20:14Z</date>\n\t\t\t<key>Persistent ID</key><string>E3B8104DC763EF81</string>\n\t\t\t<key>Track Type</key><string>URL</string>\n\t\t\t<key>Podcast</key><true/>\n\t\t\t<key>Unplayed</key><true/>\n\t\t\t<key>Location</key><string>http://media.computer.org/sponsored/podcast/computingconversations/conversations-0040.mp3</string>\n\t\t</dict>\n\t\t<key>1293</key>\n\t\t<dict>\n\t\t\t<key>Track ID</key><integer>1293</integer>\n\t\t\t<key>Name</key><string>2015 11 04 16 00 Closing Keynote The Next Generation of Teaching and Learning Tools</string>\n\t\t\t<key>Kind</key><string>MPEG-4 video file</string>\n\t\t\t<key>Size</key><integer>162229930</integer>\n\t\t\t<key>Total Time</key><integer>4599848</integer>\n\t\t\t<key>Date Modified</key><date>2015-11-05T00:49:36Z</date>\n\t\t\t<key>Date Added</key><date>2015-11-05T00:52:53Z</date>\n\t\t\t<key>Bit Rate</key><integer>140</integer>\n\t\t\t<key>Artwork Count</key><integer>1</integer>\n\t\t\t<key>Persistent ID</key><string>D861DE457A141D9B</string>\n\t\t\t<key>Track Type</key><string>File</string>\n\t\t\t<key>Has Video</key><true/>\n\t\t\t<key>HD</key><false/>\n\t\t\t<key>Video Width</key><integer>1280</integer>\n\t\t\t<key>Video Height</key><integer>720</integer>\n\t\t\t<key>Location</key><string>file:///Users/csev/Downloads/2015%2011%2004%2016%2000%20Closing%20Keynote%20The%20Next%20Generation%20of%20Teaching%20and%20Learning%20Tools.MP4</string>\n\t\t\t<key>File Folder Count</key><integer>2</integer>\n\t\t\t<key>Library Folder Count</key><integer>3</integer>\n\t\t</dict>\n\t</dict>\n\t<key>Playlists</key>\n\t<array>\n\t\t<dict>\n\t\t\t<key>Name</key><string>Library</string>\n\t\t\t<key>Description</key><string></string>\n\t\t\t<key>Master</key><true/>\n\t\t\t<key>Playlist ID</key><integer>1297</integer>\n\t\t\t<key>Playlist Persistent ID</key><string>B7006C9E9799282F</string>\n\t\t\t<key>Visible</key><false/>\n\t\t\t<key>All Items</key><true/>\n\t\t\t<key>Playlist Items</key>\n\t\t\t<array>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>369</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>371</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>373</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>375</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>377</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>379</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>381</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>383</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>385</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>387</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>389</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>391</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>393</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>395</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>397</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>399</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>401</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>403</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>405</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>407</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>409</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>411</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>413</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>415</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>417</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>419</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>421</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>423</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>425</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>427</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>429</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>431</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>433</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>435</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>437</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>439</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>441</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>443</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>445</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>447</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>449</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>451</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>453</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>455</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>457</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>459</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>461</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>463</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>465</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>467</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>469</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>471</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>473</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>475</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>477</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>479</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>481</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>483</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>485</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>487</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>489</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>491</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>493</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>495</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>497</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>499</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>501</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>503</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>505</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>507</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>509</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>511</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>513</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>515</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>517</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>519</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>521</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>523</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>525</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>527</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>529</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>531</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>533</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>535</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>537</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>539</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>541</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>543</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>545</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>547</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>549</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>551</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>553</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>555</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>557</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>559</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>561</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>563</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>565</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>567</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>569</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>571</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>573</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>575</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>577</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>579</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>581</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>583</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>585</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>587</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>589</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>591</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>593</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>595</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>597</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>599</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>601</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>603</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>605</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>607</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>609</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>611</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>613</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>615</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>617</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>619</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>621</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>623</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>625</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>627</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>629</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>631</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>633</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>635</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>637</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>639</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>641</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>643</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>645</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>647</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>649</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>651</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>653</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>655</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>657</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>659</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>661</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>663</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>665</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>667</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>669</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>671</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>673</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>675</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>677</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>679</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>681</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>683</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>685</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>687</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>689</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>691</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>693</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>695</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>697</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>699</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>701</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>703</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>705</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>707</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>709</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>711</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>713</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>715</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>717</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>719</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>721</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>723</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>725</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>727</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>731</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>733</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>735</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>737</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>739</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>741</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>743</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>745</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>747</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>751</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>753</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>755</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>757</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>759</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>761</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>777</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>779</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>781</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>783</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>785</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>787</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>789</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>791</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>793</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>795</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>797</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>799</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>801</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>803</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>805</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>817</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>821</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>827</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>829</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>831</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>833</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>835</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>837</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>839</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>841</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>843</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>845</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>851</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>855</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>857</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>859</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>861</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>867</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>873</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>877</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>879</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>885</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>887</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>889</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>891</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>893</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>895</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>897</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>899</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>901</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>903</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>905</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>907</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>909</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>911</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>913</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>915</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>917</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>919</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>921</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>923</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>925</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>927</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>929</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>931</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>933</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>935</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>937</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>939</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>941</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>943</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>945</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>947</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>949</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>951</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>953</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>955</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>957</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>959</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>961</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>963</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>969</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>975</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>979</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>981</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>985</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>987</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>989</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>993</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>995</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>997</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>999</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1001</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1003</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1005</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1007</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1009</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1011</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1013</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1015</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1017</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1019</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1021</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1023</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1025</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1027</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1029</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1031</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1033</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1035</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1037</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1039</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1041</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1043</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1045</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1049</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1051</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1053</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1059</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1061</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1065</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1067</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1071</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1075</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1077</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1081</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1083</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1085</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1087</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1089</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1091</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1093</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1095</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1097</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1099</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1101</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1103</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1105</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1107</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1109</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1111</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1117</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1119</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1121</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1123</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1125</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1127</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1129</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1131</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1133</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1135</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1137</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1139</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1141</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1145</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1147</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1149</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1151</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1153</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1155</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1157</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1159</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1161</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1163</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1165</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1175</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1177</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1183</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1185</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1187</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1193</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1195</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1201</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1203</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1205</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1207</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1209</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1211</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1213</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1215</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1217</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1219</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1221</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1223</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1225</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1227</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1231</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1233</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1235</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1237</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1239</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1241</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1243</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1245</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1247</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1249</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1251</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1253</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1255</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1257</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1261</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1263</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1265</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1267</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1269</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1271</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1273</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1275</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1277</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1285</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1287</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1293</integer>\n\t\t\t\t</dict>\n\t\t\t</array>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>Name</key><string>Music</string>\n\t\t\t<key>Description</key><string></string>\n\t\t\t<key>Playlist ID</key><integer>1703</integer>\n\t\t\t<key>Playlist Persistent ID</key><string>F286537A56C53595</string>\n\t\t\t<key>Distinguished Kind</key><integer>4</integer>\n\t\t\t<key>Music</key><true/>\n\t\t\t<key>All Items</key><true/>\n\t\t\t<key>Playlist Items</key>\n\t\t\t<array>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>517</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>511</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>405</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>451</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>389</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>447</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>431</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>477</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>453</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>479</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>481</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>483</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>487</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>491</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>497</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>435</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>437</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>411</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>385</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>403</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>443</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>419</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>379</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>473</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>495</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>425</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>417</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>471</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>509</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>429</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>439</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>409</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>469</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>485</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>489</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>515</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>459</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>463</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>415</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>465</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>503</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>475</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>561</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>563</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>565</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>571</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>573</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>375</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>445</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>467</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>457</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>427</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>391</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>397</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>505</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>493</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>399</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>407</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>413</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>377</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>381</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>433</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>501</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>499</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>369</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>421</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>455</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>387</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>513</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>383</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>371</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>423</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>441</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>393</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>401</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>461</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>507</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>449</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>373</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>555</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>395</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>519</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>521</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>523</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>525</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>567</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>569</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>575</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>527</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>529</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>531</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>533</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>535</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>537</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>539</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>541</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>577</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>543</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>545</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>547</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>549</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>551</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>553</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>557</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>559</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>579</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>581</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>583</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>585</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>587</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>589</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>591</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>593</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>595</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>597</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>599</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>601</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>603</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>605</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>607</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>609</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>611</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>613</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>615</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>617</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>619</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>621</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>623</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>625</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>627</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>629</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>631</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>633</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>635</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>637</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>639</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>641</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>643</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>645</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>647</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>649</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>653</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>655</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>657</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>659</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>661</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>663</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>665</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>667</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>669</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>671</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>673</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>675</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>677</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>679</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>681</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>685</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>687</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>689</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>691</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>701</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>707</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>713</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>715</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>717</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>719</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>721</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>727</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>703</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>725</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>711</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>705</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>709</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>723</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>779</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>781</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>783</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>785</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>787</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>789</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>791</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>793</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>795</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>797</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>799</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>801</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>803</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>805</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>857</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>867</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>873</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>887</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>889</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>891</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>893</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>895</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>897</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>899</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>901</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>903</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>905</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>907</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>909</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>911</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>913</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>915</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>917</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>919</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>921</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>923</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>925</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>927</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>929</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>931</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>933</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>935</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>937</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>939</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>941</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>943</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>945</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>947</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>949</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>951</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>953</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>955</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>957</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>959</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>961</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>963</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>981</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1045</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1059</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1061</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1071</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1117</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1119</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1203</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1205</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1207</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1209</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1211</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1213</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1215</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1217</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1219</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1221</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1223</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1225</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1273</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1275</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1237</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1235</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1245</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1249</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1239</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1241</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1257</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1269</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1263</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1261</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1267</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1271</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1243</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1251</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1247</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1233</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1255</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1253</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1285</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1287</integer>\n\t\t\t\t</dict>\n\t\t\t</array>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>Name</key><string>Movies</string>\n\t\t\t<key>Description</key><string></string>\n\t\t\t<key>Playlist ID</key><integer>1984</integer>\n\t\t\t<key>Playlist Persistent ID</key><string>F286537A56C53596</string>\n\t\t\t<key>Distinguished Kind</key><integer>2</integer>\n\t\t\t<key>Movies</key><true/>\n\t\t\t<key>All Items</key><true/>\n\t\t\t<key>Playlist Items</key>\n\t\t\t<array>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1049</integer>\n\t\t\t\t</dict>\n\t\t\t</array>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>Name</key><string>TV Shows</string>\n\t\t\t<key>Description</key><string></string>\n\t\t\t<key>Playlist ID</key><integer>2028</integer>\n\t\t\t<key>Playlist Persistent ID</key><string>F286537A56C53597</string>\n\t\t\t<key>Distinguished Kind</key><integer>3</integer>\n\t\t\t<key>TV Shows</key><true/>\n\t\t\t<key>All Items</key><true/>\n\t\t\t<key>Playlist Items</key>\n\t\t\t<array>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>821</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1265</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1231</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1277</integer>\n\t\t\t\t</dict>\n\t\t\t</array>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>Name</key><string>Podcasts</string>\n\t\t\t<key>Description</key><string></string>\n\t\t\t<key>Playlist ID</key><integer>2035</integer>\n\t\t\t<key>Playlist Persistent ID</key><string>AD9D0301E6E38E2E</string>\n\t\t\t<key>Distinguished Kind</key><integer>10</integer>\n\t\t\t<key>Podcasts</key><true/>\n\t\t\t<key>All Items</key><true/>\n\t\t\t<key>Playlist Items</key>\n\t\t\t<array>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1083</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1085</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1087</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1089</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1091</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1093</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1095</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1107</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1105</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1103</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1101</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1099</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1097</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1109</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1111</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1081</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1043</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1041</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1037</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1033</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1039</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1035</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1031</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1027</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1029</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1023</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1015</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1017</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1021</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1025</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1013</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>985</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1019</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>987</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>989</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1051</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1053</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1065</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1067</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1073</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1075</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1077</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1183</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1185</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1187</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1193</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1195</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1201</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1227</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1291</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1145</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1147</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1149</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1151</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1153</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1155</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1157</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1159</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1161</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1163</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1165</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1121</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1123</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1125</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1127</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1129</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1131</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1133</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1135</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1137</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1139</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1141</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1011</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1009</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1007</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1005</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1003</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1001</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>999</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>993</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>997</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>995</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>975</integer>\n\t\t\t\t</dict>\n\t\t\t</array>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>Name</key><string>iTunesU</string>\n\t\t\t<key>Description</key><string></string>\n\t\t\t<key>Playlist ID</key><integer>2128</integer>\n\t\t\t<key>Playlist Persistent ID</key><string>182355640B123137</string>\n\t\t\t<key>Distinguished Kind</key><integer>31</integer>\n\t\t\t<key>iTunesU</key><true/>\n\t\t\t<key>All Items</key><true/>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>Name</key><string>Audiobooks</string>\n\t\t\t<key>Description</key><string></string>\n\t\t\t<key>Playlist ID</key><integer>2131</integer>\n\t\t\t<key>Playlist Persistent ID</key><string>F286537A56C53598</string>\n\t\t\t<key>Distinguished Kind</key><integer>5</integer>\n\t\t\t<key>Audiobooks</key><true/>\n\t\t\t<key>All Items</key><true/>\n\t\t\t<key>Playlist Items</key>\n\t\t\t<array>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>731</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>733</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>735</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>737</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>739</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>741</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>743</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>745</integer>\n\t\t\t\t</dict>\n\t\t\t</array>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>Name</key><string>Tones</string>\n\t\t\t<key>Description</key><string></string>\n\t\t\t<key>Playlist ID</key><integer>2210</integer>\n\t\t\t<key>Playlist Persistent ID</key><string>C201B5D1D26447CC</string>\n\t\t\t<key>Distinguished Kind</key><integer>6</integer>\n\t\t\t<key>All Items</key><true/>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>Name</key><string>Purchased</string>\n\t\t\t<key>Description</key><string></string>\n\t\t\t<key>Playlist ID</key><integer>2213</integer>\n\t\t\t<key>Playlist Persistent ID</key><string>9019F72826167E4D</string>\n\t\t\t<key>Distinguished Kind</key><integer>19</integer>\n\t\t\t<key>Purchased Music</key><true/>\n\t\t\t<key>All Items</key><true/>\n\t\t\t<key>Playlist Items</key>\n\t\t\t<array>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>731</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>733</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>735</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>737</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>739</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>741</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>743</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>745</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>821</integer>\n\t\t\t\t</dict>\n\t\t\t</array>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>Name</key><string>incoming</string>\n\t\t\t<key>Description</key><string></string>\n\t\t\t<key>Playlist ID</key><integer>2406</integer>\n\t\t\t<key>Playlist Persistent ID</key><string>6A0287D6C41DE0A3</string>\n\t\t\t<key>All Items</key><true/>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>Name</key><string>Net-Intro</string>\n\t\t\t<key>Description</key><string></string>\n\t\t\t<key>Playlist ID</key><integer>2409</integer>\n\t\t\t<key>Playlist Persistent ID</key><string>98CDD70ABA900C44</string>\n\t\t\t<key>All Items</key><true/>\n\t\t\t<key>Playlist Items</key>\n\t\t\t<array>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1203</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1205</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1207</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1209</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1211</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1213</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1215</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1217</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1219</integer>\n\t\t\t\t</dict>\n\t\t\t\t<dict>\n\t\t\t\t\t<key>Track ID</key><integer>1221</integer>\n\t\t\t\t</dict>\n\t\t\t</array>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>Name</key><string>Spoken Text</string>\n\t\t\t<key>Description</key><string></string>\n\t\t\t<key>Playlist ID</key><integer>2422</integer>\n\t\t\t<key>Playlist Persistent ID</key><string>8694480C61FCB4CE</string>\n\t\t\t<key>All Items</key><true/>\n\t\t</dict>\n\t\t<dict>\n\t\t\t<key>Name</key><string>Voice Memos</string>\n\t\t\t<key>Description</key><string></string>\n\t\t\t<key>Playlist ID</key><integer>2435</integer>\n\t\t\t<key>Playlist Persistent ID</key><string>DA4FD51F67DBFF0C</string>\n\t\t\t<key>Distinguished Kind</key><integer>17</integer>\n\t\t\t<key>All Items</key><true/>\n\t\t</dict>\n\t</array>\n</dict>\n</plist>\n"
  },
  {
    "path": "Course-4/Week-3/Assignment/tracks/README.txt",
    "content": "To export your own Library.xml from iTunes \n\nFile -> Library -> Export Library\n\nMake sure it is in the correct folder.   Of course iTUnes might change\nUI and/or export format any time - so good luck :)\n"
  },
  {
    "path": "Course-4/Week-3/Assignment/tracks/tracks.py",
    "content": "import xml.etree.ElementTree as ET\nimport sqlite3\n\nconn = sqlite3.connect('trackdb.sqlite')\ncur = conn.cursor()\n\n# Make some fresh tables using executescript()\ncur.executescript('''\nDROP TABLE IF EXISTS Artist;\nDROP TABLE IF EXISTS Genre;\nDROP TABLE IF EXISTS Album;\nDROP TABLE IF EXISTS Track;\n\nCREATE TABLE Artist (\n    id  INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,\n    name    TEXT UNIQUE\n);\n\nCREATE TABLE Genre (\n    id  INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,\n    name    TEXT UNIQUE\n);\n\nCREATE TABLE Album (\n    id  INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,\n    artist_id  INTEGER,\n    title   TEXT UNIQUE\n);\n\nCREATE TABLE Track (\n    id  INTEGER NOT NULL PRIMARY KEY\n        AUTOINCREMENT UNIQUE,\n    title TEXT  UNIQUE,\n    album_id  INTEGER,\n    genre_id INTEGER,\n    len INTEGER, rating INTEGER, count INTEGER\n);\n''')\n\n\nfname = input('Enter file name: ')\nif ( len(fname) < 1 ) : fname = 'Library.xml'\n\n# <key>Track ID</key><integer>369</integer>\n# <key>Name</key><string>Another One Bites The Dust</string>\n# <key>Artist</key><string>Queen</string>\ndef lookup(d, key):\n    found = False\n    for child in d:\n        if found : return child.text\n        if child.tag == 'key' and child.text == key :\n            found = True\n    return None\n\nstuff = ET.parse(fname)\nall = stuff.findall('dict/dict/dict')\nprint('Dict count:', len(all))\nfor entry in all:\n    if ( lookup(entry, 'Track ID') is None ) : continue\n\n    name = lookup(entry, 'Name')\n    artist = lookup(entry, 'Artist')\n    album = lookup(entry, 'Album')\n    genre = lookup(entry, 'Genre')\n    count = lookup(entry, 'Play Count')\n    rating = lookup(entry, 'Rating')\n    length = lookup(entry, 'Total Time')\n\n    if name is None or artist is None or genre is None or album is None :\n        continue\n\n    print(name, artist, album, genre, count, rating, length)\n\n    cur.execute('''INSERT OR IGNORE INTO Artist (name)\n        VALUES ( ? )''', ( artist, ) )\n    cur.execute('SELECT id FROM Artist WHERE name = ? ', (artist, ))\n    artist_id = cur.fetchone()[0]\n\n    cur.execute('''INSERT OR IGNORE INTO Genre (name)\n    VALUES ( ? )''', ( genre, ) )\n    cur.execute('SELECT id FROM Genre WHERE name = ? ', (genre, ))\n    genre_id = cur.fetchone()[0]\n\n    cur.execute('''INSERT OR IGNORE INTO Album (title, artist_id)\n        VALUES ( ?, ? )''', ( album, artist_id ) )\n    cur.execute('SELECT id FROM Album WHERE title = ? ', (album, ))\n    album_id = cur.fetchone()[0]\n\n    cur.execute('''INSERT OR REPLACE INTO Track\n        (title, album_id, genre_id, len, rating, count)\n        VALUES ( ?, ?, ?, ?, ?, ? )''',\n        ( name, album_id, genre_id, length, rating, count ) )\n\n    conn.commit()\n"
  },
  {
    "path": "Course-4/Week-3/Quizzes/Week-3.md",
    "content": "** 1. What is the primary added value of relational databases over flat files?**\n\n    1) Ability to quickly convert data to HTML\n    2) Ability to execute Python code within the file\n    3) Ability to execute JavaScript in the file\n    4) Ability to store data in a format that can be sent across a network\n    5) Ability to scan large amounts of data quickly\n\n_Answer is 5) Ability to scan large amounts of data quickly_\n\n** 2. What is the purpose of a primary key?**\n\n    1) To look up a row based on a string that comes from outside the program\n    2) To look up a particular row in a table very quickly\n    3) To point to a particular row in another table\n    4) To track the number of duplicate values in another column\n\n_Answer is 2) To look up a particular row in a table very quickly_\n\n** 3. Which of the following is NOT a good rule to follow when developing a database model?**\n\n    1) Never repeat string data in more than one table in a data model\n    2) Model each \"object\" in the application as one or more tables\n    3) Use a person's email address as their primary key\n    4) Use integers as primary keys\n\n_Answer is 3) Use a person's email address as their primary key_\n\n** 4. If our user interface (i.e., like iTunes) has repeated strings on one column of the user interface, how should we model this properly in a database?**\n\n    1) Encode the entire row as JSON and store it in a TEXT column in the database\n    2) Put the string in the first row where it occurs and then put that row number in the column of all of the rest of the rows where the string occurs\n    3) Put the string in the last row where it occurs and put the number of that row in the column of all of the rest of the rows where the string occurs\n    4) Put the string in the first row where it occurs and then put NULL in all of the other rows\n    5) Make a table that maps the strings in the column to numbers and then use those numbers in the column\n\n_Answer is 5) Make a table that maps the strings in the column to numbers and then use those numbers in the column_\n\n** 5. Which of the following is the label we give a column that the \"outside world\" uses to look up a particular row?**\n\n    1) Foreign key\n    2) Logical key\n    3) Remote key\n    4) Primary key\n    5) Local key\n\n_Answer is 2) Logical key_\n\n** 6. What is the label we give to a column that is an integer and used to point to a row in a different table?**\n\n     1) Primary key\n     2) Remote key\n     3) Local key\n     4) Logical key\n     5) Foreign key\n\n_Answer is 5) Foreign key_\n\n** 7. What SQLite keyword is added to primary keys in a CREATE TABLE statement to indicate that the database is to provide a value for the column when records are inserted?**\n\n    1) INSERT_AUTO_PROVIDE\n    2) AUTO_INCREMENT\n    3) AUTOINCREMENT\n    4) ASSERT_UNIQUE\n\n_Answer is 3) AUTOINCREMENT_\n\n** 8. What is the SQL keyword that reconnects rows that have foreign keys with the corresponding data in the table that the foreign key points to?**\n\n    1) COUNT\n    2) APPEND\n    3) CONNECT\n    4) JOIN\n    5) CONSTRAINT\n\n_Answer is 4) JOIN_\n\n** 9. What happens when you JOIN two tables together without an ON clause?**\n\n    1) Leaving out the ON clause when joining two tables in SQLite is a syntax error\n    2) The number of rows you get is the number of rows in the first table times the number of rows in the second table\n    3) You get no rows at all\n    4) The rows of the left table are connected to the rows in the right table when their primary key matches\n    5) You get all of the rows of the left table in the JOIN and NULLs in all of the columns of the right table\n\n_Answer is 2) The number of rows you get is the number of rows in the first table times the number of rows in the second table_\n\n** 10. When you are doing a SELECT with a JOIN across multiple tables with identical column names, how do you distinguish the column names?**\n\n    1) tablename.columnname\n    2) tablename->columnname\n    3) tablename/columnname\n    4) tablename['columnname']\n\n_Answer is 1) tablename.columnname_\n"
  },
  {
    "path": "Course-4/Week-4/Assignment/roster.py",
    "content": "import json\nimport sqlite3\n\nconn = sqlite3.connect('rosterdb.sqlite')\ncur = conn.cursor()\n\n# Do some setup\ncur.executescript('''\nDROP TABLE IF EXISTS User;\nDROP TABLE IF EXISTS Member;\nDROP TABLE IF EXISTS Course;\n\nCREATE TABLE User (\n    id     INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,\n    name   TEXT UNIQUE\n);\n\nCREATE TABLE Course (\n    id     INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,\n    title  TEXT UNIQUE\n);\n\nCREATE TABLE Member (\n    user_id     INTEGER,\n    course_id   INTEGER,\n    role        INTEGER,\n    PRIMARY KEY (user_id, course_id)\n)\n''')\n\nfname = input('Enter file name: ')\nif len(fname) < 1:\n    fname = 'roster_data_sample.json'\n\n# [\n#   [ \"Charley\", \"si110\", 1 ],\n#   [ \"Mea\", \"si110\", 0 ],\n\nstr_data = open(fname).read()\njson_data = json.loads(str_data)\n\nfor entry in json_data:\n\n    name = entry[0];\n    title = entry[1];\n    role_id = entry[2];\n\n    #print((name, title, role_id))\n\n    cur.execute('''INSERT OR IGNORE INTO User (name)\n        VALUES ( ? )''', ( name, ) )\n    cur.execute('SELECT id FROM User WHERE name = ? ', (name, ))\n    user_id = cur.fetchone()[0]\n\n    cur.execute('''INSERT OR IGNORE INTO Course (title)\n        VALUES ( ? )''', ( title, ) )\n    cur.execute('SELECT id FROM Course WHERE title = ? ', (title, ))\n    course_id = cur.fetchone()[0]\n\n    cur.execute('''INSERT OR REPLACE INTO Member\n        (user_id, course_id, role) VALUES ( ?, ?, ? )''',\n        ( user_id, course_id, role_id ) )\n\nconn.commit()\n\ncur.executescript('''\n    SELECT hex(User.name || Course.title || Member.role ) AS X FROM\n    User JOIN Member JOIN Course\n    ON User.id = Member.user_id AND Member.course_id = Course.id\n    ORDER BY X\n''')\n"
  },
  {
    "path": "Course-4/Week-4/Assignment/roster_data.json",
    "content": "[\n  [\n    \"Rhianne\",\n    \"si110\",\n    1\n  ],\n  [\n    \"Igor\",\n    \"si110\",\n    0\n  ],\n  [\n    \"Maeya\",\n    \"si110\",\n    0\n  ],\n  [\n    \"Phani\",\n    \"si110\",\n    0\n  ],\n  [\n    \"Darcy\",\n    \"si110\",\n    0\n  ],\n  [\n    \"Thea\",\n    \"si110\",\n    0\n  ],\n  [\n    \"Sylvia\",\n    \"si110\",\n    0\n  ],\n  [\n    \"Quinlan\",\n    \"si110\",\n    0\n  ],\n  [\n    \"Ralph\",\n    \"si110\",\n    0\n  ],\n  [\n    \"Edie\",\n    \"si110\",\n    0\n  ],\n  [\n    \"Bowen\",\n    \"si110\",\n    0\n  ],\n  [\n    \"Vicki\",\n    \"si110\",\n    0\n  ],\n  [\n    \"Michat\",\n    \"si110\",\n    0\n  ],\n  [\n    \"Nabeel\",\n    \"si110\",\n    0\n  ],\n  [\n    \"Lara\",\n    \"si110\",\n    0\n  ],\n  [\n    \"Madinah\",\n    \"si110\",\n    0\n  ],\n  [\n    \"Shreyas\",\n    \"si110\",\n    0\n  ],\n  [\n    \"Yakup\",\n    \"si110\",\n    0\n  ],\n  [\n    \"Annelie\",\n    \"si110\",\n    0\n  ],\n  [\n    \"Wasif\",\n    \"si110\",\n    0\n  ],\n  [\n    \"Oriana\",\n    \"si110\",\n    0\n  ],\n  [\n    \"Chrystal\",\n    \"si110\",\n    0\n  ],\n  [\n    \"Isabelle\",\n    \"si110\",\n    0\n  ],\n  [\n    \"Savanna\",\n    \"si106\",\n    1\n  ],\n  [\n    \"Khyralee\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Bezalel\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Tayye\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Christina\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Caiden\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Miley\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Shonagh\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Ariel\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Lori\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Tessa\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Matylda\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Taen\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Indie\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Abigayle\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Truli\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Eroni\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Chiamaka\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Jia\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Naila\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Callun\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Chloe\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Peige\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Micah\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Yolwandle\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Izzah\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Mir\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Julie\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Mei\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Alighia\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Sukhpreet\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Malebo\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Moray\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Jaden\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Alexei\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Siyona\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Anjolaoluwa\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Ahdia\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Brannan\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Caris\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Jazmine\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Cooper\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Leya\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Karimas\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Cejay\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Dominik\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Madilyn\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Calah\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Rylee\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Keilan\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Kya\",\n    \"si106\",\n    0\n  ],\n  [\n    \"Fezaan\",\n    \"si206\",\n    1\n  ],\n  [\n    \"Han\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Manson\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Mischa\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Coby\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Amelia\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Enoghado\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Finnan\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Lori\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Calli\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Tadd\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Lenon\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Hassan\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Keirna\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Eric\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Rosemary\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Rasul\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Seze\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Nadeem\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Chukwuemeka\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Cruz\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Ninon\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Pushkar\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Elias\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Mutinta\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Stevey\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Codi\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Cruz\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Christianna\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Jared\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Olivia\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Jerry\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Lloyd\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Ceira\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Barry\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Madiha\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Aamirah\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Zaina\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Abbegail\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Tjay\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Rae\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Darla\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Robi\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Ruqaiya\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Melice\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Oliver\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Teodor\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Imogen\",\n    \"si206\",\n    0\n  ],\n  [\n    \"Ellelouise\",\n    \"si301\",\n    1\n  ],\n  [\n    \"Laurence\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Laurianne\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Aanya\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Hector\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Wilson\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Francisca\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Alexis\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Rhiannan\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Betheny\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Nichole\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Deia\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Vincent\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Ragen\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Sandie\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Diya\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Ayiah\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Ambreen\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Thia\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Ayesha\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Okeoghene\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Keemaya\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Tayo\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Elsie\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Ishbel\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Ryan\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Tahlia\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Levi\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Inan\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Roman\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Kihanna\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Roxabella\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Halyda\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Tristain\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Kalli\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Manon\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Niraj\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Alfie\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Geoff\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Anais\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Zaya\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Jodi\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Tyeghyn\",\n    \"si301\",\n    0\n  ],\n  [\n    \"Astrid\",\n    \"si310\",\n    1\n  ],\n  [\n    \"Devon\",\n    \"si310\",\n    0\n  ],\n  [\n    \"Kodie\",\n    \"si310\",\n    0\n  ],\n  [\n    \"Harneet\",\n    \"si310\",\n    0\n  ],\n  [\n    \"Nivedita\",\n    \"si310\",\n    0\n  ],\n  [\n    \"Kingston\",\n    \"si310\",\n    0\n  ],\n  [\n    \"Zunera\",\n    \"si310\",\n    0\n  ],\n  [\n    \"Donna\",\n    \"si310\",\n    0\n  ],\n  [\n    \"Emil\",\n    \"si310\",\n    0\n  ],\n  [\n    \"Minna\",\n    \"si310\",\n    0\n  ],\n  [\n    \"Ally\",\n    \"si310\",\n    0\n  ],\n  [\n    \"Corbin\",\n    \"si310\",\n    0\n  ],\n  [\n    \"Favour\",\n    \"si310\",\n    0\n  ],\n  [\n    \"Nathanael\",\n    \"si310\",\n    0\n  ],\n  [\n    \"Aleena\",\n    \"si310\",\n    0\n  ],\n  [\n    \"Aida\",\n    \"si310\",\n    0\n  ],\n  [\n    \"Creag\",\n    \"si310\",\n    0\n  ],\n  [\n    \"Mehreen\",\n    \"si310\",\n    0\n  ],\n  [\n    \"Kiana\",\n    \"si310\",\n    0\n  ],\n  [\n    \"Tabbitha\",\n    \"si310\",\n    0\n  ],\n  [\n    \"Athon\",\n    \"si310\",\n    0\n  ],\n  [\n    \"Mohamed\",\n    \"si310\",\n    0\n  ],\n  [\n    \"Karleigh\",\n    \"si334\",\n    1\n  ],\n  [\n    \"Clementine\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Maddi\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Annabelle\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Daksh\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Richie\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Seo\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Ishwar\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Nicodemus\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Carley\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Arann\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Girls\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Mairi\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Frank\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Umer\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Pranav\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Iiona\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Konnor\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Kahlan\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Isabell\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Mack\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Patricia\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Laina\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Caitlinn\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Leroy\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Seonag\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Phani\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Sanna\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Antonyo\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Kaid\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Julita\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Sherwyn\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Cristina\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Harold\",\n    \"si334\",\n    0\n  ],\n  [\n    \"April\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Millar\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Lyndsay\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Eni\",\n    \"si334\",\n    0\n  ],\n  [\n    \"Chibudom\",\n    \"si363\",\n    1\n  ],\n  [\n    \"Ama\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Peter\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Laci\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Brooklyn\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Honeyjac\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Nikki\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Shiza\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Alphonse\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Gil\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Harikrishna\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Jamielee\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Neela\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Taqwa\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Allegria\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Ricco\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Tristan\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Hui\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Morwena\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Coral\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Blazej\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Melandra\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Halley\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Miaah\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Romy\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Kevaugh\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Manuel\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Tymom\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Kelam\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Alexandra\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Emme\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Nikos\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Jacki\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Danyal\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Devlin\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Ciar\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Ceilan\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Edison\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Shyam\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Grant\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Robby\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Fion\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Carol\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Hyden\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Zerah\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Laurianne\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Irem\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Breandan\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Momooreoluwa\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Corin\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Latif\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Breagha\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Joyce\",\n    \"si363\",\n    0\n  ],\n  [\n    \"Marlee\",\n    \"si364\",\n    1\n  ],\n  [\n    \"Jensen\",\n    \"si364\",\n    0\n  ],\n  [\n    \"Corin\",\n    \"si364\",\n    0\n  ],\n  [\n    \"Amos\",\n    \"si364\",\n    0\n  ],\n  [\n    \"Diane\",\n    \"si364\",\n    0\n  ],\n  [\n    \"Bryden\",\n    \"si364\",\n    0\n  ],\n  [\n    \"India\",\n    \"si364\",\n    0\n  ],\n  [\n    \"Shae\",\n    \"si364\",\n    0\n  ],\n  [\n    \"Princess\",\n    \"si364\",\n    0\n  ],\n  [\n    \"Loche\",\n    \"si364\",\n    0\n  ],\n  [\n    \"Coran\",\n    \"si364\",\n    0\n  ],\n  [\n    \"Darius\",\n    \"si364\",\n    0\n  ],\n  [\n    \"Aurora\",\n    \"si364\",\n    0\n  ],\n  [\n    \"Abrare\",\n    \"si364\",\n    0\n  ],\n  [\n    \"Eileen\",\n    \"si364\",\n    0\n  ],\n  [\n    \"Eisha\",\n    \"si364\",\n    0\n  ],\n  [\n    \"Judah\",\n    \"si364\",\n    0\n  ],\n  [\n    \"Nialla\",\n    \"si364\",\n    0\n  ],\n  [\n    \"Seriah\",\n    \"si364\",\n    0\n  ],\n  [\n    \"Philippos\",\n    \"si364\",\n    0\n  ],\n  [\n    \"Rihards\",\n    \"si422\",\n    1\n  ],\n  [\n    \"Theo\",\n    \"si422\",\n    0\n  ],\n  [\n    \"Liyah\",\n    \"si422\",\n    0\n  ],\n  [\n    \"Samiya\",\n    \"si422\",\n    0\n  ],\n  [\n    \"Beth\",\n    \"si422\",\n    0\n  ],\n  [\n    \"Arihant\",\n    \"si422\",\n    0\n  ],\n  [\n    \"Ilysa\",\n    \"si422\",\n    0\n  ],\n  [\n    \"Tye\",\n    \"si422\",\n    0\n  ],\n  [\n    \"Ioanna\",\n    \"si422\",\n    0\n  ],\n  [\n    \"Layaan\",\n    \"si422\",\n    0\n  ],\n  [\n    \"Digby\",\n    \"si422\",\n    0\n  ],\n  [\n    \"Chiqal\",\n    \"si422\",\n    0\n  ],\n  [\n    \"Faye\",\n    \"si422\",\n    0\n  ],\n  [\n    \"Benny\",\n    \"si422\",\n    0\n  ],\n  [\n    \"Haadiyah\",\n    \"si422\",\n    0\n  ],\n  [\n    \"Ellis\",\n    \"si422\",\n    0\n  ],\n  [\n    \"Lynsie\",\n    \"si422\",\n    0\n  ],\n  [\n    \"Caydee\",\n    \"si422\",\n    0\n  ],\n  [\n    \"Ezra\",\n    \"si422\",\n    0\n  ],\n  [\n    \"Alex\",\n    \"si422\",\n    0\n  ],\n  [\n    \"Riha\",\n    \"si422\",\n    0\n  ],\n  [\n    \"Badr\",\n    \"si422\",\n    0\n  ],\n  [\n    \"Nathalie\",\n    \"si422\",\n    0\n  ],\n  [\n    \"Rafael\",\n    \"si422\",\n    0\n  ],\n  [\n    \"Rebekkah\",\n    \"si422\",\n    0\n  ],\n  [\n    \"Risa\",\n    \"si422\",\n    0\n  ],\n  [\n    \"Efe\",\n    \"si422\",\n    0\n  ],\n  [\n    \"Zuzia\",\n    \"si422\",\n    0\n  ],\n  [\n    \"Tylar\",\n    \"si430\",\n    1\n  ],\n  [\n    \"Murrin\",\n    \"si430\",\n    0\n  ],\n  [\n    \"Falyn\",\n    \"si430\",\n    0\n  ],\n  [\n    \"Maren\",\n    \"si430\",\n    0\n  ],\n  [\n    \"Ayooluwa\",\n    \"si430\",\n    0\n  ],\n  [\n    \"Rio\",\n    \"si430\",\n    0\n  ],\n  [\n    \"Rori\",\n    \"si430\",\n    0\n  ],\n  [\n    \"Neco\",\n    \"si430\",\n    0\n  ],\n  [\n    \"Sebastien\",\n    \"si430\",\n    0\n  ],\n  [\n    \"Ryo\",\n    \"si430\",\n    0\n  ],\n  [\n    \"Jedd\",\n    \"si430\",\n    0\n  ],\n  [\n    \"Aleesha\",\n    \"si430\",\n    0\n  ],\n  [\n    \"Lloyde\",\n    \"si430\",\n    0\n  ],\n  [\n    \"Andreas\",\n    \"si430\",\n    0\n  ],\n  [\n    \"Amna\",\n    \"si430\",\n    0\n  ],\n  [\n    \"Anir\",\n    \"si430\",\n    0\n  ],\n  [\n    \"Ridley\",\n    \"si430\",\n    0\n  ],\n  [\n    \"Jazib\",\n    \"si430\",\n    0\n  ],\n  [\n    \"Renia\",\n    \"si430\",\n    0\n  ],\n  [\n    \"Camron\",\n    \"si430\",\n    0\n  ],\n  [\n    \"Pacey\",\n    \"si430\",\n    0\n  ],\n  [\n    \"Gallagher\",\n    \"si430\",\n    0\n  ],\n  [\n    \"Hayden\",\n    \"si430\",\n    0\n  ],\n  [\n    \"Deniss\",\n    \"si430\",\n    0\n  ],\n  [\n    \"Katelyne\",\n    \"si430\",\n    0\n  ],\n  [\n    \"Essie\",\n    \"si430\",\n    0\n  ]\n]"
  },
  {
    "path": "Course-4/Week-4/Quzzes/Week-4.md",
    "content": "** 1. How do we model a many-to-many relationship between two database tables?**\n\n    1) We use a BLOB column in both tables\n    2) We use the ARRAY column type in both of the tables\n    3) We add 10 foreign keys to each table with names like artict_id_1, artist_id2, etc.\n    4) We add a table with two foreign keys\n\n_Answer is 4) We add a table with two foreign keys_\n\n** 2. In Python, what is a database \"cursor\" most like?**\n\n     1) A Python dictionary\n     2) A function\n     3) A file handle\n     4) A method within a class\n\n_Answer is 3) A file handle_\n\n** 3. What method do you call in an SQLIte cursor object in Python to run an SQL command?**\n\n     1) send()\n     2) run()\n     3) socket()\n     4) execute()\n\n_Answer is 4) execute()_\n\n** 4. In the following SQL,**\n```Python\ncur.execute('SELECT count FROM Counts WHERE org = ? ', (org, ))\n```\n** what is the purpose of the \"?\"?**\n\n    1) It is a syntax error\n    2) It is a placeholder for the contents of the \"org\" variable\n    3) It allows more than one boolean operation in the WHERE clause\n    4) It is a search wildcard\n\n_Answer is 2) It is a placeholder for the contents of the \"org\" variable_\n\n** 5. In the following Python code sequence (assuming cur is a SQLite cursor object),**\n```Python\ncur.execute('SELECT count FROM Counts WHERE org = ? ', (org, ))\nrow = cur.fetchone()\n```\n** what is the value in row if no rows match the WHERE clause?**\n\n    1) None\n    2) -1\n    3) An empty dictionary\n    4) An empty list\n\n_Answer is 1) None_\n\n** 6. What does the LIMIT clause in the following SQL accomplish?**\n```SQL\nSELECT org, count FROM Counts\n   ORDER BY count DESC LIMIT 10\n```\n\n     1) It only retrieves the first 10 rows from the table\n     2) It only sorts on the first 10 characters of the column\n     3) It reverses the sort order if there are more than 10 rows\n     4) It avoids reading data from any table other than Counts\n\n_Answer is 1) It only retrieves the first 10 rows from the table_\n\n** 7. What does the executescript() method in the Python SQLite cursor object do that the normal execute() method does not do?**\n\n    1) It allows embeded Python to be executed\n    2) It allows embedded JavaScript to be executed\n    3) It allows database tables to be created\n    4) It allows multiple SQL statements separated by semicolons\n\n_Answer is 4) It allows multiple SQL statements separated by semicolons_\n\n** 8. What is the purpose of \"OR IGNORE\" in the following SQL:**\n```SQL\nINSERT OR IGNORE INTO Course (title) VALUES ( ? )\n```\n     1) It makes sure that if a particular title is already in the table, there are no duplicate rows inserted\n     2) It ignores errors in the SQL syntax for the statement\n     3) It updates the created_at value if the title already exists in the table\n     4) It ignores any foreign key constraint errors\n\n_Answer is 1) It makes sure that if a particular title is already in the table, there are no duplicate rows inserted_\n\n** 9. What do we generally avoid in a many-to-many junction table?**\n\n    1) An AUTOINCREMENT primary key column\n    2) A logical key\n    3) Two foreign keys\n    4) Data items specific to the many-to-many relationship\n\n  _Answer is 3) Two foreign keys_\n"
  },
  {
    "path": "Course-4/Week-5/geodata/README.txt",
    "content": "Using the Google Places API with a Database and\nVisualizing Data on Google Map\n\nIn this project, we are using the Google geocoding API\nto clean up some user-entered geographic locations of\nuniversity names and then placing the data on a Google\nMap.\n\nNote: Windows has difficulty in displaying UTF-8 characters\nin the console so for each command window you open, you may need\nto type the following command before running this code:\n\n    chcp 65001\n\nhttp://stackoverflow.com/questions/388490/unicode-characters-in-windows-command-line-how\n\n\nYou should install the SQLite browser to view and modify\nthe databases from:\n\nhttp://sqlitebrowser.org/\n\nThe first problem to solve is that the Google geocoding\nAPI is rate limited to a fixed number of requests per day.\nSo if you have a lot of data you might need to stop and\nrestart the lookup process several times.  So we break\nthe problem into two phases.\n\nIn the first phase we take our input data in the file\n(where.data) and read it one line at a time, and retrieve the\ngeocoded response and store it in a database (geodata.sqlite).\nBefore we use the geocoding API, we simply check to see if\nwe already have the data for that particular line of input.\n\nYou can re-start the process at any time by removing the file\ngeodata.sqlite\n\nRun the geoload.py program.   This program will read the input\nlines in where.data and for each line check to see if it is already\nin the database and if we don't have the data for the location,\ncall the geocoding API to retrieve the data and store it in\nthe database.\n\nAs of December 2016, the Google Geocoding APIs changed dramatically.\nThey moved some functionality that we use from the Geocoding API\ninto the Places API.  Also all the Google Geo-related APIs require an\nAPI key. To complete this assignment without a Google account,\nwithout an API key, or from a country that blocks\naccess to Google, you can use a subset of that data which is\navailable at:\n\nhttp://py4e-data.dr-chuck.net/json\n\nTo use this, simply leave the api_key set to False in \ngeoload.py.\n\nThis URL only has a subset of the data but it has no rate limit so\nit is good for testing.\n\nIf you want to try this with the API key, follow the\ninstructions at:\n\nhttps://developers.google.com/maps/documentation/geocoding/intro\n\nand put the API key in the code.\n\nHere is a sample run after there is already some data in the\ndatabase:\n\nMac: python3 geoload.py\nWin: geoload.py\n\nFound in database  Northeastern University\n\nFound in database  University of Hong Kong, Illinois Institute of Technology, Bradley University\n\nFound in database  Technion\n\nFound in database  Viswakarma Institute, Pune, India\n\nFound in database  UMD\n\nFound in database  Tufts University\n\nResolving Monash University\nRetrieving http://py4e-data.dr-chuck.net/json?key=42&address=Monash+University\nRetrieved 2063 characters {    \"results\" : [\n{u'status': u'OK', u'results': ... }\n\nResolving Kokshetau Institute of Economics and Management\nRetrieving http://py4e-data.dr-chuck.net/json?key=42&address=Kokshetau+Institute+of+Economics+and+Management\nRetrieved 1749 characters {    \"results\" : [\n{u'status': u'OK', u'results': ... }\n\nThe first five locations are already in the database and so they\nare skipped.  The program scans to the point where it finds un-retrieved\nlocations and starts retrieving them.\n\nThe geoload.py can be stopped at any time, and there is a counter\nthat you can use to limit the number of calls to the geocoding\nAPI for each run.\n\nOnce you have some data loaded into geodata.sqlite, you can\nvisualize the data using the (geodump.py) program.  This\nprogram reads the database and writes tile file (where.js)\nwith the location, latitude, and longitude in the form of\nexecutable JavaScript code.\n\nA run of the geodump.py program is as follows:\n\nMac: python3 geodump.py\nWin: geodump.py\n\nNortheastern University, 360 Huntington Avenue, Boston, MA 02115, USA 42.3396998 -71.08975\nBradley University, 1501 West Bradley Avenue, Peoria, IL 61625, USA 40.6963857 -89.6160811\n...\nTechnion, Viazman 87, Kesalsaba, 32000, Israel 32.7775 35.0216667\nMonash University Clayton Campus, Wellington Road, Clayton VIC 3800, Australia -37.9152113 145.134682\nKokshetau, Kazakhstan 53.2833333 69.3833333\n...\n12 records written to where.js\nOpen where.html to view the data in a browser\n\nThe file (where.html) consists of HTML and JavaScript to visualize\na Google Map.  It reads the most recent data in where.js to get\nthe data to be visualized.  Here is the format of the where.js file:\n\nmyData = [\n[42.3396998,-71.08975, 'Northeastern University, 360 Huntington Avenue, Boston, MA 02115, USA'],\n[40.6963857,-89.6160811, 'Bradley University, 1501 West Bradley Avenue, Peoria, IL 61625, USA'],\n[32.7775,35.0216667, 'Technion, Viazman 87, Kesalsaba, 32000, Israel'],\n   ...\n];\n\nThis is a JavaScript list of lists.  The syntax for JavaScript\nlist constants is very similar to Python so the syntax should\nbe familiar to you.\n\nSimply open where.html in a browser to see the locations.  You\ncan hover over each map pin to find the location that the\ngecoding API returned for the user-entered input.  If you\ncannot see any data when you open the where.html file, you might\nwant to check the JavaScript or developer console for your browser.\n\n"
  },
  {
    "path": "Course-4/Week-5/geodata/geodump.py",
    "content": "import sqlite3\nimport json\nimport codecs\n\nconn = sqlite3.connect('geodata.sqlite')\ncur = conn.cursor()\n\ncur.execute('SELECT * FROM Locations')\nfhand = codecs.open('where.js', 'w', \"utf-8\")\nfhand.write(\"myData = [\\n\")\ncount = 0\nfor row in cur :\n    data = str(row[1].decode())\n    try: js = json.loads(str(data))\n    except: continue\n\n    if not('status' in js and js['status'] == 'OK') : continue\n\n    lat = js[\"results\"][0][\"geometry\"][\"location\"][\"lat\"]\n    lng = js[\"results\"][0][\"geometry\"][\"location\"][\"lng\"]\n    if lat == 0 or lng == 0 : continue\n    where = js['results'][0]['formatted_address']\n    where = where.replace(\"'\", \"\")\n    try :\n        print(where, lat, lng)\n\n        count = count + 1\n        if count > 1 : fhand.write(\",\\n\")\n        output = \"[\"+str(lat)+\",\"+str(lng)+\", '\"+where+\"']\"\n        fhand.write(output)\n    except:\n        continue\n\nfhand.write(\"\\n];\\n\")\ncur.close()\nfhand.close()\nprint(count, \"records written to where.js\")\nprint(\"Open where.html to view the data in a browser\")\n\n"
  },
  {
    "path": "Course-4/Week-5/geodata/geoload.py",
    "content": "import urllib.request, urllib.parse, urllib.error\nimport http\nimport sqlite3\nimport json\nimport time\nimport ssl\nimport sys\n\napi_key = False\n# If you have a Google Places API key, enter it here\n# api_key = 'AIzaSy___IDByT70'\n\nif api_key is False:\n    api_key = 42\n    serviceurl = \"http://py4e-data.dr-chuck.net/json?\"\nelse :\n    serviceurl = \"https://maps.googleapis.com/maps/api/geocode/json?\"\n\n# Additional detail for urllib\n# http.client.HTTPConnection.debuglevel = 1\n\nconn = sqlite3.connect('geodata.sqlite')\ncur = conn.cursor()\n\ncur.execute('''\nCREATE TABLE IF NOT EXISTS Locations (address TEXT, geodata TEXT)''')\n\n# Ignore SSL certificate errors\nctx = ssl.create_default_context()\nctx.check_hostname = False\nctx.verify_mode = ssl.CERT_NONE\n\nfh = open(\"where.data\")\ncount = 0\nfor line in fh:\n    if count > 200 :\n        print('Retrieved 200 locations, restart to retrieve more')\n        break\n\n    address = line.strip()\n    print('')\n    cur.execute(\"SELECT geodata FROM Locations WHERE address= ?\",\n        (memoryview(address.encode()), ))\n\n    try:\n        data = cur.fetchone()[0]\n        print(\"Found in database \",address)\n        continue\n    except:\n        pass\n\n    parms = dict()\n    parms[\"address\"] = address\n    if api_key is not False: parms['key'] = api_key\n    url = serviceurl + urllib.parse.urlencode(parms)\n\n    print('Retrieving', url)\n    uh = urllib.request.urlopen(url, context=ctx)\n    data = uh.read().decode()\n    print('Retrieved', len(data), 'characters', data[:20].replace('\\n', ' '))\n    count = count + 1\n\n    try:\n        js = json.loads(data)\n    except:\n        print(data)  # We print in case unicode causes an error\n        continue\n\n    if 'status' not in js or (js['status'] != 'OK' and js['status'] != 'ZERO_RESULTS') :\n        print('==== Failure To Retrieve ====')\n        print(data)\n        break\n\n    cur.execute('''INSERT INTO Locations (address, geodata)\n            VALUES ( ?, ? )''', (memoryview(address.encode()), memoryview(data.encode()) ) )\n    conn.commit()\n    if count % 10 == 0 :\n        print('Pausing for a bit...')\n        time.sleep(5)\n\nprint(\"Run geodump.py to read the data from the database so you can vizualize it on a map.\")\n"
  },
  {
    "path": "Course-4/Week-5/geodata/where.data",
    "content": "AGH University of Science and Technology\nAcademy of Fine Arts Warsaw Poland\nAmerican University in Cairo\nArizona State University\nAthens Information Technology\nBITS Pilani\nBabcock University\nBanaras Hindu University\nBangalore University\nBaylor University\nBeijing normal university\nBelarusian State University\nBelgrade University\nBeloit College\nBelorussian State University\nBen Gurion University\nBharthidasan University\nBoston University\nCalifornia Polytechnic State University of San Luis Obispo\nCalifornia State University San Bernardino\nCity of Westminster College\nColumbia University\nCranfield University\nCzech Technical University in Prague\nDartmouth\nDe Anza College\nDistant University of Hagen\nDnipropetrovsk National University\nDokuz Eylul University\nDrexel\nDrexel University and University of Texas at Austin\nDuke University\nEM Lyon\nEcole centrale de PARIS\nElon University\nErhvervsakademi Sydvest\nEscuela Superior Politecnica del Litoral\nFachhochschule Dusseldorf\nFachhochschule FH Salzburg\nFaculdade de Tecnologia do Estado de Sao Paulo\nFaculty of Technical Sciences Novi Sad Serbia\nFarmingdale State University\nFederal University of Minas Gerais\nFlorida Atlantic University\nFranklin Pierce College\nGauhati University\nGeorge Mason University\nGeorgetown University Law Center\nGeorgia State University\nGrandville\nGroep T University\nHanoi University of Science and Technology\nHebrew University\nIIIT Hyderabad\nIIT KANPUR\nIT College of Estonia\nIU\nIUAV Venezia\nIllinois Institute of Technology\nIllinois State University Joliet Junior College\nIndian Institute of Technology\nIndian Institute of Technology Kharagpur India\nIndian School of Mines Dhanbad\nIndiana University\nIndiana University at Bloomington\nInstitut Superieur de technologies\nInstitute of Business and Modern Technologies\nInstituto Tecnologico de Santo Domingo\nInternational Institute of Information Technology Hyderabad\nIrkutsk State University\nJADAVPUR UNIVERSITY\nJawaharlal Nehru Technological University\nJawaharlal Nehru University\nJordan University of Science and Technology\nK-State\nKUL\nKalamazoo College\nKaunas Technology University\nKaunas university of technology\nKazan Federal University\nKent State University\nKharkiv State Academy of Municipal Economy Ukraine\nKing Mongkuts University of Technology Thonburi\nKokshetau Institute of Economics and Management\nKyiv Polytechnic Institute\nKyiv Polytechnical Institute\nKyiv Unisersity of Oriental Language\nLaurentian University\nLisandro Alvarado\nLodz University of Technology\nLviv University\nMSU\nMadras university\nMagnitogorsk State Technical University\nMalayer Azad University\nMarietta College\nMasdar Institute\nMatematicki fakultet Beograd\nMichigan State University\nMiddle East Technical University\nMissouri University of Science and Technology\nMonash\nMonash University\nMonash University Churchill Australia\nMonterrey Institute of Technology and Higher Education\nMoscow Engineering-Physics Institute\nMoscow Institute of Physics & Technology\nMoscow State University\nNIT ROURKELA\nNYU\nNagpur University\nNanyang Technological University\nNational Institute of Technology Jalandhar\nNational Taiwan University\nNational University of Engineering\nNorth Central College\nNortheastern University\nNorthwestern University\nObninsk Technical University of Nuclear Power Engineering Russia\nOld Dominion University\nOregon Institute of Technology\nPUCMM\nPayame Noor University\nPenn State University\nPolitecnico di Milano\nPolitehnica University Bucharest\nPolytechnic University of Timisoara\nPondicherry University\nPontificia universidad catolica de chile\nPortland State University\nPurdue University Indianapolis\nR V College of Engineering\nRPI\nRamapo College of New Jersey\nRochester Institute of Technology\nSASTRA University\nSaint Petersburg State University\nSaint Petersburg State University of Aerospace Instrumentation\nSaint-Petersburg Polytechnic Univesity\nSan Francisco State University\nSan Jose State University\nShanghai Jiao Tong University\nSharif University of Technology\nSimon Bolivar University\nSimon Fraser University\nSmolensk State University\nSonoma State University\nSouth Federal University\nSpiru Haret University\nStanford\nState University of Campinas\nState University of New York College at Oswego\nStellenbosch University\nStonehill College\nTallinn University\nTallinn University of Technology\nTampere University of Technology\nTanta University\nTarrant County College\nTechnical University of Cluj-Napoca\nTechnion\nTel Aviv University\nThe Jerusalem collage of engineering\nThe University of Latvia\nThe University of Manchester\nThe University of South Africa\nTransilvania University\nTufts University\nUC Berkeley\nUCLA\nUCSD\nUIUC\nUMD\nUNISA\nUNIVERSIDAD DE Buenos Aires\nUOC\nUSC\nUW Madison\nUniversidad Central de Venezuela\nUniversidad Complutense de Madrid\nUniversidad Cooperativa de Colombia\nUniversidad Nacional Autonoma de Mexico\nUniversidad Nacional Costa Rica\nUniversidad Nacional de Colombia\nUniversidad Tecnologica Boliviana\nUniversidad de Buenos Aires\nUniversidad de Castilla La Mancha\nUniversidad de Los Andes Colombia\nUniversidad de Oriente\nUniversidad de San Carlos de Guatemala\nUniversidad de Valladolid\nUniversidad de la Sabana\nUniversidad del Valle de Guatemala\nUniversidade Federal da Paraiba\nUniversidade Federal de Santa Catarina\nUniversidade Federal do Rio Grande do Sul\nUniversidade Federal do Rio de Janeiro\nUniversidade Tecnica de Lisboa\nUniversidade de Sao Paulo\nUniversidade do Minho\nUniversitas Gadjah Mada\nUniversitat Politecnica de Valencia\nUniversite Catholique de Louvain\nUniversity College Dublin\nUniversity Munich\nUniversity of Akron\nUniversity of Alberta\nUniversity of Amsterdam\nUniversity of Arkansas\nUniversity of Athens\nUniversity of Belgrade\nUniversity of Birmingham\nUniversity of Buenos Aires\nUniversity of Cambridge\nUniversity of Central Oklahoma\nUniversity of Chicago\nUniversity of Cincinnati\nUniversity of Colorado at Boulder\nUniversity of Connecticut\nUniversity of Dallas\nUniversity of Debrecen\nUniversity of Delaware\nUniversity of Erlangen-Nuremberg\nUniversity of Essex\nUniversity of Evora\nUniversity of Florida\nUniversity of Gothenburg\nUniversity of Greifswald\nUniversity of Hamburg\nUniversity of Hawaii\nUniversity of Helsinki\nUniversity of Ilorin Kwara State\nUniversity of Jaffna\nUniversity of Kansas\nUniversity of Kerala\nUniversity of London\nUniversity of Malaga\nUniversity of Malaya\nUniversity of Manchester\nUniversity of Michigan\nUniversity of Missouri - Columbia\nUniversity of Moratuwa\nUniversity of Mumbai\nUniversity of Nebraska\nUniversity of Nebraska - Lincoln\nUniversity of New Haven\nUniversity of New South Wales\nUniversity of Notre Dame\nUniversity of Oklahoma\nUniversity of Ottawa\nUniversity of Oxford\nUniversity of Padua\nUniversity of Pavia Italy\nUniversity of Pennsylvania\nUniversity of Piraeus Athens\nUniversity of Pretoria\nUniversity of Salamanca\nUniversity of Sao Paulo\nUniversity of Sarajevo\nUniversity of Southern California\nUniversity of Stellenbosch\nUniversity of Tartu\nUniversity of Tehran\nUniversity of Texas\nUniversity of Texas at Austin\nUniversity of Toronto\nUniversity of Tuebingen\nUniversity of Twente\nUniversity of Utah\nUniversity of Vienna\nUniversity of Warsaw\nUniversity of Washington\nUniversity of Washington - Bothell\nUniversity of Waterloo\nUniversity of West Florida\nUniversity of Wisconsin\nUniversity of the Punjab Lahore\nUniversity of the Witwatersrand\nVilnius Gediminas Technical University\nVilnius University\nVirginia Commonwealth University\nVirginia Tech\nViswakarma Institute Pune India\nWarsaw University\nWashington State University\nWayne State\nWeber State\nWeizmann Institute of Science\nWestern Governors University\nXavier University\nZagazig University\nallama iqbal open university islamabad\narizona state university\nfederal institute of tecnology and education from southeastern Minas Gerais\nkansas state university\nuniversidad complutense de madrid\nuniversity of Patras\nuniversity of padua\nKing Fahd International Airport\n"
  },
  {
    "path": "Course-4/Week-5/geodata/where.html",
    "content": "<html>\n  <head>\n    <meta name=\"viewport\" content=\"initial-scale=1.0, user-scalable=no\">\n    <meta charset=\"utf-8\">\n    <title>A Map of Information</title>\n    <link href=\"https://google-developers.appspot.com/maps/documentation/javascript/examples/default.css\" rel=\"stylesheet\">\n\n    <!-- If you are in China, you may need to use theis site for the Google Maps code\n    <script src=\"https://maps.google.cn/maps/api/js\" type=\"text/javascript\"></script> -->\n    \n    <script src=\"https://maps.googleapis.com/maps/api/js\"></script>\n    <script src=\"where.js\"></script>\n    <script>\n\n      function initialize() {\n        alert(\"To see the title of a marker, hover over the marker but don't click.\");\n        var myLatlng = new google.maps.LatLng(37.39361,-122.099263)\n        var mapOptions = {\n          zoom: 3,\n          center: myLatlng,\n          mapTypeId: google.maps.MapTypeId.ROADMAP\n        }\n        var map = new google.maps.Map(document.getElementById('map_canvas'), mapOptions);\n\n        i = 0;\n        var markers = [];\n        for ( pos in myData ) {\n            i = i + 1;\n            var row = myData[pos];\n\t\t    window.console && console.log(row);\n            // if ( i < 3 ) { alert(row); }\n            var newLatlng = new google.maps.LatLng(row[0], row[1]);\n            var marker = new google.maps.Marker({\n                position: newLatlng,\n                map: map,\n                title: row[2]\n            });\n            markers.push(marker);\n<!-- New options for MarkerClusterer function to display markers -->\n\t    var options = {\n\t\t\timagePath: 'http://rawgit.com/googlemaps/js-marker-clusterer/gh-pages/images/m'\n\t\t\t}\t\n        }\n<!-- New var -->\n\tvar markerCluster = new MarkerClusterer(map, markers, options);\n      }\n    </script>\n  </head>\n  <body onload=\"initialize()\">\n<div id=\"map_canvas\" style=\"height: 500px\"></div>\n<p><b>About this Map</b></p>\n<p>\nThis is a cool map from \n<a href=\"https://www.py4e.com\">www.py4e.com</a>.\n</p>\n</body>\n</html>\n"
  },
  {
    "path": "Course-4/Week-5/geodata/where.js",
    "content": "myData = [\n[50.06688579999999,19.9136192, 'aleja Adama Mickiewicza 30, 30-059 Kraków, Poland'],\n[52.2394019,21.0150792, 'Krakowskie Przedmieście 5, 00-068 Warszawa, Poland'],\n[30.018923,31.499674, 'AUC Avenue، 11835, Egypt'],\n[33.4242399,-111.9280527, 'Tempe, AZ 85281, USA'],\n[38.0399391,23.8030901, 'Monumental Plaza, Building C, 1st Floor, Leof. Kifisias 44, Marousi 151 25, Greece'],\n[28.3639976,75.58696809999999, 'VidyaVihar Campus, street number 41, Pilani, Rajasthan 333031, India'],\n[6.8946472,3.7174267, 'Ilishan-Remo, Nigeria'],\n[25.2677203,82.99125819999999, 'Ajagara, Varanasi, Uttar Pradesh 221005, India'],\n[12.9527314,77.5157387, 'Gnana Bharathi Campus, Gnana Bharathi Main Rd, Teachers Colony, Nagarbhavi, Bengaluru, Karnataka 560056, India'],\n[31.5497007,-97.1143046, '1301 S University Parks Dr, Waco, TX 76706, USA'],\n[39.9619537,116.3662615, '19 Xinjiekou Outer St, BeiTaiPingZhuang, Haidian Qu, Beijing Shi, China, 100875'],\n[53.8938988,27.5460609, 'Praspyekt Nyezalyezhnastsi 4, Minsk, Belarus'],\n[44.8184339,20.4575676, 'Studentski trg 1, Beograd, Serbia'],\n[42.5030333,-89.0309048, '700 College St, Beloit, WI 53511, USA'],\n[53.8938988,27.5460609, 'Praspyekt Nyezalyezhnastsi 4, Minsk, Belarus'],\n[31.262218,34.801461, 'שד בן-גוריון 1, באר שבע, Israel'],\n[10.6779085,78.74454879999999, 'Palkalaiperur, Tiruchirappalli, Tamil Nadu 620024, India'],\n[42.3504997,-71.1053991, 'Boston, MA 02215, USA'],\n[35.3050053,-120.6624942, 'San Luis Obispo, CA 93407, USA'],\n[34.1821786,-117.3235324, '5500 University Pkwy, San Bernardino, CA 92407, USA'],\n[51.5210038,-0.1746353, '25 Paddington Green, London W2 1NB, UK'],\n[40.8075355,-73.9625727, '116th St & Broadway, New York, NY 10027, United States'],\n[52.0741533,-0.6269935999999999, 'College Rd, Wharley End, Bedford MK43 0AL, UK'],\n[50.1030364,14.3912841, 'Zikova 1903/4, 166 36 Praha 6, Czechia'],\n[43.7044406,-72.2886935, 'Hanover, NH 03755, USA'],\n[37.3201481,-122.0453953, '21250 Stevens Creek Blvd, Cupertino, CA 95014, USA'],\n[46.8677579,-96.7623133, '600 11th St S, Moorhead, MN 56563, USA'],\n[48.4331922,35.0427966, 'Haharina Ave, 72, Dnipropetrovsk, Dnipropetrovska oblast, Ukraine, 49000'],\n[38.4306911,27.1369201, 'Kültür Mahallesi, Cumhuriyet Blv No:144, 35220 Konak/İzmir, Turkey'],\n[39.9566127,-75.18994409999999, '3141 Chestnut St, Philadelphia, PA 19104, USA'],\n[30.2849185,-97.7340567, 'Austin, TX 78712, USA'],\n[36.0014258,-78.9382286, 'Durham, NC 27708, USA'],\n[45.786447,4.764139000000001, '23 Avenue Guy de Collongue, 69130 Écully, France'],\n[48.708759,2.164006, '3 Rue Joliot Curie, 91190 Gif-sur-Yvette, France'],\n[36.1027527,-79.50235669999999, '50 Campus Drive, Elon, NC 27244, USA'],\n[55.48843069999999,8.4467103, 'Spangsbjerg Kirkevej 103, 6700 Esbjerg, Denmark'],\n[-2.1481458,-79.9644885, 'Vía Perimetral 5, Guayaquil, Ecuador'],\n[51.1895079,6.795360499999999, 'Gebäude 23.31/32, Universitätsstraße, 40225 Düsseldorf, Germany'],\n[47.72336,13.0871409, 'Urstein Süd 1, 5412 Puch bei Hallein, Austria'],\n[-23.6958721,-46.54702839999999, 'Av. Pereira Barreto, 400 - Baeta Neves, São Bernardo do Campo - SP, 09751-000, Brazil'],\n[45.2461012,19.8516968, 'Trg Dositeja Obradovića 6, Novi Sad 106314, Serbia'],\n[40.7529512,-73.4267093, '2350 NY-110, Farmingdale, NY 11735, USA'],\n[-19.8690878,-43.9663841, 'Av. Pres. Antônio Carlos, 6627 - Pampulha, Belo Horizonte - MG, 31270-901, Brazil'],\n[26.3727164,-80.10099770000001, '777 Glades Rd, Boca Raton, FL 33431, USA'],\n[42.7793667,-72.0560856, '40 University Dr, Rindge, NH 03461, USA'],\n[26.1546284,91.66469889999999, 'Jalukbari, Guwahati, Assam, India'],\n[38.8314936,-77.3114889, '4400 University Dr, Fairfax, VA 22030, USA'],\n[38.8977953,-77.0129087, '600 New Jersey Ave NW, Washington, DC 20001, USA'],\n[33.753068,-84.38528190000001, 'Atlanta, GA 30302, USA'],\n[42.9097484,-85.7630885, 'Grandville, MI, USA'],\n[50.8748769,4.7077753, 'Andreas Vesaliusstraat 13, 3000 Leuven, Belgium'],\n[21.0055546,105.8434628, '1 Đại Cồ Việt, Bách Khoa, Hai Bà Trưng, Hà Nội, Vietnam'],\n[31.7945578,35.2414009, 'Jerusalem'],\n[17.4452358,78.3492765, 'DLF Building, Professor CR Rao Rd, Gachibowli, Hyderabad, Telangana 500032, India'],\n[26.5123388,80.2329, 'Kalyanpur, Kanpur, Uttar Pradesh 208016, India'],\n[59.3954769,24.6643815, 'Raja 4, 12616 Tallinn, Estonia'],\n[39.1784384,-86.5133166, '107 S Indiana Ave, Bloomington, IN 47405, USA'],\n[45.4376934,12.3223365, 'Santa Croce, 191, 30135 Venezia VE, Italy'],\n[41.8348731,-87.6270059, '10 W 35th St, Chicago, IL 60616, USA'],\n[41.8847517,-87.6249119, '150 Michigan Avenue, Chicago, IL 60601, USA'],\n[41.8348731,-87.6270059, '10 W 35th St, Chicago, IL 60616, USA'],\n[22.3149274,87.31053109999999, 'Kharagpur, West Bengal 721302, India'],\n[23.8143819,86.44120219999999, 'Police Line, Sardar Patel Nagar, Hirapur, Dhanbad, Jharkhand 826004, India'],\n[39.1784384,-86.5133166, '107 S Indiana Ave, Bloomington, IN 47405, USA'],\n[39.1784384,-86.5133166, '107 S Indiana Ave, Bloomington, IN 47405, USA'],\n[12.3779749,-1.5470898, 'Hamdalaye, Ouagadougou, Burkina Faso'],\n[39.7792943,-94.8200682, '1018 W St Maartens Dr, St Joseph, MO 64506, USA'],\n[18.487876,-69.96229199999999, 'Av. de Los Próceres 49, Santo Domingo 10602, Dominican Republic'],\n[17.4452358,78.3492765, 'DLF Building, Professor CR Rao Rd, Gachibowli, Hyderabad, Telangana 500032, India'],\n[52.2766124,104.2777287, 'Ulitsa Karla Marksa, 1, Irkutsk, Irkutskaya oblast, Russia, 664003'],\n[22.4994053,88.3720511, '700075, 44/2/5A, Jheel Rd, Viveknagar, Garfa, Kolkata, West Bengal 700075, India'],\n[17.4933377,78.3916529, 'Kukatpally, Hyderabad, Telangana 500085, India'],\n[28.540214,77.1661949, 'New Mehrauli Road, Delhi 110067, India'],\n[32.4950392,35.9912257, 'Ar Ramtha 3030، Ramtha, Jordan'],\n[39.1974437,-96.5847249, 'Manhattan, KS 66506, USA'],\n[49.9112087,-116.9042959, '311 4th St Box 1363, Kaslo, BC V0G 1M0, Canada'],\n[42.290035,-85.598145, '1200 Academy St, Kalamazoo, MI 49006, USA'],\n[54.898991,23.912825, 'K. Donelaičio g. 73, Kaunas 44249, Lithuania'],\n[54.898991,23.912825, 'K. Donelaičio g. 73, Kaunas 44249, Lithuania'],\n[55.790447,49.1214349, 'Kremlyovskaya St, 18, Kazan, Respublika Tatarstan, Russia, 420008'],\n[41.1490629,-81.34146489999999, '800 E Summit St, Kent, OH 44240, USA'],\n[50.004236,36.2172852, 'Klochkivska St, 99, Kharkiv, Kharkivska oblast, Ukraine, 61000'],\n[13.6492505,100.4947322, '640/15 พุทธบูชา 40 Khwaeng Bang Mot, Khet Thung Khru, Krung Thep Maha Nakhon 10140, Thailand'],\n[53.285023,69.3695728, 'Ulitsa Temirbekova 30, Kokshetau 020000, Kazakhstan'],\n[50.4488824,30.4572542, 'просп. Перемоги, 37, Kyiv, Ukraine, 03056'],\n[50.4488824,30.4572542, 'просп. Перемоги, 37, Kyiv, Ukraine, 03056'],\n[50.4535439,30.3654117, 'Lvivska St, 25, Kyiv, Ukraine, 03115'],\n[46.4667708,-80.9742332, '935 Ramsey Lake Rd, Sudbury, ON P3E 2C6, Canada'],\n[10.0610228,-69.323392, 'Calle 32, Barquisimeto 3001, Lara, Venezuela'],\n[51.7537146,19.4517176, 'Stefana Żeromskiego 116, 90-924 Łódź, Poland'],\n[49.8406108,24.0225099, 'Universytetska St, 1, Lviv, Lvivska oblast, Ukraine, 79000'],\n[37.2005546,-93.2806806, '901 S National Ave, Springfield, MO 65897, USA'],\n[13.0660293,80.28317190000001, 'Navalar Nagar, Chepauk, Triplicane, Chennai, Tamil Nadu 600005, India'],\n[53.4221438,58.9826396, 'Prospekt Karla Marksa, 38, Magnitogorsk, Chelyabinskaya oblast, Russia, 455000'],\n[34.304073,48.8452846, 'Hamadan Province, Malayer, University Blvd, Iran'],\n[39.41665649999999,-81.44993509999999, '215 5th St, Marietta, OH 45750, USA'],\n[24.4330231,54.619113, 'Near Home WTC AUH, Airport Road - Masdar City - Abu Dhabi - United Arab Emirates'],\n[44.8199188,20.4587075, 'Studentski trg 16, Beograd 105104, Serbia'],\n[42.701848,-84.4821719, '220 Trowbridge Rd, East Lansing, MI 48824, USA'],\n[39.8910203,32.7780027, 'Üniversiteler Mh., Dumlupınar Blv. No:1, 06800 Çankaya/Ankara, Turkey'],\n[37.9537078,-91.7756271, '106, Parker Hall, 300 W 13th St, Rolla, MO 65409, United States'],\n[-37.9105238,145.1362182, 'Wellington Rd, Clayton VIC 3800, Australia'],\n[-37.9105238,145.1362182, 'Wellington Rd, Clayton VIC 3800, Australia'],\n[-38.3110658,146.4284014, 'Northways Rd, Churchill VIC 3842, Australia'],\n[25.6515649,-100.28954, 'Av. Eugenio Garza Sada 2501 Sur, Tecnológico, 64849 Monterrey, N.L., Mexico'],\n[55.649567,37.6638742, 'Kashira Highway, 31, Moskva, Russia, 115409'],\n[55.9297243,37.5199434, 'Institutskiy Pereulok, 9, Dolgoprudny, Moskovskaya oblast, Russia, 141701'],\n[55.70393490000001,37.5286696, 'ul. Leninskiye Gory, 1, Moskva, Russia, 119991'],\n[40.72951339999999,-73.9964609, 'New York, NY 10003, USA'],\n[21.1468555,79.050062, 'Amravati Rd, Ram Nagar, Nagpur, Maharashtra 440033, India'],\n[1.3483099,103.6831347, '50 Nanyang Ave, Singapore 639798'],\n[31.3961507,75.5353566, 'Grand Trunk Road, Bye pass, Jalandhar, Punjab 144011, India'],\n[25.0173405,121.5397518, 'No. 1, Section 4, Roosevelt Rd, Da’an District, Taipei City, Taiwan 10617'],\n[-12.0220074,-77.04936459999999, 'Av. Tupac Amaru 210, Rímac 15333, Peru'],\n[41.772834,-88.14340709999999, '30 N Brainard St, Naperville, IL 60540, USA'],\n[42.3398067,-71.0891717, '360 Huntington Ave, Boston, MA 02115, USA'],\n[42.0564594,-87.67526699999999, '633 Clark St, Evanston, IL 60208, USA'],\n[55.1372019,36.6064735, 'Студенческий городок, 1, Obninsk, Kaluzhskaya oblast, Russia, 249034'],\n[36.8853217,-76.3058786, '5115 Hampton Blvd, Norfolk, VA 23529, USA'],\n[42.2586823,-121.7836222, '3201 Campus Dr, Klamath Falls, OR 97601, USA'],\n[19.4436005,-70.6843785, 'Autopista Duarte Km 1 1/2, Santiago De Los Caballeros 51000, Dominican Republic'],\n[35.8012314,51.5028533, 'Tehran Province, Tehran, اتوبان ارتش کوی نفت, Nakhl St, Iran'],\n[40.7982133,-77.8599084, 'Old Main, State College, PA 16801, USA'],\n[45.47809059999999,9.2282377, 'Piazza Leonardo da Vinci, 32, 20133 Milano MI, Italy'],\n[44.4386064,26.0494925, 'Splaiul Independenței 313, București 060042, Romania'],\n[45.7536393,21.2251615, 'Piața Victoriei 2, Timișoara 300006, Romania'],\n[12.0219328,79.85748319999999, 'Kalapet, Puducherry, 605014, India'],\n[-33.4411279,-70.6407933, 'Av Libertador Bernardo OHiggins 340, Santiago, Región Metropolitana, Chile'],\n[45.5111102,-122.6833424, '1825 SW Broadway, Portland, OR 97201, USA'],\n[39.7738832,-86.1763393, '420 University Blvd, Indianapolis, IN 46202, USA'],\n[12.9244514,77.4989013, 'Mysore Rd, RV Vidyaniketan, R V Vidyanikethan Post, Bengaluru, Karnataka 560059, India'],\n[42.730172,-73.67880300000002, '110 8th St, Troy, NY 12180, USA'],\n[41.0819323,-74.1758157, '505 Ramapo Valley Rd, Mahwah, NJ 07430, USA'],\n[43.0845894,-77.67434449999999, '1 Lomb Memorial Dr, Rochester, NY 14623, USA'],\n[10.7285151,79.0184082, 'Trichy-Tanjore Road, Thirumalaisamudram, Thanjavur, Tamil Nadu 613401, India'],\n[59.941894,30.2989199, 'University Embankment, 7/9, Sankt-Peterburg, Russia, 199034'],\n[59.929491,30.2966081, 'Bolshaya Morskaya Ulitsa, 67, Sankt-Peterburg, Russia, 190000'],\n[60.007357,30.372899, 'Politekhnicheskaya Ulitsa, 29, Sankt-Peterburg, Russia, 195251'],\n[37.721897,-122.4782094, '1600 Holloway Ave, San Francisco, CA 94132, USA'],\n[37.3351874,-121.8810715, '1 Washington Sq, San Jose, CA 95192, USA'],\n[31.201001,121.432841, '1954 Huashan Rd, JiaoTong DaXue, Xuhui Qu, Shanghai Shi, China, 200030'],\n[35.7036366,51.351593, 'خیابان آزادی، تهران بزرگ،، Iran'],\n[10.408363,-66.8755735, 'Sartenejas, Caracas, Miranda, Venezuela'],\n[49.2780937,-122.9198833, '8888 University Dr, Burnaby, BC V5A 1S6, Canada'],\n[54.7845032,32.0452469, 'Ulitsa Przhevalskogo, 4, Smolensk, Smolenskaya oblast, Russia, 214000'],\n[38.3409236,-122.6730656, '1801 E Cotati Ave, Rohnert Park, CA 94928, USA'],\n[41.8348731,-87.6270059, '10 W 35th St, Chicago, IL 60616, USA'],\n[44.4332166,26.1009718, 'Strada Ion Ghica 13, București 030167, Romania'],\n[37.4274745,-122.169719, '450 Serra Mall, Stanford, CA 94305, USA'],\n[-22.8184393,-47.0647206, 'Cidade Universitária Zeferino Vaz - Barão Geraldo, Campinas - SP, 13083-970, Brazil'],\n[43.4514291,-76.5443166, '7060 NY-104, Oswego, NY 13126, USA'],\n[-33.9328078,18.864447, 'Stellenbosch Central, Stellenbosch, 7600, South Africa'],\n[42.0590153,-71.0806276, '320 Washington St, North Easton, MA 02357, USA'],\n[59.438742,24.771645, 'Narva maantee 25, 10120 Tallinn, Estonia'],\n[59.395884,24.671431, 'Ehitajate tee 5, 12616 Tallinn, Estonia'],\n[61.44976219999999,23.8586054, 'Korkeakoulunkatu 7 Kampusareena, 33720 Tampere, Finland'],\n[30.7924391,30.9991409, 'El-Gaish, Tanta Qism 2, Tanta, Gharbia Governorate, Egypt'],\n[32.7474661,-97.3278753, '1500 Houston St, Fort Worth, TX 76102, USA'],\n[46.769299,23.585613, 'Strada Memorandumului 28, Cluj-Napoca 400114, Romania'],\n[32.7767783,35.0231271, 'Haifa, 3200003, Israel'],\n[32.1133141,34.8043877, 'Tel Aviv-Yafo, Israel'],\n[31.7691587,35.1937099, 'יעקב שרייבום 26, ירושלים, 9103501, Israel'],\n[56.95080979999999,24.1163132, 'Raiņa bulvāris 19, Centra rajons, Rīga, LV-1586, Latvia'],\n[53.4668498,-2.2338837, 'Oxford Rd, Manchester M13 9PL, UK'],\n[38.053147,-84.4936508, '300 N Broadway, Lexington, KY 40508, USA'],\n[42.4074843,-71.1190232, '419 Boston Ave, Medford, MA 02155, USA'],\n[37.8718992,-122.2585399, 'Berkeley, CA, USA'],\n[34.068921,-118.4451811, 'Los Angeles, CA 90095, USA'],\n[32.8800604,-117.2340135, '9500 Gilman Dr, La Jolla, CA 92093, USA'],\n[40.1019523,-88.2271615, 'Champaign, IL, USA'],\n[46.8186613,-92.0835669, '1049 University Dr, Duluth, MN 55812, USA'],\n[-25.7676588,28.1992637, 'Preller St, Muckleneuk, Pretoria, 0002, South Africa'],\n[-34.5998875,-58.37306949999999, 'Viamonte 430, C1053 CABA, Argentina'],\n[40.785212,-77.82307039999999, '101 Regent Ct, State College, PA 16801, USA'],\n[34.0223519,-118.285117, 'Los Angeles, CA 90007, USA'],\n[43.076592,-89.4124875, 'Madison, WI 53706, USA'],\n[10.4883502,-66.8891696, 'Caracas, Capital District, Venezuela'],\n[40.4478246,-3.728587199999999, 'Av. Séneca, 2, 28040 Madrid, Spain'],\n[6.2464426,-75.5612621, 'Colombia #41-26, Medellín, Antioquia, Colombia'],\n[29.419657,-98.485243, '600 Hemisfair Plaza Way, San Antonio, TX 78205, USA'],\n[9.998686099999999,-84.11118580000002, 'Avenida 1, Calle 9 Heredia 86, 3000, Costa Rica'],\n[4.6381938,-74.08404639999999, 'Cra 45, Bogotá, Colombia'],\n[-16.500656,-68.134299, 'Calle Colombia 154, La Paz, Bolivia'],\n[-34.5998875,-58.37306949999999, 'Viamonte 430, C1053 CABA, Argentina'],\n[38.99404390000001,-3.9204979, 'Avda. Camilo José Cela, s/n, 13071 Ciudad Real, Cdad. Real, Spain'],\n[4.6017869,-74.0660769, 'Bogotá, Bogota, Colombia'],\n[10.1732454,-64.6525884, 'Via Alterna, Barcelona 6001, Anzoátegui, Venezuela'],\n[14.5863885,-90.5528132, 'Avenida 11, Guatemala 01012, Guatemala'],\n[41.6569271,-4.7140547, 'C/Plaza de Santa Cruz, 8, 47002 Valladolid, Spain'],\n[4.8615787,-74.0325368, 'Chía, Cundinamarca, Colombia'],\n[14.603762,-90.48924799999999, '18 Avenida 11-95, Guatemala 01015, Guatemala'],\n[-7.137792699999999,-34.8459443, 'Campus I - Lot. Cidade Universitaria, João Pessoa - PB, 58033-455, Brazil'],\n[-27.6007034,-48.5191775, 'R. Eng. Agronômico Andrei Cristian Ferreira, s/n - Trindade, Florianópolis - SC, 88040-900, Brazil'],\n[-30.0338248,-51.21882799999999, 'Av. Paulo Gama, 110 - Farroupilha, Porto Alegre - RS, 90040-060, Brazil'],\n[-22.9541412,-43.1753638, 'Av. Pedro Calmon, 550 - Cidade Universitária, Rio de Janeiro - RJ, 21941-901, Brazil'],\n[38.7368192,-9.138705, 'Av. Rovisco Pais 1, 1049-001 Lisboa, Portugal'],\n[-23.5613991,-46.7307891, 'São Paulo - State of São Paulo, 05508-070, Brazil'],\n[41.5607319,-8.3962368, 'R. da Universidade, 4710-057 Braga, Portugal'],\n[-7.7713847,110.3774998, 'Bulaksumur, Caturtunggal, Kec. Depok, Kabupaten Sleman, Daerah Istimewa Yogyakarta 55281, Indonesia'],\n[39.4808376,-0.3409522, 'Camí de Vera, s/n, 46022 València, Valencia, Spain'],\n[50.66968749999999,4.6155909, 'Place de lUniversité 1, 1348 Ottignies-Louvain-la-Neuve, Belgium'],\n[40.7535222,-73.9766297, 'MetLife Building, 200 Park Ave, New York, NY 10166, USA'],\n[48.14966,11.5678602, 'Arcisstraße 21, 80333 München, Germany'],\n[41.076655,-81.5113386, '302 E Buchtel Ave, Akron, OH 44325, USA'],\n[53.5232189,-113.5263186, '116 St & 85 Ave, Edmonton, AB T6G 2R3, Canada'],\n[52.35581819999999,4.955726299999999, '1012 WX Amsterdam, Netherlands'],\n[36.0678324,-94.17365509999999, 'Fayetteville, AR 72701, USA'],\n[37.968196,23.7786871, 'Athens 157 72, Greece'],\n[44.8184339,20.4575676, 'Studentski trg 1, Beograd, Serbia'],\n[33.5021227,-86.8064447, '1720 2nd Ave S, Birmingham, AL 35294, USA'],\n[-34.5998875,-58.37306949999999, 'Viamonte 430, C1053 CABA, Argentina'],\n[52.2042666,0.1149085, 'The Old Schools, Trinity Ln, Cambridge CB2 1TN, UK'],\n[35.654866,-97.471463, '100 N University Dr, Edmond, OK 73034, USA'],\n[41.7886079,-87.5987133, '5801 S Ellis Ave, Chicago, IL 60637, USA'],\n[39.1329219,-84.51495039999999, '2600 Clifton Ave, Cincinnati, OH 45220, USA'],\n[40.00758099999999,-105.2659417, 'Boulder, CO 80309, USA'],\n[41.8077414,-72.2539805, 'Storrs, CT 06269, USA'],\n[32.8481339,-96.9216857, '1845 E Northgate Dr, Irving, TX 75062, USA'],\n[47.5564768,21.6282931, 'Debrecen, Nagyerdei krt. 94, 4032 Hungary'],\n[39.6779504,-75.7506114, 'Newark, DE 19716, USA'],\n[49.5978804,11.0045507, 'Schloßplatz 4, 91054 Erlangen, Germany'],\n[51.7343313,0.4690888, 'Essex, UK'],\n[38.5731454,-7.9056599, '2, Largo dos Colegiais, Évora, Portugal'],\n[29.6436325,-82.3549302, 'Gainesville, FL 32611, USA'],\n[57.6981719,11.971878, '405 30 Gothenburg, Sweden'],\n[54.095094,13.3746059, 'Domstraße 11, 17489 Greifswald, Germany'],\n[53.5665641,9.984619499999999, '20146 Hamburg, Germany'],\n[21.296939,-157.8171118, '2500 Campus Rd, Honolulu, HI 96822, USA'],\n[60.1726348,24.9510419, 'Yliopistonkatu 4, 00100 Helsinki, Finland'],\n[8.4912458,4.5949818, 'Ilorin, Nigeria'],\n[9.684855599999999,80.0220413, 'Sir. Pon Ramanathan Road, Thirunelvelly,, Jaffna 40000, Sri Lanka'],\n[38.9543439,-95.2557961, '1450 Jayhawk Blvd, Lawrence, KS 66045, USA'],\n[8.5032375,76.9473306, 'Senate House Campus, Palayam, Thiruvananthapuram, Kerala 695034, India'],\n[51.5229378,-0.1308206, 'Senate House, Malet St, Bloomsbury, London WC1E 7HU, UK'],\n[36.7199506,-4.4160927, 'Av. de Cervantes, 2, 29016 Málaga, Spain'],\n[3.1201011,101.6543993, 'Jalan Universiti, 50603 Kuala Lumpur, Wilayah Persekutuan Kuala Lumpur, Malaysia'],\n[53.4668498,-2.2338837, 'Oxford Rd, Manchester M13 9PL, UK'],\n[42.2780436,-83.7382241, '500 S State St, Ann Arbor, MI 48109, USA'],\n[38.9403808,-92.32773750000001, 'Columbia, MO 65211, USA'],\n[6.7973214,79.9012281, 'Bandaranayake Mawatha, Moratuwa 10400, Sri Lanka'],\n[18.9292037,72.8313829, '123, Mahatma Gandhi Road, Kala Ghoda, Fort, Mumbai, Maharashtra 400032, India'],\n[40.8201966,-96.70047629999999, '1400 R St, Lincoln, NE 68588, USA'],\n[40.8201966,-96.70047629999999, '1400 R St, Lincoln, NE 68588, USA'],\n[41.2907035,-72.9616437, '300 Boston Post Rd, West Haven, CT 06516, USA'],\n[-33.917347,151.2312675, 'Sydney NSW 2052, Australia'],\n[41.7055716,-86.2353388, 'Notre Dame, IN 46556, USA'],\n[35.2058936,-97.4457137, '660 Parrington Oval, Norman, OK 73019, USA'],\n[45.42310639999999,-75.68313289999999, '75 Laurier Ave E, Ottawa, ON K1N 6N5, Canada'],\n[51.7548164,-1.2543668, 'Oxford OX1 2JD, UK'],\n[45.406766,11.8774462, 'Via 8 Febbraio 1848, 2, 35122 Padova PD, Italy'],\n[45.1867156,9.1561041, 'Corso Str. Nuova, 65, 27100 Pavia PV, Italy'],\n[39.9522188,-75.1932137, 'Philadelphia, PA 19104, USA'],\n[37.9415292,23.6528343, 'Karaoli ke Dimitriou 80, Pireas 185 34, Greece'],\n[-25.7545492,28.2314476, 'Lynnwood Rd, Hatfield, Pretoria, 0002, South Africa'],\n[40.9613376,-5.666925099999999, '37008 Salamanca, Spain'],\n[-23.5613991,-46.7307891, 'São Paulo - State of São Paulo, 05508-070, Brazil'],\n[43.856883,18.4188848, 'Obala Kulina bana 7/II, Sarajevo 71000, Bosnia and Herzegovina'],\n[34.0223519,-118.285117, 'Los Angeles, CA 90007, USA'],\n[-33.9328078,18.864447, 'Stellenbosch Central, Stellenbosch, 7600, South Africa'],\n[58.3810843,26.7198659, 'Ülikooli 18, 50090 Tartu, Estonia'],\n[35.7022192,51.39573069999999, 'Tehran Province, Tehran, Enghelab Square، Iran'],\n[37.09024,-95.712891, 'Independence, KS 67301, USA'],\n[30.2849185,-97.7340567, 'Austin, TX 78712, USA'],\n[43.6628917,-79.39565640000001, '27 Kings College Cir, Toronto, ON M5S 3H7, Canada'],\n[48.5294782,9.043773999999999, 'Geschwister-Scholl-Platz, 72074 Tübingen, Germany'],\n[52.2393971,6.850870899999999, '5, Drienerlolaan, 7522 NB Enschede, Netherlands'],\n[40.7649368,-111.8421021, '201 Presidents Cir, Salt Lake City, UT 84112, USA'],\n[48.21318549999999,16.3600504, 'Universitätsring 1, 1010 Wien, Austria'],\n[52.2403463,21.0186012, 'Krakowskie Przedmieście 26/28, 00-927 Warszawa, Poland'],\n[47.65533509999999,-122.3035199, 'Seattle, WA 98195, USA'],\n[47.7589,-122.1906495, '18115 Campus Way NE, Bothell, WA 98011, USA'],\n[43.4722854,-80.5448576, '200 University Ave W, Waterloo, ON N2L 3G1, Canada'],\n[30.5474687,-87.216141, 'Building 21, 11000 University Pkwy, Pensacola, FL 32514, USA'],\n[43.076592,-89.4124875, 'Madison, WI 53706, USA'],\n[31.47898409999999,74.2661627, 'Canal Bank Rd, Punjab University New Campus, Lahore, Punjab, Pakistan'],\n[-26.1916888,28.0327614, '1 Jan Smuts Ave, Johannesburg, 2000, South Africa'],\n[54.7224678,25.3376688, 'Saulėtekio al. 11, Vilnius 10221, Lithuania'],\n[54.6825757,25.2876469, 'Universiteto g. 3, Vilnius 01513, Lithuania'],\n[37.5495048,-77.45097179999999, 'Richmond, VA 23284, USA'],\n[37.22838429999999,-80.42341669999999, 'Blacksburg, VA 24061, USA'],\n[18.464077,73.867619, '666, Upper Indira Nagar, Bibvewadi, Pune, Maharashtra 411037, India'],\n[52.2403463,21.0186012, 'Krakowskie Przedmieście 26/28, 00-927 Warszawa, Poland'],\n[46.7319225,-117.1542121, 'Pullman, WA, USA'],\n[42.3590346,-83.07087369999999, 'Wayne State, Detroit, MI, USA'],\n[41.1918555,-111.9449141, '3848 Harrison Blvd, Ogden, UT 84408, USA'],\n[31.9045055,34.8083407, 'Herzl St 234, Rehovot, Israel'],\n[40.6848059,-111.8698679, '4001 700 E #700, Salt Lake City, UT 84107, USA'],\n[39.1493644,-84.4745119, '3800 Victory Pkwy, Cincinnati, OH 45207, USA'],\n[30.5883084,31.4831937, 'Shaibet an Nakareyah, Markaz El-Zakazik, Ash Sharqia Governorate 44519, Egypt'],\n[33.6851641,73.05450420000001, 'Ashfaq Ahmed Road, H-8/2، H 8/2 H-8, Islamabad, Islamabad Capital Territory 44000, Pakistan'],\n[33.4242399,-111.9280527, 'Tempe, AZ 85281, USA'],\n[-18.9494274,-45.4934107, 'Gerais, Paineiras - MG, 35622-000, Brazil'],\n[39.1974437,-96.5847249, 'Manhattan, KS 66506, USA'],\n[40.4478246,-3.728587199999999, 'Av. Séneca, 2, 28040 Madrid, Spain'],\n[38.28923,21.785369, 'Panepistimioupoli Patron, Patra 265 04, Greece'],\n[45.406766,11.8774462, 'Via 8 Febbraio 1848, 2, 35122 Padova PD, Italy'],\n[26.4683247,49.7972482, 'King Fahd International Airport, King Fahd Rd، Dammam Saudi Arabia']\n];\n"
  },
  {
    "path": "Readme.md",
    "content": "## Python for Everybody Specialization\r\n### University of Michigan\r\n\r\nCoursera Specialization :\r\n[Python for Everybody Specialization](https://www.coursera.org/specializations/python)\r\n\r\n** 4 Courses : **\r\n\r\n*  Course 1: Programming for Everybody (Getting Started with Python):    \r\n   * [Assignemnts](https://github.com/AmaniAbbas/py4e/tree/master/Course-1/Assignemnts)\r\n   * [Quizzes](https://github.com/AmaniAbbas/py4e/tree/master/Course-1/Quizzes)\r\n\r\n*  Course 2: Python Data Structures:       \r\n    * [Assignemnts](https://github.com/AmaniAbbas/py4e/tree/master/Course-2/Assignments)\r\n    * [Quizzes](https://github.com/AmaniAbbas/py4e/tree/master/Course-2/Quizzes)\r\n\r\n*  Course 3: Using Python to Access Web Data:\r\n    * [Assignemnts](https://github.com/AmaniAbbas/py4e/tree/master/Course-3/Assignments)\r\n    * [Quizzes](https://github.com/AmaniAbbas/py4e/tree/master/Course-3/Quizzes)\r\n\r\n*  Course 4: Using Databases with Python:\r\n    * [5 Weeks: Assignments and Quizzes](https://github.com/AmaniAbbas/py4e/tree/master/Course-4)\r\n"
  }
]