Advertisement
Guest User

Untitled

a guest
Aug 13th, 2012
756
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
DOT 3.60 KB | None | 0 0
  1. digraph G{
  2.     rankdir = LR;
  3.     node [shape = box];
  4.     start [label = "如果不喜本文"];
  5.     start -> choose_close_all;
  6.     choose_close_all [label = "本文有让你关闭所有页面的冲动吗"];
  7.     choose_close_all -> choose_platform [ label = "是" ];
  8.     choose_close_all -> choose_browser [label = "否" ];
  9.     choose_close_all -> head [ label = "非常"];
  10.  
  11.     choose_platform  [label = "选择你所使用的系统"];
  12.     choose_platform -> desktop_platform ;
  13.     choose_platform -> mobile_platform ;
  14.  
  15.     desktop_platform [label = "桌面系统"];
  16.     desktop_platform -> {mac_os_x; windows; other_os};
  17.    
  18.     mac_os_x [label = "Mac OS X"];
  19.     mac_os_x -> "Command - W";
  20.     left_corner_click [label = "鼠标单击左上角"];
  21.     kill_using_terminal [label = "向该程序发送SIGKILL信号"];
  22.     mac_os_x -> {left_corner_click; kill_using_terminal};
  23.  
  24.     windows [ label = "Windows"];
  25.     alt_f4[label = "Alt - F4"];
  26.     right_corner_right [label = "鼠标单击右上角最右边按钮"];
  27.     right_corner_left [ label = "鼠标点击右上角左边按钮"];
  28.     status_bar_right_click [label = "在任务栏该窗口处右击选择关闭"];
  29.     left_corner_menu [label = "鼠标单击左上角选择关闭"];
  30.     left_buttom [label = "鼠标单击左下角"];
  31.  
  32.     windows -> {windows3; windows95; windows98; windowsMe; windowsNt; windows200x; windowsXp; windowsVista; windows7};
  33.  
  34.     windows3 [label = "Windows 3.x"];
  35.     windows95 [ label = "Windows 95"];
  36.     windows98 [ label = "Windows 98"];
  37.     windowsMe [ label = "Windows Me"];
  38.     windowsNt [ label = "Windows NT"];
  39.     windows200x [ label = "Windows 200X"];
  40.     windowsXp [ label = "Windows XP"];
  41.     windowsVista [ label = "Windows Vista"];
  42.     windows7 [ label = "Windows 7"];
  43.     windows8 [ label = "Windows 8"];
  44.    
  45.     {windows95; windows98; windowsMe; windowsNt; windows200x; windowsXp; windowsVista; windows7} -> {alt_f4;status_bar_right_click};
  46.     windows3 -> {right_corner_left; left_corner_menu; alt_f4};
  47.     {windows95; windows98; windowsMe; windowsNt; windows200x; windowsXp; windowsVista; windows7} -> right_corner_right;
  48.     windows8 -> {alt_f4; left_buttom};
  49.  
  50.     other_os [ label = "其他"];
  51.  
  52.  
  53.     mobile_platform[label = "移动操作系统"];
  54.     press_home [ label = "按屏幕下方的Home键"];
  55.     press_hang_up [ label = "按屏幕下方的挂机键"];
  56.     mobile_platform -> {windowsMobile; RIM; Symbian; iOS; Android; other_mobile_platform};
  57.     windowsMobile [label = "Windows Mobile"];
  58.  
  59.     windowsMobile -> right_corner_right;
  60.     windowsMobile -> press_home;
  61.     RIM -> {"长按ESC键"; press_hang_up};
  62.     Symbian -> press_hang_up;
  63.     {iOS; Android} -> press_home;
  64.  
  65.     choose_browser [label = "请选择你使用的浏览器"];
  66.     choose_browser -> {IE; FireFox; Chrome; Safari; Opera; mobileBrowser; other_browser};
  67.     mobileBrowser[label = "其他移动浏览器"];
  68.     mobileBrowser -> mobile_platform;
  69.     tab_on [label = "使用标签模式浏览"];
  70.     tab_off [label = "未使用标签模式浏览"];
  71.     IE -> {tab_on; tab_off};
  72.     tab_off -> windows;
  73.  
  74.     ctrl_w [label = "Ctrl + W"];
  75.     ctrl_f4 [label = "Ctrl +F4"];
  76.     click_right_tab [label = "单击标签右边的叉"];
  77.  
  78.     {tab_on; FireFox; Chrome; Safari; Opera} -> {ctrl_w; click_right_tab};
  79.     {tab_on; FireFox; Chrome} -> ctrl_f4;
  80.  
  81.     other_os -> try_some;
  82.     try_some [label = "请尝试以下方法"];
  83.     try_some -> {alt_f4; right_corner_right; kill_using_terminal; head};
  84.  
  85.     try_some2 [label = "请尝试以下方法"];
  86.     try_some3 [label = "请尝试以下方法"];
  87.     other_mobile_platform -> try_some2;
  88.     other_browser -> try_some3;
  89.  
  90.     try_some2 -> {press_home; press_hang_up; head};
  91.     try_some3 -> {ctrl_w; click_right_tab; ctrl_f4; head};
  92.  
  93.     head [label = "拿起手中的设备向地板砸去"];
  94.  
  95. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement