posts - 4,  comments - 0,  trackbacks - 0
            2008年4月7日
          W3Techs在2012年1月, 發出最新的"全球互聯網CMS使用情況報告",該統計基于對全球Alexa排名前100W的網站做分析而得出.
          排名顯示WordPress依然排名第一,Joomla排名第二,Drupal排名第三.
          統計數據說明:
          • 71%的網站沒有使用內容管理系統
          • 15.7%的網站使用了WordPress
          • 使用內容管理系統的網站中WordPress 占有54.2%份額
          下圖展現了互聯網使用內容管理系統的百分比情況. 

          CMS使用情況 

          內容管理系統(CMS)中使用率小于1%系統有:
          • Contenido
          • Google Sites
          • MODx
          • Serendipity
          • Umbraco
          • CommonSpot
          • b2evolution
          • DokuWiki
          • Dynamicweb CMS
          • Kentico
          • Magnolia
          • Textpattern
          • Convio
          • Imperia
          • Amiro.CMS
          • Infopark CMS Fiona
          • Tiki Wiki CMS Groupware
          • Posterous
          • WebGUI
          • mojoPortal
          • Danneo
          • Geeklog
          • CMSimple
          • fCMS
          • InterRed
          • NQcontent
          • Percussion
          • Graffiti
          • Jadu CMS
          • Contensis
          • Government Site Builder
          • ZMS
          • MidCOM
          • Jieqi CMS
          • Rainbow
          • GetSimple
          • AxCMS.net
          • CoreMedia
          • Amaxus
          • Komodo
          • Papaya CMS
          • Sense/Net
          • YAF.NET
          • Blogg.se
          • Bricolage
          • Crowd Fusion
          • ImpressCMS
          • Apache Lenya
          • Artiphp
          • ImpressPages CMS
          • Melody
          • ocPortal
          • Bigace
          • gpEasy
          • AdVantShop
          • Django CMS
          • phpCOIN
          轉載:水下江湖
          posted @ 2012-01-09 12:02 jiang 閱讀(453) | 評論 (0)編輯 收藏
          1.在 /conf/Catalina/localhost/ 下創建 project.xml.
             注意: Catalina中的第一個字母要大寫,因為在/conf/server.xml中有" Service name="Catalina" ",已經將它的名字確定,并且linux是區分大小寫的
          2.project.xml 的寫法:
          <?xml version='1.0' encoding='utf-8'?>

          <Context 

              path
          ="/project" 

              docBase
          ="/home/jiang/projec/WebRoot" 

              reloadable
          ="true" 

              crossContext
          ="true"

              workDir
          ="/home/jiang/projec/work"

              
          >

          </Context>
          3.運行tomcat6就可以了

          posted @ 2008-05-13 10:23 jiang 閱讀(1488) | 評論 (0)編輯 收藏
          把一個長的字符串變成短的字符串,并且在每一行末尾加入 \n


          /**
               * 計算字符串的 ascii 碼長度
               * 
               * 
          @param s
               * 
          @return
               
          */
              
          public int strLength(String s) {
                  
          int result = 0;
                  
          for (int i = 0; i < s.length(); i++) {
                      
          if (isDoublebyteWord(s.substring(i, i + 1))) {
                          result 
          += 2;
                      } 
          else {
                          result 
          += 1;
                      }
                  }
                  
          return result;
              }

              
          /**
               * 判斷是否雙字節字符
               * 
               * 
          @param str
               * 
          @return
               
          */
              
          public boolean isDoublebyteWord(String str) {
                  System.out.println(str);
                  
          byte[] b;
                  
          int temp;
                  
          for (int i = 0; i < str.length(); i++) {
                      b 
          = str.substring(i, i + 1).getBytes();
                      temp 
          = b[0];
                      
          if (temp > 0) {
                          
          return false;
                      }
                  }
                  
          return true;
              }

              
          /**
               * 公割字符串
               * 
          @param s 字符串
               * 
          @param len 一小段的長度
               * 
          @return
               
          */
              
          public static String changeString(String s, int len) {
                  
                  LongStringToShort lts
          =new LongStringToShort();
                  
                  String result 
          = "";
                  len 
          = (int) len / 8;
                  
          int totalLen = lts.strLength(s);
                  
          // 錯誤調用
                  if (s.length() < 1 || len < 1)
                      
          return "";
                  
          // 只有一小段,不分割
                  if (totalLen < len)
                      
          return s;

                  
          // 計算該字符串應該分幾段
                  int num = (int) totalLen / len;
                  
          if (((float) totalLen / len) > num)
                      num
          ++;
                  System.out.println(
          "應該分" + num + "" + len);
                  
          int sl = 0;
                  
          for (int i = 0; i < s.length(); i++) {
                      String temp 
          = s.substring(i, i + 1);
                      
          if (lts.isDoublebyteWord(temp)) {
                          sl 
          += 2;
                      } 
          else {
                          sl 
          += 1;
                      }
                      result 
          += temp;

                      
          if (sl > (len - 1)) {
                          System.out.println(
          "hello");
                          sl 
          = 0;
                          result 
          += "\n";
                          
          continue;
                      }
                  }
                  
          return result;
              }    
          posted @ 2008-05-04 15:41 jiang 閱讀(2174) | 評論 (0)編輯 收藏
               摘要: 給學習J2EE的朋友一些值得研究的開源項目 江蘇 無錫 繆小東 http://blog.163.com/miaoxiaodong78        這篇文章寫在我研究J2SE、J2EE近三年后。前3年我研究了J2SE的Swing、Applet、Net、RMI、Collections、IO、JNI......研究了J2EE的JDB...  閱讀全文
          posted @ 2008-04-07 22:23 jiang 閱讀(289) | 評論 (0)編輯 收藏
          主站蜘蛛池模板: 山阳县| 惠来县| 合作市| 寿阳县| 靖州| 嘉鱼县| 剑河县| 巴林左旗| 泾源县| 康平县| 正镶白旗| 新晃| 基隆市| 黄平县| 合川市| 宁陵县| 青田县| 根河市| 铜川市| 开江县| 周宁县| 吉林省| 锦屏县| 荆门市| 三河市| 文山县| 德安县| 内江市| 阿尔山市| 安岳县| 宁安市| 札达县| 通辽市| 绥滨县| 新蔡县| 长顺县| 腾冲县| 秦安县| 河北省| 精河县| 曲水县|