Atitit. Atiposter 发帖机 新特性 poster new feature v7 q39
Atitit. Atiposter 发帖机 新特性 poster new feature v7 q39
V8 重构iocutilV4,use def iocFact...jettyUtil
V8 gui 独立的gui..使用jetty..
V1 初步实现sina csdn cnblogs
V2 实现qzone sohu 的发帖功能 顺便重构接口实现分离
V3多文件循环发帖(初步bbs版本)
V4 sina发帖功能fix增加二次贴入内容
发布时的确认关闭提示folat框子
调整分类总的分类dsl 和ide俩优先类
V5默认分类选择ide dsl功能。。这样一般就只要取消一个就可以了。
V6 界面ui 调整高度化
V7 sing配置化
Atitit.杜威十进分类法 attilax改进的分类法
作者:: 绰号:老哇的爪子 ( 全名::Attilax Akbar Al Rapanui 阿提拉克斯 阿克巴 阿尔 拉帕努伊 ) 汉字名:艾龙, EMAIL:1466519819@qq.com
转载请注明来源: http://blog.cnb.net/attilax
1. 1. 未来版本规划
V7标准化api草案
v。。。。
多文件 多网站发帖模式,优先多文件》》一个网站 vs优先一个文件》》多个网站 俩个模式。。
Beanshell脚本支持
Chrome浏览器支持(目前只支持ff)
并发支持
全自动和半自动任务模式(目前只有办自动)
接入验证码识别
1.1. code
public class SohuPubber extends BlogPubberAbs implements Ipub,Ipub2{
public static void main(String[] args) {
Map puber = (Map) core.newx(("aaaBlogger.img.SohuPubber"));
}
@Override
public void pub2(String p1tit, String context, FirefoxDriver driver) {
String t = getAuthorTxt("sohu");
context=context.replace("$attilax_blog_sign$", t);
package com.attilax.cmsPoster;
import com.attilax.io.filex;
import com.attilax.io.pathx;
import com.attilax.util.PropX;
public class BlogPubberAbs {
public String changeBlogLink(String p2_txt) {
String blogName=BlogPubberMainform.blogName.get();
PropX px=(PropX) BlogPubberMainform.propMap.get(blogName);
String blog_index=px.getProperty("blog_index");
p2_txt=p2_txt.replace("http://blog.csdn.net/attilax", blog_index);
return p2_txt;
}
protected String getAuthorTxt(String bloggerwebsite) {
String blogName=BlogPubberMainform.blogName.get();
PropX px=(PropX) BlogPubberMainform.propMap.get(blogName);
String blog_index=px.getProperty("blog_index");
String p=pathx.classPath()+"/aaaBlogger/img/author.txt";
String t=filex.read(p);
;
t=t.replace("$attilax_blog_url$", blog_index);
return t;
}
}
Atitit. Atiposter 发帖机版本历史 编年史
---end atiend
Atitit. Atiposter 发帖机 新特性 poster new feature v7 q39的更多相关文章
- Atitit. Atiposter 发帖机 新特性 poster new feature v7 q39
Atitit. Atiposter 发帖机 新特性 poster new feature v7 q39 V1 初步实现sina csdn cnblogs V2 实现qzone sohu 的发帖 ...
- Atitit. Atiposter 发帖机 新特性 poster new feature v11 .docx
Atitit. Atiposter 发帖机 新特性 poster new feature v11 .docx 1.1. 版本历史1 2. 1. 未来版本规划2 2.1. V12版本规划2 2.2. ...
- Atitit.Atiposter 发帖机 信息发布器 v7 q516
Atitit.Atiposter 发帖机 信息发布器 v7 q516 V7 jetty 版本 基本访问改为web版. 这样发布调试 V1 初步实现sina csdn cnblogs V2 实现qz ...
- Atitit. Atiposter 发帖机版本历史 编年史
Atitit. Atiposter 发帖机版本历史 编年史 V1 初步实现sina csdn cnblogs V2 实现qzone sohu 的发帖功能 顺便重构接口实现分离 V3多文件循环发帖 ...
- Atitit mac os 版本 新特性 attilax大总结
Atitit mac os 版本 新特性 attilax大总结 1. Macos概述1 2. 早期2 2.1. Macintosh OS (系统 1.0) 1984年2 2.2. Mac OS 7. ...
- Atitit hibernate3 hinernate4 hibernate5新特性attilax总结
Atitit hibernate3 hinernate4 hibernate5新特性attilax总结 1.1. Hibernate3的新特性 1 1.2. hibernate4.1版本中的新特性和h ...
- Atitit js es5 es6新特性 attilax总结
Atitit js es5 es6新特性 attilax总结 1.1. JavaScript发展时间轴:1 1.2. 以下是ES6排名前十的最佳特性列表(排名不分先后):1 1.3. Es6 支持情况 ...
- Atitit.android jsbridge v1新特性
Atitit.android jsbridge v1新特性 1. Java代码调用js并传参其实是通过WebView的loadUrl方法去调用的.只是参数url的写法不一样而已1 2. 三.JAVA ...
- Atitit hre框架v5 新特性 HREv5
Atitit hre框架v5 新特性 HREv5 1. V5新特性 apiurl2="/wrmiServlet";1 2. V1 新特性1 3. V2 新特性 添加php版1 ...
随机推荐
- Flexible 弹性盒子模型之CSS flex-basis 属性
实例 设置第二个弹性盒元素的初始长度为 80 像素: div:nth-of-type(2){flex-basis:80px;} 效果预览 浏览器支持 表格中的数字表示支持该属性的第一个浏览器的版本 ...
- Android中BroadcastReceiver的两种注册方式(静态和动态)详解
今天我们一起来探讨下安卓中BroadcastReceiver组件以及详细分析下它的两种注册方式. BroadcastReceiver也就是"广播接收者"的意思,顾名思义,它就是用来 ...
- date命令
GNU的date提供+%s(小写s), 能打印出自1970-01-01 00:00:00到当前时间的秒数. 这可能大家都不陌生,但有两点需要注意: 1. %s存在于GNU扩展版本.像在solaris等 ...
- D3.js学习(六)
上节我们学习了如何绘制多条曲线, 以及给不同的曲线指定不同的坐标系.在这节当中,我们会对坐标轴标签相关的处理进行学习.首先,我们来想一个问题, 如何我们的x轴上的各个标签的距离比较近,但是标签名又比较 ...
- 无限分级和tree结构数据增删改【提供Demo下载】
无限分级 很多时候我们不确定等级关系的层级,这个时候就需要用到无限分级了. 说到无限分级,又要扯到递归调用了.(据说频繁递归是很耗性能的),在此我们需要先设计好表机构,用来存储无限分级的数据.当然,以 ...
- 字符型图片验证码识别完整过程及Python实现
字符型图片验证码识别完整过程及Python实现 1 摘要 验证码是目前互联网上非常常见也是非常重要的一个事物,充当着很多系统的 防火墙 功能,但是随时OCR技术的发展,验证码暴露出来的安全问题也越 ...
- 在开发中到底要不要用var?
var是.net的一个语法糖,在Resharper中推荐都使用这个关键字,平常我也是经常用:但是在跟其他程序员推广使用时,他的一些考虑引发了我的深思,到底该不该使用这个关键字呢? 我使用的理由 我使用 ...
- Kinect开发文章目录
整理了一下去年为止到现在写的和翻译的Kinect的相关文章,方便大家查看.另外,最近京东上微软在搞活动, 微软 Kinect for Windows 京东十周年专供礼包 ,如果您想从事Kinect开发 ...
- ASP.NET MVC 描述类型(一)
ASP.NET MVC 描述类型(一) 前言 在前面的好多篇幅中都有提到过ControllerDescriptor类型,并且在ASP.NET MVC 过滤器(一)篇幅中简单的描述过,今天我们就来讲一下 ...
- H5+JS+CSS3 综合应用
慕课网新教程H5+JS+CSS3 实现的七夕言情主题效果已经出炉了 从设计到实现到录制与编写用了快1个月的时间,说真的这个案例是慕课定制的,我之前也没有系统的做过这样的一个效果,在实现的时候自己也重新 ...