选了3篇帖子发到七个java站

  为了介绍我们这个小小的开源项目,和增进交流,我把自己写的三篇帖子发到了以“java”为关键字搜索google的前七个中文java站。今天看有三个网站发表了我的两篇帖子。但是没有什么反馈。尤其是学习日记的导航系统的可行性还有待讨论。

  这三篇帖子分别是:

  1、学习日记网站动态导航技术探索 (0篇)http://www.learndiary.com/disDiaryContentAction.do?searchDiaryID=&goalID=1255&naviStr=a10a2167

  2、改變學習日記的字符集總結,查詢utf數據庫? (0篇)http://www.learndiary.com/disDiaryContentAction.do?searchDiaryID=&goalID=1242&naviStr=a10a21105

  3、一个国家软件开源事业的发展跟经济水平的关系 (0篇)

http://www.learndiary.com/disDiaryContentAction.do?searchDiaryID=&goalID=1262&naviStr=a10a244

  其中第3篇帖子没有一家发表,看来可能是水平太差,或是阐述得不详细,或是观点错误,以后再好好的把这个问题想一想。

(转贴)URL解码(Decode)/编码(Encode)

还不懂这个,放在这里供以后备查:

<html>

<head>

<meta http-equiv='Content-Type' content='text/html; charset=gb2312'>

<title>URL解码(Decode)/编码(Encode)</title>

</head>

<body>

<center><font color=green size=+2>URL解码(Decode)/编码(Encode)</font><br>

需要解码的字符串:<TEXTAREA ID="String1" ROWS="10" COLS="30"></TEXTAREA> 解码后的字符串:<TEXTAREA ID="String2" ROWS="10" COLS="30"></TEXTAREA><br>

需要编码的字符串:<TEXTAREA ID="String3" ROWS="10" COLS="30"></TEXTAREA> 编码后的字符串:<TEXTAREA ID="String4" ROWS="10" COLS="30"></TEXTAREA><br>

<INPUT TYPE="button" ID="Decode" value="解码(Decode)" onClick="javascript:String2.value=decodeURI(String1.value);">

<INPUT TYPE="button" ID="Encode" value="编码(Encode)" onClick="javascript:String4.value=encodeURI(String3.value);">

</center>

</body>

</html>

学习日记向您征集学习日记logo创意并请教1

朋友:

  您好。一切都还好吗?我是学习日记的admin。

  现在有两个事情打搅您:

  1、学习日记向您征集学习日记logo创意:

  学习日记创办到还没有一个代表我们形象的logo,请把你的想法和创意告诉我们,或者回复在学习日记网站的下列帖子的回复中:http://www.learndiary.com/disDiaryContentAction.do?goalID=1215(向广大网友征集学习日记logo创意,ps:学习日记的登录模式已经初步改变,不必登录即可查看帖子。)或在留言板中留言(游客身份可以留言)。如果可能的话,你能为我们制作一个你想像中的学习日记logo,我们将感激不尽(请发往邮箱:webmaster@learndiary.com)。

  我们的口号是:学习到永远!!!我们致力于以JAVA技术构建一个普遍适用的开源网络学习交流平台。

  2、请教1个问题:

  1)怎样在游客登录系统成功后,回到并刷新他前的页面?

  比如:我现在在不登录的情况直接输入url:http://www.learndiary.com/disDiaryContentAction.do?goalID=1215查看这个帖子,然后,我点击页面上部的“请登录”链接:http://www.learndiary.com/toLoginAction.do  ,然后我在出现的登录窗口输入我的用户名和密码并成功登录后,请问:我怎么回到并刷新原页面:http://www.learndiary.com/disDiaryContentAction.do?goalID=1215 ?学习日记的最新源码见我们的开发者社区的CVS库中的old目录。

  我们现在已经添加了导航系统,对数据存取层做了一点拆分,初步改变了登录模式。接下来,进一步改变登录模式。。。

  在我们快速完成了一些有关用户使用的必要的改变后,根据情况,我们会启动新系统的全新设计。

表格的属性:height,cellpadding

  我是真正的菜鸟,现在才考虑把学习日记的页面表格问题,原来的表格在1024×768的模式行高会随表格内文字的多少而变成1行或2行,很难看。昨晚,在网上查了一下,学了一点 <td height="">和<table cellpadding="">的用法。这样,页面稍微好看了点。

  如下:

  <table border = "1" width="100%" cellpadding="3" align="center">

  <%! int colorSwitch = 1; %>

    <logic:iterate id="anGoal" name="goalList" type="com.learndiary.website.model.ArticleInfo">

     <% if (colorSwitch % 2 == 0) { Color="#FFFFFF"; }

        else { Color="#FFFFFF"; }

     %>   

     <tr bgcolor="<%= Color %>">

      <td width = "30%" height="33" align="center">

转贴:创建网页表格的基本原则和方法

thinking of a website building

  Recently,I found a website existing some secret question.I think,there are something are the commom questions.

  This website is large and I am very like him.I found his IP address and port was exposed.This is a tomcat port.When I entered the directory address,I found he didn't forbid the directories viewing!So,I could view all the contents under the directory.There were some secret information in the subdirectories.I can enter some place of website with administrator authority.

  I sent three emails to the administrator of website,but,almost 10 days past,they didn't receive these three emails.(Later,I knew this because this email address had fulled of thousands of letters,of course,I think the most of them are garbage letters.So they didn't receive that email box at all.)

  At last,I sent an email to a system user attached a picture which showing I have enter the management function of website.Then,they knew.

  From above,I think:

1.the communication between website and users must be non-blocked;

2.Can't expose the IP:PORT to the users;

3.Can't expose the location of a database file(*.mdb);

4.The user password must be MD5ed;

5.A non-hacker should not enter other's website with illegal athourity,even if you are good heart,remember,even a bird fly over the sky will leave a little.

found a Open Source project like ours exactly!

  Today,I found a Open Source project like ours exactly when I view the content of a open source UML tool named argouml at http://e-learningcommunity.tigris.org/ and http://argouml.tigris.org/.

the main goal of this project is e-learning,exactly like our learndiary.the definite diffirent between these two is:e-learningcommunity implemented with PHP,ours is JSP.

  Maybe,we can move our work in this group.Because it own an integrated method for web development.

学习日记大事记

这篇日记用于记载学习日记网站发生的具有里程碑意义的事件。

1、2004年9月28日,中秋节,学习日记投入运行;

2、2004年11月18日,学习日记开发小组正式成立;

3、约2005年6月,将学习日记的代码提交到http://www.tigris.org开源社区,成立学习日记开源项目http://learndiary.tigris.org

 4、2007年6月中旬,停用Java版学习日记,关闭学习日记开源项目,学习日记改为使用wordpress搭建的个人博客。

邮件发送问题,有30人左右的朋友报名开发

    这两天忙着回复网友的报名、提问,也没有太多的时间记日记了。

    前两天用foxmail4.2发邮件的抄送地址被打乱的情况已经解决,那是foxmail4.2的一个BUG,升级到foxmail5.0后,问题消失。但是,在用outlook express从webmaster@learndiary.com发到到tom.com免费邮箱的时候,outlook express

报告"错误的协议",不能发送成功,但是同样的邮件设置在foxmail中却没有这个问题,到现在也不知道是怎么样一回事。

    昨天为止,已经有约30人通过email报名了,用怎样的组织形式来建立开发小组,这还需要好好的考虑一下。还需要大家共同的来考虑一下。