summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authorVlad Ureche <vlad.ureche@gmail.com>2012-03-25 03:27:51 +0200
committerVlad Ureche <vlad.ureche@gmail.com>2012-03-25 03:27:51 +0200
commit0e15be42747a4a36983dcc292b762df6aa2ca91d (patch)
tree9698264d6eccc4b8130d402fd7bd086fa55d0bb9 /src/library
parentc0e9e75becead51d4317c5100f0b33eff62b6daa (diff)
downloadscala-0e15be42747a4a36983dcc292b762df6aa2ca91d.tar.gz
scala-0e15be42747a4a36983dcc292b762df6aa2ca91d.tar.bz2
scala-0e15be42747a4a36983dcc292b762df6aa2ca91d.zip
Scaladoc is now pointing to sources in github
For snapshots, it points to the exact commit, for releases it points to the tag ("v" + maven version). The link now opens in a different tab, as opening in the same frame is not compatible with github (the page doesn't load for some reason). Left the repo url in test/review untouched because it points to the root of all LAMP repos. But... is anyone still using that script?!?
Diffstat (limited to 'src/library')
-rw-r--r--src/library/scala/xml/factory/LoggedNodeFactory.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/xml/factory/LoggedNodeFactory.scala b/src/library/scala/xml/factory/LoggedNodeFactory.scala
index c15a9ebe7b..abf8f97f03 100644
--- a/src/library/scala/xml/factory/LoggedNodeFactory.scala
+++ b/src/library/scala/xml/factory/LoggedNodeFactory.scala
@@ -18,7 +18,7 @@ object testLogged extends Application {
with scala.util.logging.ConsoleLogger
Console.println("Start")
- val doc = x.load(new java.net.URL("http://lampsvn.epfl.ch/svn-repos/scala/scala/trunk/build.xml"))
+ val doc = x.load(new java.net.URL("http://example.com/file.xml"))
Console.println("End")
Console.println(doc)
}