You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openmeetings.apache.org by se...@apache.org on 2011/12/16 21:28:46 UTC

svn commit: r1215261 - /incubator/openmeetings/site/docs/sync_script.sh

Author: sebawagner
Date: Fri Dec 16 20:28:46 2011
New Revision: 1215261

URL: http://svn.apache.org/viewvc?rev=1215261&view=rev
Log:
Add website sync script

Added:
    incubator/openmeetings/site/docs/sync_script.sh

Added: incubator/openmeetings/site/docs/sync_script.sh
URL: http://svn.apache.org/viewvc/incubator/openmeetings/site/docs/sync_script.sh?rev=1215261&view=auto
==============================================================================
--- incubator/openmeetings/site/docs/sync_script.sh (added)
+++ incubator/openmeetings/site/docs/sync_script.sh Fri Dec 16 20:28:46 2011
@@ -0,0 +1,110 @@
+#!/bin/sh 
+#clean up
+rm *".html";
+rm -R "css";
+rm -R "images";
+mkdir "css";
+mkdir "images";
+REPOSITORY_URL="http://svn.apache.org/repos/asf/incubator/openmeetings/site/docs/"
+#Download files
+wget $REPOSITORY_URL+"ApacheDerbyConfig.html"
+wget $REPOSITORY_URL+"GeneralConfiguration.html"
+wget $REPOSITORY_URL+"OracleConfig.html"
+wget $REPOSITORY_URL+"UserService.html"
+wget $REPOSITORY_URL+"index.html"
+wget $REPOSITORY_URL+"GetVersionInfo.html"
+wget $REPOSITORY_URL+"PortSettings.html"
+wget $REPOSITORY_URL+"WebappNamePath.html"
+wget $REPOSITORY_URL+"installation.html"
+wget $REPOSITORY_URL+"IBMDB2Config.html"
+wget $REPOSITORY_URL+"PostgresConfig.html"
+wget $REPOSITORY_URL+"WebcamResolutions.html"
+wget $REPOSITORY_URL+"license.html"
+wget $REPOSITORY_URL+"BrandingAndColors.html"
+wget $REPOSITORY_URL+"Internationalisation.html"
+wget $REPOSITORY_URL+"RTMPSAndHTTPS.html"
+wget $REPOSITORY_URL+"WebserviceIndex.html"
+wget $REPOSITORY_URL+"mail-lists.html"
+wget $REPOSITORY_URL+"BuildInstructions.html"
+wget $REPOSITORY_URL+"JUnitTesting.html"
+wget $REPOSITORY_URL+"RestAPI.html"
+wget $REPOSITORY_URL+"openmeetings_docs.css"
+wget $REPOSITORY_URL+"CalendarAndTimezone.html"
+wget $REPOSITORY_URL+"JVMPerformanceTuning.html"
+wget $REPOSITORY_URL+"RestrictedAccess.html"
+wget $REPOSITORY_URL+"dependencies.html"
+wget $REPOSITORY_URL+"svn.html"
+wget $REPOSITORY_URL+"Dashboard.html"
+wget $REPOSITORY_URL+"LanguageEditor.html"
+wget $REPOSITORY_URL+"RoomService.html"
+wget $REPOSITORY_URL+"documentation.html"
+wget $REPOSITORY_URL+"sync_script.sh
+wget $REPOSITORY_URL+"EditTemplates.html"
+wget $REPOSITORY_URL+"LdapAndADS.html"
+wget $REPOSITORY_URL+"SoapRestAPI.html"
+wget $REPOSITORY_URL+"downloads.html"
+wget $REPOSITORY_URL+"team-list.html"
+wget $REPOSITORY_URL+"FFMPEGVersionSwitch.html"
+wget $REPOSITORY_URL+"MySQLConfig.html"
+wget $REPOSITORY_URL+"TimeZoneHandling.html"
+wget $REPOSITORY_URL+"get-involved.html"
+wget $REPOSITORY_URL+"FileService.html"
+wget $REPOSITORY_URL+"Navigation.html"
+wget $REPOSITORY_URL+"Upgrade.html"
+#Get Images
+cd "images";
+wget $REPOSITORY_URL+"images/54882.jpg"
+wget $REPOSITORY_URL+"images/Arguments.png"
+wget $REPOSITORY_URL+"images/DebugConfigurations.png"
+wget $REPOSITORY_URL+"images/NewConfiguration.png"
+wget $REPOSITORY_URL+"images/apache-incubator-logo-no-borders.png"
+wget $REPOSITORY_URL+"images/apache_feather.gif
+wget $REPOSITORY_URL+"images/audio_video.png"
+wget $REPOSITORY_URL+"images/backup.png"
+wget $REPOSITORY_URL+"images/calendar.png"
+wget $REPOSITORY_URL+"images/chat.png"
+wget $REPOSITORY_URL+"images/checkout_1.png"
+wget $REPOSITORY_URL+"images/checkout_2.png"
+wget $REPOSITORY_URL+"images/checkout_3.png"
+wget $REPOSITORY_URL+"images/checkout_4.png"
+wget $REPOSITORY_URL+"images/checkout_5.png"
+wget $REPOSITORY_URL+"images/checkout_6.png"
+wget $REPOSITORY_URL+"images/checkout_7.png"
+wget $REPOSITORY_URL+"images/checkout_8.png"
+wget $REPOSITORY_URL+"images/checkout_9.png"
+wget $REPOSITORY_URL+"images/choose_divice.png"
+wget $REPOSITORY_URL+"images/dashboard.png"
+wget $REPOSITORY_URL+"images/desktopsharing.png"
+wget $REPOSITORY_URL+"images/file_smal.png"
+wget $REPOSITORY_URL+"images/installation_instructions.png"
+wget $REPOSITORY_URL+"images/langeditor_screen_v2.png"
+wget $REPOSITORY_URL+"images/ldap_screen.png"
+wget $REPOSITORY_URL+"images/logo-2.jpg"
+wget $REPOSITORY_URL+"images/moderator.png"
+wget $REPOSITORY_URL+"images/mouse.png"
+wget $REPOSITORY_URL+"images/poll.png"
+wget $REPOSITORY_URL+"images/pollresult.png"
+wget $REPOSITORY_URL+"images/privat_messages.png"
+wget $REPOSITORY_URL+"images/recordings_timeleine.png"
+wget $REPOSITORY_URL+"images/right_management.png"
+wget $REPOSITORY_URL+"images/screenshare.png"
+wget $REPOSITORY_URL+"images/system_backup.png"
+wget $REPOSITORY_URL+"images/vote.png"
+wget $REPOSITORY_URL+"images/whiteboard.png"
+wget $REPOSITORY_URL+"images/whiteboard_access.png"
+# Get CSS
+cd "css";
+wget $REPOSITORY_URL+"css/1b.png"
+wget $REPOSITORY_URL+"css/2b.png"
+wget $REPOSITORY_URL+"css/3b.png"
+wget $REPOSITORY_URL+"css/4b.png"
+wget $REPOSITORY_URL+"css/openmeetings.css"
+#
+#Generate Files index output
+#
+#DIR="/Users/swagner/Documents/workspaces/workspaces_indigo_64_om/ROOT/docs/css/*"
+#for i in $DIR*
+#do
+#	echo $i;
+#done
+#echo "END";
\ No newline at end of file