~ubuntu-branches/debian/squeeze/gnome-do-plugins/squeeze

« back to all changes in this revision

Viewing changes to BundledLibraries/libgoogle-data-mono-1.4.0.2/misc/pushdoc.cmd

  • Committer: Bazaar Package Importer
  • Author(s): Christopher James Halse Rogers
  • Date: 2009-06-27 16:11:49 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090627161149-b74nc297di2842u1
* New upstream release
  + Pidgin plugin now supports initial text for messages (LP: #338608)
  + Pidgin plugin opens conversations on the correct IM network (LP: #370965)
* debian/rules:
  + Update get-orig-source target.  Upstream no longer ships gdata* binaries,
    so we no longer need to strip them
* debian/patches/00_use_system_gdata
  + Drop.  Upstream now builds against system libgdata.
* debian/patches/04_fix_pidgin_dbus_ints
* debian/patches/10_fix_rhythmbox_file
* debian/patches/15_twitter_api
* debian/patches/20_twitter_overflow:
  + Drop.  Included upstream.
* debian/patches/01_firefox_iceweasel_rename:
  + Refresh for new version
* debian/patches/02_fix_banshee_plugin:
  + Drop refernce to /usr/lib/banshee-1/Banshee.CollectionIndexer.dll.
    This is unnecessary, and causes errors when Banshee isn't installed.
* debian/patches/00_debian_default_plugins:
  + Enable a bunch of useful plugins that do not require configuration from 
    the "Official" plugin set by default.  Makes Do more useful out of the 
    box.
* debian/control:
  + Bump versioned build-dep on gnome-do to 0.8.2
  + Split out gnome-do-plugin-evolution package, now that this is possible.
    libevolution5.0-cil has an annoyingly large dependency stack.
    (LP: #351535) (Closes: #524993).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
@echo off
2
 
set shfb_home=%ProgramFiles%\EWSoftware\Sandcastle Help File Builder
3
 
set src_home=..\src\VS2003
4
 
set out_dir=..\lib
5
 
set doc_dir=..\docs
6
 
set target_dir=..\..\..\..\docs
7
 
set temp_dir=d:\tempHTML
8
 
time /t
9
 
rem build documentation
10
 
"%shfb_home%\SandcastleBuilderConsole.exe" GDataProject.shfb
11
 
move "%temp_dir%\Google.GData.Documentation.chm" "%doc_dir%\"
12
 
move "%temp_dir%\*.log" .
13
 
 
14
 
echo "%temp_dir%\*.*"
15
 
echo "%target_dir%\*.*"
16
 
 
17
 
move /y "%temp_dir%\*.*" "%target_dir%\"
18
 
echo "now moving html files"
19
 
move /y "%temp_dir%\html\*.*" "%target_dir%\html\"
20
 
echo "now moving the index"
21
 
move /y "%target_dir%\Index.html" "%target_dir%\orgindex.html"
22
 
echo "now moving addtional contents"
23
 
move /y "%temp_dir%\AdditionalContent\*.*" "target_dir%\AdditionalContent\"
24
 
time /t
25
 
 
26