Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

Excerpt

Proof-Of-Concept subproject to investigate the possibility af using Cooliris for browsing archived websites

Section
h3.

User

guide

Guide

to

to

view

the

provide

web

content:

#

  1. Extract
  1. the
  1. web
  1. content
  1. to
  1. a
  1. folder
  1. on
  1. the
  1. web
  1. server.
#
  1. Update
  1. the
  1. web/index.html
  1. and
  1. ${walltitle}/wall.html
  1. to
  1. reflect
  1. the
  1. url
  1. of
  1. the
  1. web
  1. server.
  1. The
  1. provided
  1. source
uses a webserer at
  1. use a webserver at http://pc300.sb/,
  1. which
  1. should
  1. be
  1. changed
  1. to
  1. the
  1. relevant
  1. webserver
  1. url.
#
  1. Publish
  1. the
  1. web
  1. folder
  1. on
  1. the
webserver. h3. Generate content # Download and extract the [source tar|^cooliris-poc-src.tar.gz] # Create a URLGenerator class to provide the list of URLs to capture. Examples of URLGenerators can be found in the
  1. webserver.

As default Cooliris uses flash to display the Cooliris walls in the browser, but to get the full benefit of Cooliris you should install the plugin .

Generate content

  1. Download and extract the source tar
  2. Create a URLGenerator class to provide the list of URLs to capture. Examples of URLGenerators can be found in the src/main/wall/harvesters
  1. folder.
  1. All
  1. the
  1. harvesters
  1. found
  1. here
  1. are
  1. based
  1. on
  1. loading
  1. a
  1. file
  1. containing
  1. the
  1. relevant
  1. URLs
  1. and
  1. generating
  1. a
  1. url
  1. list
  1. based
  1. on
  1. this.
#
  1. Create
  1. a
  1. runner
  1. class,
  1. which
  1. is
  1. going
  1. to
  1. generate
  1. the
  1. Cooliris
  1. wall.
  1. See
  1. the
  1. harvestrunner
  1. package
  1. for
  1. examples.
#
  1. Start
  1. a
  1. Selenium
  1. server
  1. with
  1. the
  1. appropriate
  1. configuration,
  1. eg.
{
Column
Wiki Markup
Code Block
}
  1. 
    java
    -Dhttp.proxyHost=${proxy-url} -Dhttp.proxyPort=${proxy-port} -Dhttp.proxyUser=${proxy-loginname} -Dhttp.proxyPassword=${proxy-pw}
    -jar selenium-server.jar_
    
{code}
  1. .

  1. I
  1. never
  1. got
  1. this
  1. to
  1. work
  1. in
  1. Ubuntu
  1. firefox,
  1. so
alternatively
  1. insteadd I
  1. created
  1. a
custiom
  1. custom profile
  1. with
  1. the
  1. relevant
  1. proxy
  1. setting
  1. and
  1. started
  1. the
seleniun
  1. selenium server
  1. with
  1. the
_\
  1. -firefoxProfileTemplate
  1. "path-to-profile-folder"
_

  1. You
  1. may
  1. need
  1. to
  1. manually
  1. supply
  1. a
  1. proxy
  1. loginname/pw
  1. on
  1. each
  1. Capture
  1. run
  1. in
  1. this
  1. case.

  1. Another
  1. possibility
  1. is
  1. to
  1. use
  1. the
  1. Maven2
  1. selenium
  1. target
  1. provide
  1. in
  1. the
  1. projects
  1. pom.xml
  1. to
  1. start
  1. the
  1. selenium
  1. server.
#
  1. Start
  1. the
  1. relevant
  1. Runner.
  1. Ensure
  1. that
  1. the
  1. browser
  1. window
  1. showing
  1. the
  1. web
  1. pages
  1. to
  1. capture
  1. is
  1. visible
  1. at
  1. all
  1. times.
Column

Html

<object id="o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" height="100%" width="100%">
    <param name="movie" value="http://apps.cooliris.com/embed/cooliris.swf" />
    <param name="allowFullScreen" value="true" />
    <param name="allowScriptAccess" value="always" />
    <embed type="application/x-shockwave-flash"
      src="http://apps.cooliris.com/embed/cooliris.swf"
      flashvars="feed=http://pc300.sb/dr-timeline/wall.xml"
      allowFullScreen="true"
       width="600" height="400"
      allowScriptAccess="always">
    </embed>
    </object>