diff --git a/app/assets/Archive/javascripts/orbitdesktop.js b/app/assets/Archive/javascripts/orbitdesktop.js index 5d920c15..fc945390 100755 --- a/app/assets/Archive/javascripts/orbitdesktop.js +++ b/app/assets/Archive/javascripts/orbitdesktop.js @@ -117,7 +117,7 @@ var orbitDesktop = function(dom){ // o = this; this.contentHolder = dom; this.themesettings = ""; - this.theme = "4f8d3f493b67fcd05f086359"; + this.theme = null; this.transitionTime = 1000; this.currenthtml = "home"; this.currentface = "home"; @@ -134,22 +134,21 @@ var orbitDesktop = function(dom){ var theme = o.theme; var custom = false; o.getlocation(); + o.minimizeBarManager(); $.getJSON("/desktop/get_desktop_settings",{"get":"desktop","desktopid":o.desktopId},function(desktopSettings){ if(desktopSettings){ - if(desktopSettings.theme!="custom"){ - theme = desktopSettings.theme; - }else{ - theme = "4f8d3f493b67fcd05f086359"; + if(desktopSettings.theme=="custom"){ custom = true; } + theme = desktopSettings.theme; o.theme = theme; loadTheme(desktopSettings.customtheme,desktopSettings.wallpaper); }else{loadTheme();} }); var loadTheme = function(customtheme,customwallpaper){ //This function will load the theme from database - $.getJSON("/"+o.themefolder+"/"+theme+"/settings/"+theme+".json",function(ts){ - o.themesettings = eval(ts); - $('head').append( $('').attr('href', "/"+o.themefolder+"/"+theme+"/css/"+ts.css)); + $.getJSON("/desktop_themes/settings",{"id":theme},function(ts){ + o.themesettings = ts; + $('head').append( $('').attr('href', o.themesettings.css)); if(custom){ $("head").find("#dyn_css").remove(); $("head").append(customtheme); @@ -182,10 +181,10 @@ var orbitDesktop = function(dom){ }; this.changeTheme = function(theme){ // this function is used for changing theme o.theme = theme; - $.getJSON("/"+o.themefolder+"/"+theme+"/settings/"+theme+".json",function(ts){ - o.themesettings = eval(ts); + $.getJSON("/desktop_themes/settings",{"id":theme},function(ts){ + o.themesettings = ts; $('head').find("#dyn_css").remove(); - $('head').append( $('').attr('href', "/"+o.themefolder+"/"+theme+"/css/"+ts.css)); + $('head').append( $('').attr('href', o.themesettings.css)); o.loadWallpaper(); o.loadIconCache(); }) @@ -553,7 +552,7 @@ var orbitDesktop = function(dom){ var target = dom.attr("id"); var url = dom.attr("href"); if(!url)return false; - o.lastlink = url; + o.data_method = dom.attr("callback-method"); if(o.currenthtml!=target){ if(o.desktopData[o.currentface] == "undefined"){ @@ -599,7 +598,8 @@ var orbitDesktop = function(dom){ o.sub_menu_item($(o.contentHolder).find("*[content-type=menu] a[load=true]"),o.desktopData[o.currentface]); } }catch(EX){} - cache = true; + + cache = (o.lastlink == "/desktop/app_manager" ? false : true); if(typeof o.data_method != "undefined"){ if(o.data_method != ""){ window.o[o.data_method](target,url,cache); @@ -622,6 +622,7 @@ var orbitDesktop = function(dom){ $(this).hide().delay(i*100).fadeIn(600,'easeInOutQuint'); }); } + o.lastlink = url; } this.sub_menu_item = function(dom,data){ var sub_data_method = dom.attr('callback-method'); @@ -745,7 +746,7 @@ var orbitDesktop = function(dom){ $("#desktop #group_wrapper").empty(); $.getJSON("/desktop/getgroups",{sectionid:id},function(tiles){ // tiles.sort(o.sortJSON("position",true,parseInt)); - var tilecolors = o.themesettings.tilecolor; + var tilecolors = (o.themesettings.tilecolor ? o.themesettings.tilecolor : ["thmc1","thmc2","thmc3","thmc4"]) ; var totaltiles_in_a_row = 4; var opacity = ["op07","op08","op09",""]; var row = 0, col = 1, x = 1, y = 1, total_x = 0, prev_y = 0; @@ -804,7 +805,7 @@ var orbitDesktop = function(dom){ } var loadSectionList = function(){ //This will load the section list from the db $.getJSON("/desktop/getsectionlist",{desktopid:o.desktopId},function(sectionlist){ - o.sectionList = eval(sectionlist); + o.sectionList = sectionlist; $.each(sectionlist,function(i,section){ var tempstyle=""; if(i==0){ @@ -1512,9 +1513,8 @@ var orbitDesktop = function(dom){ } this.loadWallpaper = function(wallpaper){ // this is to load new wallpaper - wallpapernm = (!wallpaper) ? o.themesettings.background : wallpaper; if(!wallpaper){ - $("#thmbackground").attr("src","/"+o.themefolder+"/"+o.theme+"/images/"+wallpapernm); + $("#thmbackground").attr("src",o.themesettings.background); } else { $("#thmbackground").attr("src",o.wallpaperPath+wallpaper); } @@ -1524,7 +1524,7 @@ var orbitDesktop = function(dom){ var imgs = $(".docklist img"); $.each(imgs,function(){ var setting_name = $(this).attr("id").replace("_icon",""); - $(this).attr("src","/"+o.themefolder+"/"+o.theme+"/images/"+o.themesettings.icons[setting_name]) + $(this).attr("src","/assets/desktop/icons/"+o.themesettings.icons[setting_name]) }) }; this.initializeWidgets = function(){ // this function will initialize all the widgets in the desktop @@ -1818,6 +1818,51 @@ var orbitDesktop = function(dom){ } } } + this.minimizeBarManager = function(){ + var minimizedApps = [], + minimizeBar = $("#minimizebar"); + this.minimizeBarManager.minimize = function(win){ + minimizedApps.push(win.attr("id")); + var $e = generateMiniBar(win.attr("id")); + $e.find("span[for=title]").text(win.data('title')); + $e.one("click",function(){ + o.minimizeBarManager.maximize(win); + }); + $e.find("span.icon-remove").one("click",function(e){ + o.appWindow.close(win); + e.stopPropagation(); + }); + minimizeBar.append($e); + win.hide(); + // var minimizeOffset = minimizeBar.offset(); + // win.animate({"left":minimizeOffset.left + "px","top":minimizeOffset.top + "px","height":"25px","width":"200px"},function(){ + + // }); + + } + this.minimizeBarManager.maximize = function(win){ + var position = minimizedApps.indexOf(win.attr("id")); + minimizedApps.splice(position,1); + getMiniBar(position).remove(); + win.show(); + updatePositions(); + } + var getMiniBar = function(position){ + return minimizeBar.find("div[data-position="+position+"]"); + } + var generateMiniBar = function(id){ + var position = minimizedApps.indexOf(id), + template = '
', + $e = $(template); + return $e; + } + + var updatePositions = function(){ + minimizeBar.find("div.minimize").each(function(){ + $(this).attr("data-position",minimizedApps.indexOf($(this).data("app-id"))); + }) + } + } o.initialize(); } diff --git a/app/assets/Archive/javascripts/orbitdesktopAPI.js b/app/assets/Archive/javascripts/orbitdesktopAPI.js index 19a38e4c..81cdb68f 100644 --- a/app/assets/Archive/javascripts/orbitdesktopAPI.js +++ b/app/assets/Archive/javascripts/orbitdesktopAPI.js @@ -116,29 +116,35 @@ var orbitDesktopAPI = function(){ }) return tempArray; }; - this.appWindow = function(settings,callbackfn){ + this.appWindow = function(options,callbackfn){ //takes set of arguments as array and gives callback //settings.method (string) : like open and close //settings.title (string) : the window title //settings.extUrl (boolean) : true for opening external url else false //settings.appid (string) : appid.. user can use this appid to open or close or refresh the window //settings.url (string) : it is the url if you want to force external url to open in appwindow... you have to pass extURL in appid if you want to open externalurl - if(typeof settings == "undefined")settings = {}; + var settings = { + method : "open", + extUrl : true, + title : "New Window" + } + $.extend(settings,options); if(!settings.appid){ o.notify("Invalid AppID.","imp",3); return; } - if(!settings.method)settings.method = "open"; - if(!settings.extUrl)settings.extUrl = true; + var isWindow = ($("div.app_frame[data-app="+settings.appid+"]").length > 0 ? $("div.app_frame[data-app="+settings.appid+"]") : null); + if(isWindow){ + o.minimizeBarManager.maximize(isWindow); + return; + } if(settings.method == 'open'){ var appurl = "http://www.rulingcom.com"; o.windowcounter++; - if(!settings.title)settings.title = "New Window "+o.windowcounter; if(settings.extUrl){ if(settings.url){ if(settings.url.substr(0,4)!="http")settings.url = "http://"+settings.url; - console.log(settings.url) var urlregex = new RegExp("^(http:\/\/www.|https:\/\/www.|ftp:\/\/www.|www.){1}([0-9A-Za-z]+\.)"); if(urlregex.test(settings.url)) appurl = settings.url; @@ -152,20 +158,34 @@ var orbitDesktopAPI = function(){ return; } } - var whtml =$('
'+settings.title+'
'); - $(o.contentHolder).append(whtml); + var whtml =$('
'+settings.title+'
'); + $("body").append(whtml); var parentwindow = $(o.contentHolder).find("#app_frame_"+o.windowcounter); var app_holder_height = parentwindow.height() - 72; var app_holder_width = parentwindow.width(); parentwindow.find("iframe").attr({"height":app_holder_height,"width":app_holder_width}); parentwindow.find(".app_holder").height(app_holder_height); parentwindow.find(".icon-remove").click(function(){ - parentwindow.remove(); + o.appWindow.close(parentwindow); + }); + parentwindow.find(".icon-minus").click(function(){ + o.appWindow.minimize(parentwindow); }) + } + + this.appWindow.close = function(win){ + win.remove(); + } + + this.appWindow.minimize = function(win){ + o.minimizeBarManager.minimize(win) + } + if(typeof callbackfn=="function"){ - callbackfn.call(this); + callbackfn.call(this,parentwindow); } + return parentwindow; }; this.toolPopup = function(settings){ if(settings == "destroy"){ diff --git a/app/assets/Archive/stylesheets/desktop/desktop-main.css b/app/assets/Archive/stylesheets/desktop/desktop-main.css index 41114a0f..bc240f27 100644 --- a/app/assets/Archive/stylesheets/desktop/desktop-main.css +++ b/app/assets/Archive/stylesheets/desktop/desktop-main.css @@ -772,6 +772,12 @@ a.admtxt.admbg2:hover { line-height: 60px; font-size: 20px; cursor: pointer; } + .app_frame .app_frame_header .icon-minus { + display: block; + float: right; + line-height: 60px; + font-size: 20px; + cursor: pointer; } /*Tooltip popup */ .desktop_toolpopup { diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/apps.png b/app/assets/images/desktop/icons/apps.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/apps.png rename to app/assets/images/desktop/icons/apps.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_activities.png b/app/assets/images/desktop/icons/d_activities.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_activities.png rename to app/assets/images/desktop/icons/d_activities.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_album.png b/app/assets/images/desktop/icons/d_album.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_album.png rename to app/assets/images/desktop/icons/d_album.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_app_manager.png b/app/assets/images/desktop/icons/d_app_manager.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_app_manager.png rename to app/assets/images/desktop/icons/d_app_manager.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_appstore.png b/app/assets/images/desktop/icons/d_appstore.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_appstore.png rename to app/assets/images/desktop/icons/d_appstore.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_blog.png b/app/assets/images/desktop/icons/d_blog.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_blog.png rename to app/assets/images/desktop/icons/d_blog.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_books.png b/app/assets/images/desktop/icons/d_books.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_books.png rename to app/assets/images/desktop/icons/d_books.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_calendar.png b/app/assets/images/desktop/icons/d_calendar.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_calendar.png rename to app/assets/images/desktop/icons/d_calendar.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_certification.png b/app/assets/images/desktop/icons/d_certification.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_certification.png rename to app/assets/images/desktop/icons/d_certification.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_clubs.png b/app/assets/images/desktop/icons/d_clubs.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_clubs.png rename to app/assets/images/desktop/icons/d_clubs.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_conference_p.png b/app/assets/images/desktop/icons/d_conference_p.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_conference_p.png rename to app/assets/images/desktop/icons/d_conference_p.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_connection.png b/app/assets/images/desktop/icons/d_connection.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_connection.png rename to app/assets/images/desktop/icons/d_connection.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_courses.png b/app/assets/images/desktop/icons/d_courses.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_courses.png rename to app/assets/images/desktop/icons/d_courses.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_education.png b/app/assets/images/desktop/icons/d_education.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_education.png rename to app/assets/images/desktop/icons/d_education.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_experience.png b/app/assets/images/desktop/icons/d_experience.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_experience.png rename to app/assets/images/desktop/icons/d_experience.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_files.png b/app/assets/images/desktop/icons/d_files.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_files.png rename to app/assets/images/desktop/icons/d_files.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_home.png b/app/assets/images/desktop/icons/d_home.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_home.png rename to app/assets/images/desktop/icons/d_home.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_homework.png b/app/assets/images/desktop/icons/d_homework.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_homework.png rename to app/assets/images/desktop/icons/d_homework.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_honors.png b/app/assets/images/desktop/icons/d_honors.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_honors.png rename to app/assets/images/desktop/icons/d_honors.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_journal_p.png b/app/assets/images/desktop/icons/d_journal_p.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_journal_p.png rename to app/assets/images/desktop/icons/d_journal_p.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_labs.png b/app/assets/images/desktop/icons/d_labs.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_labs.png rename to app/assets/images/desktop/icons/d_labs.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_landt.png b/app/assets/images/desktop/icons/d_landt.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_landt.png rename to app/assets/images/desktop/icons/d_landt.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_mypage.png b/app/assets/images/desktop/icons/d_mypage.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_mypage.png rename to app/assets/images/desktop/icons/d_mypage.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_orbit.png b/app/assets/images/desktop/icons/d_orbit.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_orbit.png rename to app/assets/images/desktop/icons/d_orbit.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_patents.png b/app/assets/images/desktop/icons/d_patents.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_patents.png rename to app/assets/images/desktop/icons/d_patents.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_personal.png b/app/assets/images/desktop/icons/d_personal.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_personal.png rename to app/assets/images/desktop/icons/d_personal.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_publication.png b/app/assets/images/desktop/icons/d_publication.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_publication.png rename to app/assets/images/desktop/icons/d_publication.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_research.png b/app/assets/images/desktop/icons/d_research.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_research.png rename to app/assets/images/desktop/icons/d_research.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_research_d.png b/app/assets/images/desktop/icons/d_research_d.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_research_d.png rename to app/assets/images/desktop/icons/d_research_d.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_research_p.png b/app/assets/images/desktop/icons/d_research_p.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_research_p.png rename to app/assets/images/desktop/icons/d_research_p.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_sections.png b/app/assets/images/desktop/icons/d_sections.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_sections.png rename to app/assets/images/desktop/icons/d_sections.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_settings.png b/app/assets/images/desktop/icons/d_settings.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_settings.png rename to app/assets/images/desktop/icons/d_settings.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_working.png b/app/assets/images/desktop/icons/d_working.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/d_working.png rename to app/assets/images/desktop/icons/d_working.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/home.png b/app/assets/images/desktop/icons/home.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/home.png rename to app/assets/images/desktop/icons/home.png diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/sections.png b/app/assets/images/desktop/icons/sections.png similarity index 100% rename from public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/sections.png rename to app/assets/images/desktop/icons/sections.png diff --git a/app/controllers/desktop_controller.rb b/app/controllers/desktop_controller.rb index 990c0522..b21db61a 100644 --- a/app/controllers/desktop_controller.rb +++ b/app/controllers/desktop_controller.rb @@ -31,7 +31,7 @@ class DesktopController< ApplicationController render :layout => false end - def themes + def get_themes @themes = DesktopTheme.all # raise @themes.inspect render "desktop/settings/themes", :layout => false diff --git a/app/controllers/desktop_themes_controller.rb b/app/controllers/desktop_themes_controller.rb new file mode 100644 index 00000000..1cfa2705 --- /dev/null +++ b/app/controllers/desktop_themes_controller.rb @@ -0,0 +1,86 @@ +class DesktopThemesController < OrbitBackendController + require "net/http" + require "uri" + require 'zip/zip' + + def index + @desktopThemes = DesktopTheme.all + end + + def destroy + dt = DesktopTheme.find(params[:id]) + dt.destroy + redirect_to desktop_theme_path + end + + def upload + if !params[:desktop_theme].nil? + temp_file = Tempfile.new("temp_file") + original_file = params[:desktop_theme][:package_file] + #if original_file.content_type == 'application/zip' + temp_file.write(original_file.read.force_encoding('UTF-8')) + temp_file.rewind + filename = File.basename(original_file.original_filename,".zip") + unzip_widget(temp_file, filename) + #else + # flash[:error] = "Upload file should be in zip format" + #end + temp_file.close + end + end + def edit + @dw = DesktopWidget.find(params[:id]) + end + + + def unzip_widget(file, zip_name) + Zip::ZipFile.open(file) { |zip_file| + dt = DesktopTheme.new.from_json(zip_file.read("#{zip_name}/settings.json")) + Dir.mktmpdir('f_path') { |dir| + images_entries = [] + zip_file.entries.each do |entry| + case (path = entry.to_s) + when /\A(#{zip_name})\/(theme\.css)\z/ + #for default css + dt.build_css_default(:file => get_temp_file(zip_file, dir, entry)) + when /\A(#{zip_name})\/(background)\/.*((\.jpg)|(\.png)|(\.gif))\z/ #for img + images_entries << entry + end + end + images_entries.each do |image| + dt.images.build(:file => get_temp_file(zip_file,dir,image)) + end + } + dt.save + } + end + def get_temp_file(zip_file, dir, entry) + filename = File.basename(entry.to_s) + temp_file = File.new(dir + '/' + filename, 'w+') + temp_file.write (zip_file.read entry ).force_encoding('UTF-8') + temp_file + end + + def settings + if params[:id] == "custom" + @id = DesktopTheme.first.id.to_s + else + @id = params[:id] + end + dt = DesktopTheme.find(@id) + if !dt.nil? + dt['css'] = dt.css_default.file.url + dt['background'] = dt.images.where(:name=>dt.background).first.file.url + end + icons = DesktopTheme::ICONS + dt['icons'] = icons + + render :json => dt.to_json + end + +end + + + + + diff --git a/app/models/desktop/desktop.rb b/app/models/desktop/desktop.rb index 6633005f..123da2f0 100644 --- a/app/models/desktop/desktop.rb +++ b/app/models/desktop/desktop.rb @@ -2,7 +2,7 @@ class Desktop include Mongoid::Document include Mongoid::Timestamps - field :theme, default: "4f8d3f533b67fcd05f08635a" + field :theme field :customtheme field :wallpaper diff --git a/app/models/desktop/desktop_theme.rb b/app/models/desktop/desktop_theme.rb index 76886103..b1061a03 100644 --- a/app/models/desktop/desktop_theme.rb +++ b/app/models/desktop/desktop_theme.rb @@ -1,9 +1,63 @@ class DesktopTheme include Mongoid::Document include Mongoid::Timestamps + + field :name + field :author + field :background + field :tilecolor ,type: Array, default: ["thmc1","thmc2"] + ICONS = { + "home"=>"d_home.png", + "app_manager"=>"d_app_manager.png", + "sections"=>"d_sections.png", + "settings"=>"d_settings.png", + "publication"=>"d_publication.png", + "journal_p"=>"d_journal_p.png", + "conference_p"=>"d_conference_p.png", + "books"=>"d_books.png", + "research"=>"d_research.png", + "research_d"=>"d_research_d.png", + "research_p"=>"d_research_p.png", + "patents"=>"d_patents.png", + "labs"=>"d_labs.png", + "experience"=>"d_experience.png", + "working"=>"d_working.png", + "education"=>"d_education.png", + "honors"=>"d_honors.png", + "activities"=>"d_activities.png", + "clubs"=>"d_clubs.png", + "landt"=>"d_landt.png", + "courses"=>"d_courses.png", + "homework"=>"d_homework.png", + "certification"=>"d_certification.png", + "personal"=>"d_personal.png", + "mypage"=>"d_mypage.png", + "blog"=>"d_blog.png", + "album"=>"d_album.png", + "calendar"=>"d_calendar.png", + "files"=>"d_files.png", + "orbit"=>"d_orbit.png", + "connection"=>"d_connection.png", + "appstore"=>"d_appstore.png" + } + + has_one :css_default, as: :css, :autosave => true, :dependent => :destroy + has_many :images, as: :imgs, :autosave => true, :dependent => :destroy + has_and_belongs_to_many :desktops, :autosave => true + + accepts_nested_attributes_for :images, :allow_destroy => true + + # after_save :parse_css_for_images + + # belongs_to :desktop + + + # protected - field :name - field :author + # def parse_css_for_images + # self.css_default.parse_urls + # end + end diff --git a/app/views/desktop/index.html.erb b/app/views/desktop/index.html.erb index 34938499..d1800b30 100644 --- a/app/views/desktop/index.html.erb +++ b/app/views/desktop/index.html.erb @@ -2,7 +2,7 @@
-
- +
diff --git a/app/views/desktop/settings.html.erb b/app/views/desktop/settings.html.erb index 7ad35dfb..e087072f 100644 --- a/app/views/desktop/settings.html.erb +++ b/app/views/desktop/settings.html.erb @@ -9,10 +9,10 @@
diff --git a/app/views/desktop/settings/themes.html.erb b/app/views/desktop/settings/themes.html.erb index 62a4a04b..18fdd9ac 100644 --- a/app/views/desktop/settings/themes.html.erb +++ b/app/views/desktop/settings/themes.html.erb @@ -1,16 +1,16 @@
-
+
<% @themes.each do |theme| %> -
<%= theme.name %>
+
<%= theme.name %>
<% end %>
diff --git a/app/views/desktop_themes/edit.html.erb b/app/views/desktop_themes/edit.html.erb new file mode 100644 index 00000000..396ccff0 --- /dev/null +++ b/app/views/desktop_themes/edit.html.erb @@ -0,0 +1,16 @@ +
+ <%= @dw.name %> + +

Upload Widget image

+
+ <%= form_for @dw, :url => desktop_widget_path(@dw) do |f| %> + +

+ <%= f.file_field :image %> +

+ <%= submit_tag %> + + <% end %> + +
+
\ No newline at end of file diff --git a/app/views/desktop_themes/index.html.erb b/app/views/desktop_themes/index.html.erb new file mode 100644 index 00000000..fdc106e2 --- /dev/null +++ b/app/views/desktop_themes/index.html.erb @@ -0,0 +1,9 @@ +
+
    + <% @desktopThemes.each do |dw| %> +
  • <%= dw.name %> + <%= link_to "Delete", desktop_theme_path(dw), :method=>"delete", :confirm=>"Are you sure?" %> +
  • + <% end %> +
+
\ No newline at end of file diff --git a/app/views/desktop_themes/upload.html.erb b/app/views/desktop_themes/upload.html.erb new file mode 100644 index 00000000..d54ac1c6 --- /dev/null +++ b/app/views/desktop_themes/upload.html.erb @@ -0,0 +1,12 @@ +

Upload Theme Package

+
+ <%= form_tag '',:multipart => true,:action=>"post" do |f| %> + +

+ <%= file_field :desktop_theme,:package_file %> +

+ <%= submit_tag %> + + <% end %> + +
\ No newline at end of file diff --git a/config/routes.rb b/config/routes.rb index 30372248..f886b084 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -228,6 +228,16 @@ Orbit::Application.routes.draw do get 'delete' post 'upload' end + end + match "desktop_themes/settings" => "desktop_themes#settings" + resources :desktop_themes do + + collection do + get 'upload' + get 'delete' + post 'upload' + end + end resources :desktop_apps do @@ -249,7 +259,7 @@ Orbit::Application.routes.draw do match '/desktop/save_desktop_settings/'=>'desktop#save_desktop_settings' match '/desktop/getgroups/'=>'desktop#getgroups' match '/desktop/getsectionlist/'=>'desktop#getsectionlist' - match '/desktop/themes/'=>'desktop#themes' + match '/desktop/get_themes/'=>'desktop#get_themes' match '/desktop/sections/'=>'desktop#sections' match '/desktop/getapplist/'=>'desktop#getapplist' match '/desktop/getapplistforManager/'=>'desktop#getapplistforManager' @@ -291,6 +301,7 @@ Orbit::Application.routes.draw do match "/facebook/register_fb" => "facebook#register_fb" match "/facebook/get_friends" => "facebook#get_friends" + #match '/desktop_orbit/eventajaxload' => 'desktop_publications#create_journal' diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/css/default.css b/public/desktop_themes/4f8d3f3c3b67fcd05f086358/css/default.css deleted file mode 100755 index 9e01a140..00000000 --- a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/css/default.css +++ /dev/null @@ -1,45 +0,0 @@ -/* -Theme Color - -random apply to: -.widget_fn - on hover status -#search_app .submit -.tile - -*/ -.thmc1 { background: #6F0; } -.thmc2 { background: #C09; } - -/* -sub1 Theme Color - -apply to: -#search_app - -*/ -.thmc3 { background: #FFFFFF; } - -/* -sub1 Theme Color - -apply to: -#rwidget - -*/ -.thmc4 { background: #000000; } - - -/* Theme Text Color */ -.thmtxt { color: #fff; } -.thmtxth { color: #000; } - -/* Group Seprate Color */ -.g_sep { border-color: #fff; } - -/* -theme bg image - -#thmbackground img - background -#bgover - upon #thmbackground - -*/ \ No newline at end of file diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/background.jpg b/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/background.jpg deleted file mode 100755 index f45c73a7..00000000 Binary files a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/background.jpg and /dev/null differ diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/chris.jpeg b/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/chris.jpeg deleted file mode 100644 index e0c669d4..00000000 Binary files a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/images/chris.jpeg and /dev/null differ diff --git a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/settings/4f8d3f3c3b67fcd05f086358.json b/public/desktop_themes/4f8d3f3c3b67fcd05f086358/settings/4f8d3f3c3b67fcd05f086358.json deleted file mode 100755 index 2be2bcb8..00000000 --- a/public/desktop_themes/4f8d3f3c3b67fcd05f086358/settings/4f8d3f3c3b67fcd05f086358.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "css":"default.css", - "background":"background.jpg", - "tilecolor":["thmc1","thmc2"], - "icons":{ - "home":"d_home.png", - "app_manager":"d_app_manager.png", - "sections":"d_sections.png", - "settings":"d_settings.png", - "publication":"d_publication.png", - "journal_p":"d_journal_p.png", - "conference_p":"d_conference_p.png", - "books":"d_books.png", - "research":"d_research.png", - "research_d":"d_research_d.png", - "research_p":"d_research_p.png", - "patents":"d_patents.png", - "labs":"d_labs.png", - "experience":"d_experience.png", - "working":"d_working.png", - "education":"d_education.png", - "honors":"d_honors.png", - "activities":"d_activities.png", - "clubs":"d_clubs.png", - "landt":"d_landt.png", - "courses":"d_courses.png", - "homework":"d_homework.png", - "certification":"d_certification.png", - "personal":"d_personal.png", - "mypage":"d_mypage.png", - "blog":"d_blog.png", - "album":"d_album.png", - "calendar":"d_calendar.png", - "files":"d_files.png", - "orbit":"d_orbit.png", - "connection":"d_connection.png", - "appstore":"d_appstore.png" - } - } diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/css/default.css b/public/desktop_themes/4f8d3f493b67fcd05f086359/css/default.css deleted file mode 100755 index cfbd430d..00000000 --- a/public/desktop_themes/4f8d3f493b67fcd05f086359/css/default.css +++ /dev/null @@ -1,45 +0,0 @@ -/* -Theme Color - -random apply to: -.widget_fn - on hover status -#search_app .submit -.tile - -*/ -.thmc1 { background: #0099CC; } -.thmc2 { background: #3366CC; } - -/* -sub1 Theme Color - -apply to: -#search_app - -*/ -.thmc3 { background: #FFFFFF; } - -/* -sub1 Theme Color - -apply to: -#rwidget - -*/ -.thmc4 { background: #000000; } - - -/* Theme Text Color */ -.thmtxt, .thmtxt:hover { color: #fff; } -.thmtxth { color: #fff; } - -/* Group Seprate Color */ -.g_sep { border-color: #fff; } - -/* -theme bg image - -#thmbackground img - background -#bgover - upon #thmbackground - -*/ \ No newline at end of file diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/background.jpg b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/background.jpg deleted file mode 100755 index f45c73a7..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/background.jpg and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_activities.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_activities.png deleted file mode 100644 index b481e676..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_activities.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_album.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_album.png deleted file mode 100644 index 6f0e4a17..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_album.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_app_manager.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_app_manager.png deleted file mode 100644 index da09e5a4..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_app_manager.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_appstore.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_appstore.png deleted file mode 100644 index e82e745d..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_appstore.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_blog.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_blog.png deleted file mode 100644 index 0bb55251..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_blog.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_books.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_books.png deleted file mode 100644 index 49ec0fba..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_books.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_calendar.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_calendar.png deleted file mode 100644 index 26520f73..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_calendar.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_certification.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_certification.png deleted file mode 100644 index a695edce..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_certification.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_clubs.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_clubs.png deleted file mode 100644 index f22aa6dd..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_clubs.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_conference_p.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_conference_p.png deleted file mode 100644 index 36cfb59a..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_conference_p.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_connection.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_connection.png deleted file mode 100644 index ac6978eb..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_connection.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_courses.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_courses.png deleted file mode 100644 index 3d521ddf..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_courses.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_education.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_education.png deleted file mode 100755 index fa366a17..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_education.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_experience.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_experience.png deleted file mode 100644 index f182981b..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_experience.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_files.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_files.png deleted file mode 100644 index 99299d80..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_files.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_home.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_home.png deleted file mode 100644 index 67f4a227..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_home.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_homework.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_homework.png deleted file mode 100644 index 28f1b266..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_homework.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_honors.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_honors.png deleted file mode 100755 index 778cfa84..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_honors.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_journal_p.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_journal_p.png deleted file mode 100644 index 5f0e2757..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_journal_p.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_labs.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_labs.png deleted file mode 100644 index fcb929e6..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_labs.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_landt.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_landt.png deleted file mode 100644 index c003ec8d..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_landt.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_mypage.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_mypage.png deleted file mode 100644 index 9d466a95..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_mypage.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_orbit.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_orbit.png deleted file mode 100755 index e5852979..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_orbit.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_patents.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_patents.png deleted file mode 100644 index 5b08a529..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_patents.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_personal.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_personal.png deleted file mode 100644 index a0a2140b..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_personal.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_publication.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_publication.png deleted file mode 100644 index a3220b86..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_publication.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_research.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_research.png deleted file mode 100644 index 691ebe25..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_research.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_research_d.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_research_d.png deleted file mode 100644 index 4301e573..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_research_d.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_research_p.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_research_p.png deleted file mode 100644 index d3ba06cd..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_research_p.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_sections.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_sections.png deleted file mode 100644 index 6832e3d0..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_sections.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_settings.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_settings.png deleted file mode 100644 index 0ca9b18d..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_settings.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_working.png b/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_working.png deleted file mode 100644 index 9bc38981..00000000 Binary files a/public/desktop_themes/4f8d3f493b67fcd05f086359/images/d_working.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f493b67fcd05f086359/settings/4f8d3f493b67fcd05f086359.json b/public/desktop_themes/4f8d3f493b67fcd05f086359/settings/4f8d3f493b67fcd05f086359.json deleted file mode 100755 index 2be2bcb8..00000000 --- a/public/desktop_themes/4f8d3f493b67fcd05f086359/settings/4f8d3f493b67fcd05f086359.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "css":"default.css", - "background":"background.jpg", - "tilecolor":["thmc1","thmc2"], - "icons":{ - "home":"d_home.png", - "app_manager":"d_app_manager.png", - "sections":"d_sections.png", - "settings":"d_settings.png", - "publication":"d_publication.png", - "journal_p":"d_journal_p.png", - "conference_p":"d_conference_p.png", - "books":"d_books.png", - "research":"d_research.png", - "research_d":"d_research_d.png", - "research_p":"d_research_p.png", - "patents":"d_patents.png", - "labs":"d_labs.png", - "experience":"d_experience.png", - "working":"d_working.png", - "education":"d_education.png", - "honors":"d_honors.png", - "activities":"d_activities.png", - "clubs":"d_clubs.png", - "landt":"d_landt.png", - "courses":"d_courses.png", - "homework":"d_homework.png", - "certification":"d_certification.png", - "personal":"d_personal.png", - "mypage":"d_mypage.png", - "blog":"d_blog.png", - "album":"d_album.png", - "calendar":"d_calendar.png", - "files":"d_files.png", - "orbit":"d_orbit.png", - "connection":"d_connection.png", - "appstore":"d_appstore.png" - } - } diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/css/natural.css b/public/desktop_themes/4f8d3f533b67fcd05f08635a/css/natural.css deleted file mode 100755 index 1a1d5766..00000000 --- a/public/desktop_themes/4f8d3f533b67fcd05f08635a/css/natural.css +++ /dev/null @@ -1,46 +0,0 @@ -/* -Theme Color - -random apply to: -.widget_fn - on hover status -#search_app .submit -.tile - -*/ -.thmc1 { background: #B6662C; } -.thmc2 { background: #34520C; } - -/* -sub1 Theme Color - -apply to: -#search_app - -*/ -.thmc3 { background: #FFFFFF; } - -/* -sub1 Theme Color - -apply to: -#rwidget - -first one -*/ -.thmc4 { background: #5CA360; } - - -/* Theme Text Color */ -.thmtxt, .thmtxt:hover { color: #fff; } -.thmtxth { color: #fff; } - -/* Group Seprate Color */ -.g_sep { border-color: #fff; } - -/* -theme bg image - -#thmbackground img - background -#bgover - upon #thmbackground - -*/ \ No newline at end of file diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/background.jpg b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/background.jpg deleted file mode 100755 index 520df56c..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/background.jpg and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_activities.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_activities.png deleted file mode 100755 index b481e676..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_activities.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_album.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_album.png deleted file mode 100755 index 6f0e4a17..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_album.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_app_manager.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_app_manager.png deleted file mode 100755 index da09e5a4..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_app_manager.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_appstore.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_appstore.png deleted file mode 100755 index e82e745d..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_appstore.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_blog.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_blog.png deleted file mode 100755 index 0bb55251..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_blog.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_books.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_books.png deleted file mode 100755 index 49ec0fba..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_books.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_calendar.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_calendar.png deleted file mode 100755 index 26520f73..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_calendar.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_certification.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_certification.png deleted file mode 100755 index a695edce..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_certification.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_clubs.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_clubs.png deleted file mode 100755 index f22aa6dd..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_clubs.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_conference_p.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_conference_p.png deleted file mode 100755 index 36cfb59a..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_conference_p.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_connection.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_connection.png deleted file mode 100755 index ac6978eb..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_connection.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_courses.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_courses.png deleted file mode 100755 index 3d521ddf..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_courses.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_education.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_education.png deleted file mode 100755 index fa366a17..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_education.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_experience.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_experience.png deleted file mode 100755 index f182981b..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_experience.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_files.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_files.png deleted file mode 100755 index 99299d80..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_files.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_home.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_home.png deleted file mode 100755 index 67f4a227..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_home.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_homework.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_homework.png deleted file mode 100755 index 28f1b266..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_homework.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_honors.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_honors.png deleted file mode 100755 index 778cfa84..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_honors.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_journal_p.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_journal_p.png deleted file mode 100755 index 5f0e2757..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_journal_p.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_labs.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_labs.png deleted file mode 100755 index fcb929e6..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_labs.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_landt.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_landt.png deleted file mode 100755 index c003ec8d..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_landt.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_mypage.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_mypage.png deleted file mode 100755 index 9d466a95..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_mypage.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_orbit.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_orbit.png deleted file mode 100755 index e5852979..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_orbit.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_patents.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_patents.png deleted file mode 100755 index 5b08a529..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_patents.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_personal.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_personal.png deleted file mode 100755 index a0a2140b..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_personal.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_publication.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_publication.png deleted file mode 100755 index a3220b86..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_publication.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_research.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_research.png deleted file mode 100755 index 691ebe25..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_research.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_research_d.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_research_d.png deleted file mode 100755 index 4301e573..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_research_d.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_research_p.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_research_p.png deleted file mode 100755 index d3ba06cd..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_research_p.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_sections.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_sections.png deleted file mode 100755 index 6832e3d0..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_sections.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_settings.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_settings.png deleted file mode 100755 index 0ca9b18d..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_settings.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_working.png b/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_working.png deleted file mode 100755 index 9bc38981..00000000 Binary files a/public/desktop_themes/4f8d3f533b67fcd05f08635a/images/d_working.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f533b67fcd05f08635a/settings/4f8d3f533b67fcd05f08635a.json b/public/desktop_themes/4f8d3f533b67fcd05f08635a/settings/4f8d3f533b67fcd05f08635a.json deleted file mode 100755 index b4e70f7a..00000000 --- a/public/desktop_themes/4f8d3f533b67fcd05f08635a/settings/4f8d3f533b67fcd05f08635a.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "css":"natural.css", - "background":"background.jpg", - "tilecolor":["thmc1","thmc2"], - "icons":{ - "home":"d_home.png", - "app_manager":"d_app_manager.png", - "sections":"d_sections.png", - "settings":"d_settings.png", - "publication":"d_publication.png", - "journal_p":"d_journal_p.png", - "conference_p":"d_conference_p.png", - "books":"d_books.png", - "research":"d_research.png", - "research_d":"d_research_d.png", - "research_p":"d_research_p.png", - "patents":"d_patents.png", - "labs":"d_labs.png", - "experience":"d_experience.png", - "working":"d_working.png", - "education":"d_education.png", - "honors":"d_honors.png", - "activities":"d_activities.png", - "clubs":"d_clubs.png", - "landt":"d_landt.png", - "courses":"d_courses.png", - "homework":"d_homework.png", - "certification":"d_certification.png", - "personal":"d_personal.png", - "mypage":"d_mypage.png", - "blog":"d_blog.png", - "album":"d_album.png", - "calendar":"d_calendar.png", - "files":"d_files.png", - "orbit":"d_orbit.png", - "connection":"d_connection.png", - "appstore":"d_appstore.png" - } - } diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/css/default.css b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/css/default.css deleted file mode 100755 index 535227b0..00000000 --- a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/css/default.css +++ /dev/null @@ -1,45 +0,0 @@ -/* -Theme Color - -random apply to: -.widget_fn - on hover status -#search_app .submit -.tile - -*/ -.thmc1 { background: #F0F; } -.thmc2 { background: #FF0; } - -/* -sub1 Theme Color - -apply to: -#search_app - -*/ -.thmc3 { background: #000000; } - -/* -sub1 Theme Color - -apply to: -#rwidget - -*/ -.thmc4 { background: #C6F; } - - -/* Theme Text Color */ -.thmtxt { color: #000; } -.thmtxth { color: #F00; } - -/* Group Seprate Color */ -.g_sep { border-color: #fff; } - -/* -theme bg image - -#thmbackground img - background -#bgover - upon #thmbackground - -*/ \ No newline at end of file diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/apps.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/apps.png deleted file mode 100644 index 67b69c89..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/apps.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/background.jpg b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/background.jpg deleted file mode 100644 index 2df405f5..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/background.jpg and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_activities.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_activities.png deleted file mode 100644 index b481e676..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_activities.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_album.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_album.png deleted file mode 100644 index 6f0e4a17..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_album.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_app_manager.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_app_manager.png deleted file mode 100644 index da09e5a4..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_app_manager.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_appstore.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_appstore.png deleted file mode 100644 index e82e745d..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_appstore.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_blog.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_blog.png deleted file mode 100644 index 0bb55251..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_blog.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_books.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_books.png deleted file mode 100644 index 49ec0fba..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_books.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_calendar.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_calendar.png deleted file mode 100644 index 26520f73..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_calendar.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_certification.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_certification.png deleted file mode 100644 index a695edce..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_certification.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_clubs.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_clubs.png deleted file mode 100644 index f22aa6dd..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_clubs.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_conference_p.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_conference_p.png deleted file mode 100644 index 36cfb59a..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_conference_p.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_connection.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_connection.png deleted file mode 100644 index ac6978eb..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_connection.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_courses.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_courses.png deleted file mode 100644 index 3d521ddf..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_courses.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_education.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_education.png deleted file mode 100755 index fa366a17..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_education.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_experience.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_experience.png deleted file mode 100644 index f182981b..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_experience.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_files.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_files.png deleted file mode 100644 index 99299d80..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_files.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_home.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_home.png deleted file mode 100644 index 67f4a227..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_home.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_homework.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_homework.png deleted file mode 100644 index 28f1b266..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_homework.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_honors.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_honors.png deleted file mode 100755 index 778cfa84..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_honors.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_journal_p.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_journal_p.png deleted file mode 100644 index 5f0e2757..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_journal_p.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_labs.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_labs.png deleted file mode 100644 index fcb929e6..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_labs.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_landt.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_landt.png deleted file mode 100644 index c003ec8d..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_landt.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_mypage.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_mypage.png deleted file mode 100644 index 9d466a95..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_mypage.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_orbit.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_orbit.png deleted file mode 100755 index e5852979..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_orbit.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_patents.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_patents.png deleted file mode 100644 index 5b08a529..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_patents.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_personal.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_personal.png deleted file mode 100644 index a0a2140b..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_personal.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_publication.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_publication.png deleted file mode 100644 index a3220b86..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_publication.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_research.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_research.png deleted file mode 100644 index 691ebe25..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_research.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_research_d.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_research_d.png deleted file mode 100644 index 4301e573..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_research_d.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_research_p.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_research_p.png deleted file mode 100644 index d3ba06cd..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_research_p.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_sections.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_sections.png deleted file mode 100644 index 6832e3d0..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_sections.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_settings.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_settings.png deleted file mode 100644 index 0ca9b18d..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_settings.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_working.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_working.png deleted file mode 100644 index 9bc38981..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/d_working.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/home.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/home.png deleted file mode 100644 index 56efebb5..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/home.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/sections.png b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/sections.png deleted file mode 100644 index 7b6a039f..00000000 Binary files a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/images/sections.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/settings/4f8d3f5d3b67fcd05f08635b.json b/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/settings/4f8d3f5d3b67fcd05f08635b.json deleted file mode 100755 index 2be2bcb8..00000000 --- a/public/desktop_themes/4f8d3f5d3b67fcd05f08635b/settings/4f8d3f5d3b67fcd05f08635b.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "css":"default.css", - "background":"background.jpg", - "tilecolor":["thmc1","thmc2"], - "icons":{ - "home":"d_home.png", - "app_manager":"d_app_manager.png", - "sections":"d_sections.png", - "settings":"d_settings.png", - "publication":"d_publication.png", - "journal_p":"d_journal_p.png", - "conference_p":"d_conference_p.png", - "books":"d_books.png", - "research":"d_research.png", - "research_d":"d_research_d.png", - "research_p":"d_research_p.png", - "patents":"d_patents.png", - "labs":"d_labs.png", - "experience":"d_experience.png", - "working":"d_working.png", - "education":"d_education.png", - "honors":"d_honors.png", - "activities":"d_activities.png", - "clubs":"d_clubs.png", - "landt":"d_landt.png", - "courses":"d_courses.png", - "homework":"d_homework.png", - "certification":"d_certification.png", - "personal":"d_personal.png", - "mypage":"d_mypage.png", - "blog":"d_blog.png", - "album":"d_album.png", - "calendar":"d_calendar.png", - "files":"d_files.png", - "orbit":"d_orbit.png", - "connection":"d_connection.png", - "appstore":"d_appstore.png" - } - } diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/css/default.css b/public/desktop_themes/4f8d3f673b67fcd05f08635c/css/default.css deleted file mode 100755 index 05b25eb1..00000000 --- a/public/desktop_themes/4f8d3f673b67fcd05f08635c/css/default.css +++ /dev/null @@ -1,45 +0,0 @@ -/* -Theme Color - -random apply to: -.widget_fn - on hover status -#search_app .submit -.tile - -*/ -.thmc1 { background: #CC9; } -.thmc2 { background: #CC0; } - -/* -sub1 Theme Color - -apply to: -#search_app - -*/ -.thmc3 { background: #FFFFFF; } - -/* -sub1 Theme Color - -apply to: -#rwidget - -*/ -.thmc4 { background: #000000; } - - -/* Theme Text Color */ -.thmtxt { color: #000; } -.thmtxth { color: #fff; } - -/* Group Seprate Color */ -.g_sep { border-color: #fff; } - -/* -theme bg image - -#thmbackground img - background -#bgover - upon #thmbackground - -*/ \ No newline at end of file diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/apps.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/apps.png deleted file mode 100644 index 67b69c89..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/apps.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/background.jpg b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/background.jpg deleted file mode 100644 index 5eb4d999..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/background.jpg and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_activities.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_activities.png deleted file mode 100644 index b481e676..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_activities.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_album.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_album.png deleted file mode 100644 index 6f0e4a17..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_album.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_app_manager.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_app_manager.png deleted file mode 100644 index da09e5a4..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_app_manager.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_appstore.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_appstore.png deleted file mode 100644 index e82e745d..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_appstore.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_blog.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_blog.png deleted file mode 100644 index 0bb55251..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_blog.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_books.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_books.png deleted file mode 100644 index 49ec0fba..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_books.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_calendar.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_calendar.png deleted file mode 100644 index 26520f73..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_calendar.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_certification.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_certification.png deleted file mode 100644 index a695edce..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_certification.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_clubs.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_clubs.png deleted file mode 100644 index f22aa6dd..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_clubs.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_conference_p.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_conference_p.png deleted file mode 100644 index 36cfb59a..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_conference_p.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_connection.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_connection.png deleted file mode 100644 index ac6978eb..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_connection.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_courses.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_courses.png deleted file mode 100644 index 3d521ddf..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_courses.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_education.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_education.png deleted file mode 100755 index fa366a17..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_education.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_experience.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_experience.png deleted file mode 100644 index f182981b..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_experience.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_files.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_files.png deleted file mode 100644 index 99299d80..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_files.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_home.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_home.png deleted file mode 100644 index 67f4a227..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_home.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_homework.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_homework.png deleted file mode 100644 index 28f1b266..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_homework.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_honors.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_honors.png deleted file mode 100755 index 778cfa84..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_honors.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_journal_p.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_journal_p.png deleted file mode 100644 index 5f0e2757..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_journal_p.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_labs.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_labs.png deleted file mode 100644 index fcb929e6..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_labs.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_landt.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_landt.png deleted file mode 100644 index c003ec8d..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_landt.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_mypage.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_mypage.png deleted file mode 100644 index 9d466a95..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_mypage.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_orbit.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_orbit.png deleted file mode 100755 index e5852979..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_orbit.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_patents.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_patents.png deleted file mode 100644 index 5b08a529..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_patents.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_personal.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_personal.png deleted file mode 100644 index a0a2140b..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_personal.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_publication.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_publication.png deleted file mode 100644 index a3220b86..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_publication.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_research.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_research.png deleted file mode 100644 index 691ebe25..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_research.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_research_d.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_research_d.png deleted file mode 100644 index 4301e573..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_research_d.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_research_p.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_research_p.png deleted file mode 100644 index d3ba06cd..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_research_p.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_sections.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_sections.png deleted file mode 100644 index 6832e3d0..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_sections.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_settings.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_settings.png deleted file mode 100644 index 0ca9b18d..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_settings.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_working.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_working.png deleted file mode 100644 index 9bc38981..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/d_working.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/home.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/home.png deleted file mode 100644 index 56efebb5..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/home.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/sections.png b/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/sections.png deleted file mode 100644 index 7b6a039f..00000000 Binary files a/public/desktop_themes/4f8d3f673b67fcd05f08635c/images/sections.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f673b67fcd05f08635c/settings/4f8d3f673b67fcd05f08635c.json b/public/desktop_themes/4f8d3f673b67fcd05f08635c/settings/4f8d3f673b67fcd05f08635c.json deleted file mode 100755 index 2be2bcb8..00000000 --- a/public/desktop_themes/4f8d3f673b67fcd05f08635c/settings/4f8d3f673b67fcd05f08635c.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "css":"default.css", - "background":"background.jpg", - "tilecolor":["thmc1","thmc2"], - "icons":{ - "home":"d_home.png", - "app_manager":"d_app_manager.png", - "sections":"d_sections.png", - "settings":"d_settings.png", - "publication":"d_publication.png", - "journal_p":"d_journal_p.png", - "conference_p":"d_conference_p.png", - "books":"d_books.png", - "research":"d_research.png", - "research_d":"d_research_d.png", - "research_p":"d_research_p.png", - "patents":"d_patents.png", - "labs":"d_labs.png", - "experience":"d_experience.png", - "working":"d_working.png", - "education":"d_education.png", - "honors":"d_honors.png", - "activities":"d_activities.png", - "clubs":"d_clubs.png", - "landt":"d_landt.png", - "courses":"d_courses.png", - "homework":"d_homework.png", - "certification":"d_certification.png", - "personal":"d_personal.png", - "mypage":"d_mypage.png", - "blog":"d_blog.png", - "album":"d_album.png", - "calendar":"d_calendar.png", - "files":"d_files.png", - "orbit":"d_orbit.png", - "connection":"d_connection.png", - "appstore":"d_appstore.png" - } - } diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/css/default.css b/public/desktop_themes/4f8d3f783b67fcd05f08635d/css/default.css deleted file mode 100644 index d1fe3916..00000000 --- a/public/desktop_themes/4f8d3f783b67fcd05f08635d/css/default.css +++ /dev/null @@ -1,44 +0,0 @@ -/* -Theme Color - -random apply to: -.widget_fn - on hover status -#search_app .submit -.tile - -*/ -.thmc1 { background: #271D13; } -.thmc2 { background: #967957; } - -/* -sub1 Theme Color - -apply to: -#search_app - -*/ -.thmc3 { background: #FFFFFF; } - -/* -sub1 Theme Color - -apply to: -#rwidget - -*/ -.thmc4 { background: #000; } - - -/* Theme Text Color */ -.thmtxt { color: #fff; } -.thmtxth { color: #fff; } -/* Group Seprate Color */ -.g_sep { border-color: #fff; } - -/* -theme bg image - -#thmbackground img - background -#bgover - upon #thmbackground - -*/ \ No newline at end of file diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/Home-icon.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/Home-icon.png deleted file mode 100644 index 97cef985..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/Home-icon.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/apps.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/apps.png deleted file mode 100644 index 67b69c89..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/apps.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/background.jpg b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/background.jpg deleted file mode 100644 index 0589fd94..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/background.jpg and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_activities.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_activities.png deleted file mode 100644 index b481e676..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_activities.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_album.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_album.png deleted file mode 100644 index 6f0e4a17..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_album.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_app_manager.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_app_manager.png deleted file mode 100644 index da09e5a4..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_app_manager.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_appstore.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_appstore.png deleted file mode 100644 index e82e745d..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_appstore.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_blog.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_blog.png deleted file mode 100644 index 0bb55251..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_blog.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_books.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_books.png deleted file mode 100644 index 49ec0fba..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_books.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_calendar.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_calendar.png deleted file mode 100644 index 26520f73..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_calendar.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_certification.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_certification.png deleted file mode 100644 index a695edce..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_certification.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_clubs.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_clubs.png deleted file mode 100644 index f22aa6dd..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_clubs.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_conference_p.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_conference_p.png deleted file mode 100644 index 36cfb59a..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_conference_p.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_connection.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_connection.png deleted file mode 100644 index ac6978eb..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_connection.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_courses.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_courses.png deleted file mode 100644 index 3d521ddf..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_courses.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_education.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_education.png deleted file mode 100755 index fa366a17..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_education.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_experience.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_experience.png deleted file mode 100644 index f182981b..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_experience.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_files.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_files.png deleted file mode 100644 index 99299d80..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_files.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_home.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_home.png deleted file mode 100644 index 67f4a227..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_home.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_homework.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_homework.png deleted file mode 100644 index 28f1b266..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_homework.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_honors.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_honors.png deleted file mode 100755 index 778cfa84..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_honors.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_journal_p.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_journal_p.png deleted file mode 100644 index 5f0e2757..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_journal_p.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_labs.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_labs.png deleted file mode 100644 index fcb929e6..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_labs.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_landt.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_landt.png deleted file mode 100644 index c003ec8d..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_landt.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_mypage.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_mypage.png deleted file mode 100644 index 9d466a95..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_mypage.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_orbit.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_orbit.png deleted file mode 100755 index e5852979..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_orbit.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_patents.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_patents.png deleted file mode 100644 index 5b08a529..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_patents.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_personal.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_personal.png deleted file mode 100644 index a0a2140b..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_personal.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_publication.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_publication.png deleted file mode 100644 index a3220b86..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_publication.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_research.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_research.png deleted file mode 100644 index 691ebe25..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_research.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_research_d.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_research_d.png deleted file mode 100644 index 4301e573..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_research_d.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_research_p.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_research_p.png deleted file mode 100644 index d3ba06cd..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_research_p.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_sections.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_sections.png deleted file mode 100644 index 6832e3d0..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_sections.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_settings.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_settings.png deleted file mode 100644 index 0ca9b18d..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_settings.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_working.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_working.png deleted file mode 100644 index 9bc38981..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/d_working.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/home.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/home.png deleted file mode 100644 index 56efebb5..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/home.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/sections.png b/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/sections.png deleted file mode 100644 index 7b6a039f..00000000 Binary files a/public/desktop_themes/4f8d3f783b67fcd05f08635d/images/sections.png and /dev/null differ diff --git a/public/desktop_themes/4f8d3f783b67fcd05f08635d/settings/4f8d3f783b67fcd05f08635d.json b/public/desktop_themes/4f8d3f783b67fcd05f08635d/settings/4f8d3f783b67fcd05f08635d.json deleted file mode 100755 index 2be2bcb8..00000000 --- a/public/desktop_themes/4f8d3f783b67fcd05f08635d/settings/4f8d3f783b67fcd05f08635d.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "css":"default.css", - "background":"background.jpg", - "tilecolor":["thmc1","thmc2"], - "icons":{ - "home":"d_home.png", - "app_manager":"d_app_manager.png", - "sections":"d_sections.png", - "settings":"d_settings.png", - "publication":"d_publication.png", - "journal_p":"d_journal_p.png", - "conference_p":"d_conference_p.png", - "books":"d_books.png", - "research":"d_research.png", - "research_d":"d_research_d.png", - "research_p":"d_research_p.png", - "patents":"d_patents.png", - "labs":"d_labs.png", - "experience":"d_experience.png", - "working":"d_working.png", - "education":"d_education.png", - "honors":"d_honors.png", - "activities":"d_activities.png", - "clubs":"d_clubs.png", - "landt":"d_landt.png", - "courses":"d_courses.png", - "homework":"d_homework.png", - "certification":"d_certification.png", - "personal":"d_personal.png", - "mypage":"d_mypage.png", - "blog":"d_blog.png", - "album":"d_album.png", - "calendar":"d_calendar.png", - "files":"d_files.png", - "orbit":"d_orbit.png", - "connection":"d_connection.png", - "appstore":"d_appstore.png" - } - }